##// END OF EJS Templates
trunk moved from /trunk/redmine to /trunk...
Jean-Philippe Lang -
r65:96f83cc8f0f0
parent child
Show More

The requested changes are too big and content was truncated. Show full diff

@@ -0,0 +1,13
1 class CalendarAndActivity < ActiveRecord::Migration
2 def self.up
3 Permission.create :controller => "projects", :action => "activity", :description => "label_activity", :sort => 160, :is_public => true, :mail_option => 0, :mail_enabled => 0
4 Permission.create :controller => "projects", :action => "calendar", :description => "label_calendar", :sort => 165, :is_public => true, :mail_option => 0, :mail_enabled => 0
5 Permission.create :controller => "projects", :action => "gantt", :description => "label_gantt", :sort => 166, :is_public => true, :mail_option => 0, :mail_enabled => 0
6 end
7
8 def self.down
9 Permission.find(:first, :conditions => ["controller=? and action=?", 'projects', 'activity']).destroy
10 Permission.find(:first, :conditions => ["controller=? and action=?", 'projects', 'calendar']).destroy
11 Permission.find(:first, :conditions => ["controller=? and action=?", 'projects', 'gantt']).destroy
12 end
13 end
@@ -0,0 +1,1
1 default directory for uploaded files No newline at end of file
@@ -0,0 +1,24
1 desc 'Create YAML test fixtures from data in an existing database.
2 Defaults to development database. Set RAILS_ENV to override.'
3
4 task :extract_fixtures => :environment do
5 sql = "SELECT * FROM %s"
6 skip_tables = ["schema_info"]
7 ActiveRecord::Base.establish_connection
8 (ActiveRecord::Base.connection.tables - skip_tables).each do |table_name|
9 i = "000"
10 File.open("#{RAILS_ROOT}/#{table_name}.yml", 'w' ) do |file|
11 data = ActiveRecord::Base.connection.select_all(sql % table_name)
12 file.write data.inject({}) { |hash, record|
13
14 # cast extracted values
15 ActiveRecord::Base.connection.columns(table_name).each { |col|
16 record[col.name] = col.type_cast(record[col.name]) if record[col.name]
17 }
18
19 hash["#{table_name}_#{i.succ!}"] = record
20 hash
21 }.to_yaml
22 end
23 end
24 end No newline at end of file
@@ -0,0 +1,1
1 default directory for uploaded files No newline at end of file
@@ -0,0 +1,40
1 # General Apache options
2 AddHandler fastcgi-script .fcgi
3 AddHandler cgi-script .cgi
4 Options +FollowSymLinks +ExecCGI
5
6 # If you don't want Rails to look in certain directories,
7 # use the following rewrite rules so that Apache won't rewrite certain requests
8 #
9 # Example:
10 # RewriteCond %{REQUEST_URI} ^/notrails.*
11 # RewriteRule .* - [L]
12
13 # Redirect all requests not available on the filesystem to Rails
14 # By default the cgi dispatcher is used which is very slow
15 #
16 # For better performance replace the dispatcher with the fastcgi one
17 #
18 # Example:
19 # RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
20 RewriteEngine On
21
22 # If your Rails application is accessed via an Alias directive,
23 # then you MUST also set the RewriteBase in this htaccess file.
24 #
25 # Example:
26 # Alias /myrailsapp /path/to/myrailsapp/public
27 # RewriteBase /myrailsapp
28
29 RewriteRule ^$ index.html [QSA]
30 RewriteRule ^([^.]+)$ $1.html [QSA]
31 RewriteCond %{REQUEST_FILENAME} !-f
32 RewriteRule ^(.*)$ dispatch.cgi [QSA,L]
33
34 # In case Rails experiences terminal errors
35 # Instead of displaying this message you can supply a file here which will be rendered instead
36 #
37 # Example:
38 # ErrorDocument 500 /500.html
39
40 ErrorDocument 500 "<h2>Application error</h2>Rails application failed to start properly" No newline at end of file
@@ -0,0 +1,24
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
3 <html>
4 <title>redMine 500 error</title>
5 <style>
6 body{
7 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
8 color:#303030;
9 margin:10px;
10 }
11 h1{
12 font-size:1.5em;
13 }
14 p{
15 font-size:0.8em;
16 }
17 </style>
18 <body>
19 <h1>Internal error</h1>
20 <p>An error occurred on the page you were trying to access.<br />
21 If you continue to experience problems please contact your redMine administrator for assistance.</p>
22 <p><a href="javascript:history.back()">Back</a></p>
23 </body>
24 </html> No newline at end of file
@@ -0,0 +1,24
1 #!/usr/bin/ruby
2 #
3 # You may specify the path to the FastCGI crash log (a log of unhandled
4 # exceptions which forced the FastCGI instance to exit, great for debugging)
5 # and the number of requests to process before running garbage collection.
6 #
7 # By default, the FastCGI crash log is RAILS_ROOT/log/fastcgi.crash.log
8 # and the GC period is nil (turned off). A reasonable number of requests
9 # could range from 10-100 depending on the memory footprint of your app.
10 #
11 # Example:
12 # # Default log path, normal GC behavior.
13 # RailsFCGIHandler.process!
14 #
15 # # Default log path, 50 requests between GC.
16 # RailsFCGIHandler.process! nil, 50
17 #
18 # # Custom log path, normal GC behavior.
19 # RailsFCGIHandler.process! '/var/log/myapp_fcgi_crash.log'
20 #
21 require File.dirname(__FILE__) + "/../config/environment"
22 require 'fcgi_handler'
23
24 RailsFCGIHandler.process!
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
@@ -0,0 +1,20
1 function checkAll (id, checked) {
2 var el = document.getElementById(id);
3 for (var i = 0; i < el.elements.length; i++) {
4 if (el.elements[i].disabled==false) {
5 el.elements[i].checked = checked;
6 }
7 }
8 }
9
10 function addFileField() {
11 var f = document.createElement("input");
12 f.type = "file";
13 f.name = "attachments[]";
14 f.size = 30;
15
16 p = document.getElementById("attachments_p");
17 p.appendChild(document.createElement("br"));
18 p.appendChild(document.createElement("br"));
19 p.appendChild(f);
20 } No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>Chapter&nbsp;1.&nbsp;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="RedMine Documentation"><link rel="up" href="index.html" title="RedMine Documentation"><link rel="prev" href="index.html" title="RedMine Documentation"><link rel="next" href="ch01s01.html" title="1.&nbsp;Users"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;1.&nbsp;Administration</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="index.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<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&nbsp;1.&nbsp;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. Users</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html#d0e12">1.1. Users&#8217; List</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e26">1.2. User Creation or Modification</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s02.html">2. Roles and Permissions</a></span></dt><dt><span class="section"><a href="ch01s03.html">3. Trackers</a></span></dt><dt><span class="section"><a href="ch01s04.html">4. Customized fields</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s04.html#d0e137">4.1. Fields for Projects</a></span></dt><dt><span class="section"><a href="ch01s04.html#d0e148">4.2. Fields for Issues</a></span></dt><dt><span class="section"><a href="ch01s04.html#d0e161">4.3. Field for Users</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s05.html">5. Issue status</a></span></dt><dt><span class="section"><a href="ch01s06.html">6. Workflow</a></span></dt><dt><span class="section"><a href="ch01s07.html">7. Enumerations</a></span></dt><dt><span class="section"><a href="ch01s08.html">8. E-mail notifications</a></span></dt><dt><span class="section"><a href="ch01s09.html">9. Authentication</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s09.html#d0e243">9.1. LDAP statement</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s10.html">10. 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>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01s01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">RedMine Documentation&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;1.&nbsp;Users</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>1.&nbsp;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="RedMine Documentation"><link rel="up" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="prev" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="next" href="ch01s02.html" title="2.&nbsp;Roles and Permissions"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">1.&nbsp;Users</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;1.&nbsp;Administration</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch01s02.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e7"></a>1.&nbsp;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="d0e12"></a>1.1.&nbsp;Users&#8217; List</h3></div></div></div><p></p><div class="screenshot"><div class="mediaobject"><img src="resources/users_list.png"></div></div><p>The Lock/Unlock buttons allow you to lock/unlock the user accounts.</p><p>A user having a locked account cannot log in and access the application.</p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e26"></a>1.2.&nbsp;User Creation or Modification</h3></div></div></div><p>In modification mode, please leave the Password field blank in order to keep the user&#8217;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&#8217;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="ch01.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01s02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;1.&nbsp;Administration&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;2.&nbsp;Roles and Permissions</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>2.&nbsp;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="RedMine Documentation"><link rel="up" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="prev" href="ch01s01.html" title="1.&nbsp;Users"><link rel="next" href="ch01s03.html" title="3.&nbsp;Trackers"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">2.&nbsp;Roles and Permissions</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s01.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;1.&nbsp;Administration</th><td width="20%" align="right">&nbsp;<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="d0e50"></a>2.&nbsp;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="ch01s01.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01s03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">1.&nbsp;Users&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;3.&nbsp;Trackers</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>3.&nbsp;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="RedMine Documentation"><link rel="up" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="prev" href="ch01s02.html" title="2.&nbsp;Roles and Permissions"><link rel="next" href="ch01s04.html" title="4.&nbsp;Customized fields"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">3.&nbsp;Trackers</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s02.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;1.&nbsp;Administration</th><td width="20%" align="right">&nbsp;<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="d0e57"></a>3.&nbsp;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="ch01s02.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01s04.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">2.&nbsp;Roles and Permissions&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;4.&nbsp;Customized fields</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>5.&nbsp;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="RedMine Documentation"><link rel="up" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="prev" href="ch01s04.html" title="4.&nbsp;Customized fields"><link rel="next" href="ch01s06.html" title="6.&nbsp;Workflow"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">5.&nbsp;Issue status</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s04.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;1.&nbsp;Administration</th><td width="20%" align="right">&nbsp;<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="d0e172"></a>5.&nbsp;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="ch01s04.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01s06.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">4.&nbsp;Customized fields&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;6.&nbsp;Workflow</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>6.&nbsp;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="RedMine Documentation"><link rel="up" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="prev" href="ch01s05.html" title="5.&nbsp;Issue status"><link rel="next" href="ch01s07.html" title="7.&nbsp;Enumerations"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">6.&nbsp;Workflow</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s05.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;1.&nbsp;Administration</th><td width="20%" align="right">&nbsp;<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="d0e194"></a>6.&nbsp;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="ch01s05.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01s07.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">5.&nbsp;Issue status&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;7.&nbsp;Enumerations</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>7.&nbsp;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="RedMine Documentation"><link rel="up" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="prev" href="ch01s06.html" title="6.&nbsp;Workflow"><link rel="next" href="ch01s08.html" title="8.&nbsp;E-mail notifications"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">7.&nbsp;Enumerations</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s06.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;1.&nbsp;Administration</th><td width="20%" align="right">&nbsp;<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="d0e213"></a>7.&nbsp;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="ch01s06.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01s08.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">6.&nbsp;Workflow&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;8.&nbsp;E-mail notifications</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>8.&nbsp;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="RedMine Documentation"><link rel="up" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="prev" href="ch01s07.html" title="7.&nbsp;Enumerations"><link rel="next" href="ch01s09.html" title="9.&nbsp;Authentication"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">8.&nbsp;E-mail notifications</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s07.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;1.&nbsp;Administration</th><td width="20%" align="right">&nbsp;<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="d0e226"></a>8.&nbsp;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="ch01s07.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01s09.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">7.&nbsp;Enumerations&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;9.&nbsp;Authentication</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>9.&nbsp;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="RedMine Documentation"><link rel="up" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="prev" href="ch01s08.html" title="8.&nbsp;E-mail notifications"><link rel="next" href="ch01s10.html" title="10.&nbsp;Information"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">9.&nbsp;Authentication</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s08.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;1.&nbsp;Administration</th><td width="20%" align="right">&nbsp;<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="d0e233"></a>9.&nbsp;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&#8217;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="d0e243"></a>9.1.&nbsp;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&#8217;s first name (ex: givenName)</p></li><li><p><span class="guilabel">Last name</span> : LDAP feature name including the user&#8217;s last name (ex: familyName)</p></li><li><p><span class="guilabel">E-mail</span> : LDAP feature name including the user&#8217;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="ch01s08.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01s10.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">8.&nbsp;E-mail notifications&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;10.&nbsp;Information</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>10.&nbsp;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="RedMine Documentation"><link rel="up" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="prev" href="ch01s09.html" title="9.&nbsp;Authentication"><link rel="next" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projects"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">10.&nbsp;Information</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s09.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;1.&nbsp;Administration</th><td width="20%" align="right">&nbsp;<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="d0e320"></a>10.&nbsp;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="ch01s09.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">9.&nbsp;Authentication&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;2.&nbsp;Projects</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>Chapter&nbsp;2.&nbsp;Projects</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="RedMine Documentation"><link rel="up" href="index.html" title="RedMine Documentation"><link rel="prev" href="ch01s10.html" title="10.&nbsp;Information"><link rel="next" href="ch02s01.html" title="1.&nbsp;Project preview"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;2.&nbsp;Projects</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s10.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch02s01.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="d0e325"></a>Chapter&nbsp;2.&nbsp;Projects</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="section"><a href="ch02s01.html">1. Project preview</a></span></dt><dt><span class="section"><a href="ch02s02.html">2. Issue management</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s02.html#d0e338">2.1. Issue list</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s03.html">3. Reports</a></span></dt><dt><span class="section"><a href="ch02s04.html">4. Change log</a></span></dt><dt><span class="section"><a href="ch02s05.html">5. News</a></span></dt><dt><span class="section"><a href="ch02s06.html">6. Documents</a></span></dt><dt><span class="section"><a href="ch02s07.html">7. Files</a></span></dt><dt><span class="section"><a href="ch02s08.html">8. Settings</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s08.html#d0e382">8.1. Project features</a></span></dt><dt><span class="section"><a href="ch02s08.html#d0e398">8.2. Members</a></span></dt><dt><span class="section"><a href="ch02s08.html#d0e403">8.3. Versions</a></span></dt><dt><span class="section"><a href="ch02s08.html#d0e408">8.4. Request categories</a></span></dt></dl></dd></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s10.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">10.&nbsp;Information&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;1.&nbsp;Project preview</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>1.&nbsp;Project preview</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="RedMine Documentation"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projects"><link rel="prev" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projects"><link rel="next" href="ch02s02.html" title="2.&nbsp;Issue management"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">1.&nbsp;Project preview</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projects</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="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="d0e328"></a>1.&nbsp;Project preview</h2></div></div></div><p>The preview 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>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;2.&nbsp;Projects&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;2.&nbsp;Issue management</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>2.&nbsp;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="RedMine Documentation"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projects"><link rel="prev" href="ch02s01.html" title="1.&nbsp;Project preview"><link rel="next" href="ch02s03.html" title="3.&nbsp;Reports"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">2.&nbsp;Issue management</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s01.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projects</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="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="d0e334"></a>2.&nbsp;Issue management</h2></div></div></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e338"></a>2.1.&nbsp;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="ch02s01.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">1.&nbsp;Project preview&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;3.&nbsp;Reports</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>3.&nbsp;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="RedMine Documentation"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projects"><link rel="prev" href="ch02s02.html" title="2.&nbsp;Issue management"><link rel="next" href="ch02s04.html" title="4.&nbsp;Change log"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">3.&nbsp;Reports</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s02.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projects</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="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="d0e353"></a>3.&nbsp;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="ch02s02.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s04.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">2.&nbsp;Issue management&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;4.&nbsp;Change log</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>4.&nbsp;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="RedMine Documentation"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projects"><link rel="prev" href="ch02s03.html" title="3.&nbsp;Reports"><link rel="next" href="ch02s05.html" title="5.&nbsp;News"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">4.&nbsp;Change log</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s03.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projects</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="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="d0e358"></a>4.&nbsp;Change log</h2></div></div></div><p>This page presents the entire list of the resolved Issues for each version of the project. Certain types of Issues 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="ch02s03.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s05.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">3.&nbsp;Reports&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;5.&nbsp;News</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>5.&nbsp;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="RedMine Documentation"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projects"><link rel="prev" href="ch02s04.html" title="4.&nbsp;Change log"><link rel="next" href="ch02s06.html" title="6.&nbsp;Documents"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">5.&nbsp;News</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s04.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projects</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="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="d0e363"></a>5.&nbsp;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="ch02s04.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s06.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">4.&nbsp;Change log&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;6.&nbsp;Documents</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>6.&nbsp;Documents</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="RedMine Documentation"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projects"><link rel="prev" href="ch02s05.html" title="5.&nbsp;News"><link rel="next" href="ch02s07.html" title="7.&nbsp;Files"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">6.&nbsp;Documents</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s05.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projects</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="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="d0e368"></a>6.&nbsp;Documents</h2></div></div></div><p>Documents are grouped by categories (see Value Lists). A document can contain several files (for example: revisions or successive versions).</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s05.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s07.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">5.&nbsp;News&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;7.&nbsp;Files</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>7.&nbsp;Files</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="RedMine Documentation"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projects"><link rel="prev" href="ch02s06.html" title="6.&nbsp;Documents"><link rel="next" href="ch02s08.html" title="8.&nbsp;Settings"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">7.&nbsp;Files</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s06.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projects</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="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="d0e373"></a>7.&nbsp;Files</h2></div></div></div><p>This module allows you to display various folders (sources, binaires, ...) for each version of the application.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s06.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s08.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">6.&nbsp;Documents&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;8.&nbsp;Settings</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>8.&nbsp;Settings</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="RedMine Documentation"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projects"><link rel="prev" href="ch02s07.html" title="7.&nbsp;Files"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">8.&nbsp;Settings</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s07.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projects</th><td width="20%" align="right">&nbsp;</td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e378"></a>8.&nbsp;Settings</h2></div></div></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e382"></a>8.1.&nbsp;Project features</h3></div></div></div><p></p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Public</span> : if it&#8217;s a public project, it can be viewed (request consultation, documents consultation, ...) for all the users, including those who are not project members. If it&#8217;s not a public project, only the project members have access to it, according to their role.</p></li><li><p><span class="guilabel">Customized fields</span> : Select the customized fields that you want to use. Only the administrator can define new customized fields.</p></li></ul></div><p></p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e398"></a>8.2.&nbsp;Members</h3></div></div></div><p>This screen allows you to define the project members as well as their corresponding roles. A user can have only one role in a given project. The role of a member determines the permissions they have in a project.</p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e403"></a>8.3.&nbsp;Versions</h3></div></div></div><p>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).</p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e408"></a>8.4.&nbsp;Request categories</h3></div></div></div><p>Issue categories allow you to organize Issues. Categories can correspond to different project modules.</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s07.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;</td></tr><tr><td width="40%" align="left" valign="top">7.&nbsp;Files&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,55
1 body {
2 background: #FFFFFF;
3 font: 0.8em Verdana,Tahoma,Arial,sans-serif;
4 }
5
6 h1, h2, h3, h4, h5 {
7 color: #800000;
8 font-family: sans-serif;
9 }
10
11 table {
12 font-size: 1em;
13 }
14
15 a{
16 color:#467aa7;
17 font-weight:bold;
18 text-decoration:none;
19 background-color:inherit;
20 }
21
22 a:hover{
23 color: #800000;
24 text-decoration:underline;
25 background-color:inherit;
26 }
27
28 a img{border:none;}
29
30 .screenshot {
31 text-align: center;
32 }
33
34 .guilabel {
35 font-weight: bold;
36 }
37
38 span.term {
39 font-weight: bold;
40 }
41
42 div.sidebar {
43 background: #F0F0F0;
44 border: 1px solid gray;
45 padding: 5px;
46 margin: 20px;
47 }
48
49 pre.programlisting {
50 background: #F0F0F0;
51 border: 1px solid gray;
52 padding: 2px;
53 font-size: 10pt;
54 white-space: pre;
55 }
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>RedMine Documentation</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="RedMine Documentation"><link rel="next" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"></head><body><a href="http://redmine.rubyforge.org/">redMine home</a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">RedMine Documentation</th></tr><tr><td width="20%" align="left">&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch01.html">Next</a></td></tr></table><hr></div><div class="book" lang="en"><div class="titlepage"><div><div><h1 class="title"><a name="d0e1"></a>RedMine Documentation</h1></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="chapter"><a href="ch01.html">1. Administration</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html">1. Users</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html#d0e12">1.1. Users&#8217; List</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e26">1.2. User Creation or Modification</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s02.html">2. Roles and Permissions</a></span></dt><dt><span class="section"><a href="ch01s03.html">3. Trackers</a></span></dt><dt><span class="section"><a href="ch01s04.html">4. Customized fields</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s04.html#d0e137">4.1. Fields for Projects</a></span></dt><dt><span class="section"><a href="ch01s04.html#d0e148">4.2. Fields for Issues</a></span></dt><dt><span class="section"><a href="ch01s04.html#d0e161">4.3. Field for Users</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s05.html">5. Issue status</a></span></dt><dt><span class="section"><a href="ch01s06.html">6. Workflow</a></span></dt><dt><span class="section"><a href="ch01s07.html">7. Enumerations</a></span></dt><dt><span class="section"><a href="ch01s08.html">8. E-mail notifications</a></span></dt><dt><span class="section"><a href="ch01s09.html">9. Authentication</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s09.html#d0e243">9.1. LDAP statement</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s10.html">10. Information</a></span></dt></dl></dd><dt><span class="chapter"><a href="ch02.html">2. Projects</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s01.html">1. Project preview</a></span></dt><dt><span class="section"><a href="ch02s02.html">2. Issue management</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s02.html#d0e338">2.1. Issue list</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s03.html">3. Reports</a></span></dt><dt><span class="section"><a href="ch02s04.html">4. Change log</a></span></dt><dt><span class="section"><a href="ch02s05.html">5. News</a></span></dt><dt><span class="section"><a href="ch02s06.html">6. Documents</a></span></dt><dt><span class="section"><a href="ch02s07.html">7. Files</a></span></dt><dt><span class="section"><a href="ch02s08.html">8. Settings</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s08.html#d0e382">8.1. Project features</a></span></dt><dt><span class="section"><a href="ch02s08.html#d0e398">8.2. Members</a></span></dt><dt><span class="section"><a href="ch02s08.html#d0e403">8.3. Versions</a></span></dt><dt><span class="section"><a href="ch02s08.html#d0e408">8.4. Request categories</a></span></dt></dl></dd></dl></dd></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;1.&nbsp;Administration</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>Chapter&nbsp;1.&nbsp;Administration</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="up" href="index.html" title="Documentation redMine"><link rel="prev" href="index.html" title="Documentation redMine"><link rel="next" href="ch01s01.html" title="1.&nbsp;Utilisateurs"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;1.&nbsp;Administration</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="index.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<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&nbsp;1.&nbsp;Administration</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="section"><a href="ch01s01.html">1. Utilisateurs</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html#d0e12">1.1. Liste des utilisateurs</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e26">1.2. Cr&eacute;ation ou modification d'un utilisateur</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s02.html">2. R&ocirc;les et permissions</a></span></dt><dt><span class="section"><a href="ch01s03.html">3. Trackers</a></span></dt><dt><span class="section"><a href="ch01s04.html">4. Champs personnalis&eacute;s</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s04.html#d0e132">4.1. Champs pour les projets</a></span></dt><dt><span class="section"><a href="ch01s04.html#d0e143">4.2. Champs pour les demandes</a></span></dt><dt><span class="section"><a href="ch01s04.html#d0e156">4.3. Champs pour les utilisateurs</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s05.html">5. Statut des demandes</a></span></dt><dt><span class="section"><a href="ch01s06.html">6. Workflow</a></span></dt><dt><span class="section"><a href="ch01s07.html">7. Listes de valeurs</a></span></dt><dt><span class="section"><a href="ch01s08.html">8. Notifications par mail</a></span></dt><dt><span class="section"><a href="ch01s09.html">9. Authentification</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s09.html#d0e238">9.1. D&eacute;claration d'un annuaire LDAP</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s10.html">10. 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>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01s01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Documentation redMine&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;1.&nbsp;Utilisateurs</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>1.&nbsp;Utilisateurs</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="up" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="prev" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="next" href="ch01s02.html" title="2.&nbsp;R&ocirc;les et permissions"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">1.&nbsp;Utilisateurs</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;1.&nbsp;Administration</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch01s02.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e7"></a>1.&nbsp;Utilisateurs</h2></div></div></div><p>Ces &eacute;crans vous permettent de g&eacute;rer les utilisateurs de l'application.</p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e12"></a>1.1.&nbsp;Liste des utilisateurs</h3></div></div></div><p></p><div class="screenshot"><div class="mediaobject"><img src="resources/users_list.png"></div></div><p>Les boutons Lock/Unlock vous permettent de v&eacute;rouiller/d&eacute;v&eacute;rouiller les comptes utilisateurs.</p><p>Un utilisateur dont le compte est v&eacute;rouill&eacute; ne peut plus s'identifier pour acc&eacute;der &agrave; l'application.</p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e26"></a>1.2.&nbsp;Cr&eacute;ation ou modification d'un utilisateur</h3></div></div></div><p>En mode modification, laissez le champ Password vide pour laisser le mot de passe de l'utilisateur inchang&eacute;.</p><p>Un utilisateur d&eacute;clar&eacute; 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&eacute;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&eacute;rouill&eacute;</span>: d&eacute;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="ch01.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01s02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;1.&nbsp;Administration&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;2.&nbsp;R&ocirc;les et permissions</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>2.&nbsp;R&ocirc;les et permissions</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="up" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="prev" href="ch01s01.html" title="1.&nbsp;Utilisateurs"><link rel="next" href="ch01s03.html" title="3.&nbsp;Trackers"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">2.&nbsp;R&ocirc;les et permissions</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s01.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;1.&nbsp;Administration</th><td width="20%" align="right">&nbsp;<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="d0e50"></a>2.&nbsp;R&ocirc;les et permissions</h2></div></div></div><p>Les r&ocirc;les permettent de d&eacute;finir les permissions des diff&eacute;rents membres d'un projet. Chaque membre d'un projet dispose d'un r&ocirc;le unique au sein d'un projet. Un utilisateur peut avoir diff&eacute;rents r&ocirc;les au sein de diff&eacute;rents projets.</p><p>Sur l'&eacute;cran d'&eacute;dition du r&ocirc;le, cochez les actions que vous souhaitez autoriser pour le r&ocirc;le.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s01.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01s03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">1.&nbsp;Utilisateurs&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;3.&nbsp;Trackers</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>3.&nbsp;Trackers</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="up" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="prev" href="ch01s02.html" title="2.&nbsp;R&ocirc;les et permissions"><link rel="next" href="ch01s04.html" title="4.&nbsp;Champs personnalis&eacute;s"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">3.&nbsp;Trackers</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s02.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;1.&nbsp;Administration</th><td width="20%" align="right">&nbsp;<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="d0e57"></a>3.&nbsp;Trackers</h2></div></div></div><p>Les trackers permettent de typer les demandes et de d&eacute;finir des workflows sp&eacute;cifiques pour chacun de ces types.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s02.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01s04.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">2.&nbsp;R&ocirc;les et permissions&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;4.&nbsp;Champs personnalis&eacute;s</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>4.&nbsp;Champs personnalis&eacute;s</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="up" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="prev" href="ch01s03.html" title="3.&nbsp;Trackers"><link rel="next" href="ch01s05.html" title="5.&nbsp;Statut des demandes"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">4.&nbsp;Champs personnalis&eacute;s</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s03.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;1.&nbsp;Administration</th><td width="20%" align="right">&nbsp;<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="d0e62"></a>4.&nbsp;Champs personnalis&eacute;s</h2></div></div></div><p>Les champs personnalis&eacute;s vous permettent d'ajouter des informations suppl&eacute;mentaires sur les projets, les demandes ou les utilisateurs. Un champ personnalis&eacute; peut &ecirc;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&eacute;gatif</p></li><li><p><span class="guilabel">Cha&icirc;ne</span>: cha&icirc;ne de caract&egrave;re</p></li><li><p><span class="guilabel">Date</span>: date</p></li><li><p><span class="guilabel">Bool&eacute;en</span>: bool&eacute;en (case &agrave; cocher)</p></li><li><p><span class="guilabel">Liste</span>: valeur &agrave; s&eacute;lectionn&eacute;e parmi une liste pr&eacute;d&eacute;finie (liste d&eacute;roulante)</p></li></ul></div><p>Des &eacute;l&eacute;ments de validation peuvent &ecirc;tre d&eacute;finis:</p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Obligatoire</span>: champ dont la saisie est obligatoire sur les demandes</p></li><li><p><span class="guilabel">Pour tous les projects</span>: champ automatiquement associ&eacute; &agrave; l'ensemble des projets</p></li><li><p><span class="guilabel">Min - max length</span>: longueurs minimales et maximales pour les champs en saisie libre (0 signifie qu'il n'y a pas de restriction)</p></li><li><p><span class="guilabel">Expression r&eacute;guli&egrave;re</span>: expression r&eacute;guli&egrave;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&icirc;ne ne comportant pas de chiffres</p></li><li><p><span class="guilabel">Valeurs possibles</span>: valeurs possibles pour les champs de type "Liste". Les valeurs sont s&eacute;par&eacute;es par le caract&egrave;re |</p></li></ul></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e132"></a>4.1.&nbsp;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="d0e143"></a>4.2.&nbsp;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&eacute; aux demandes de l'ensemble des projets</p><p>Si cette option n'est pas activ&eacute;e, chaque projet pourra choisir d'utiliser ou non le champ pour ses demandes (voir configuration du projet).</p></li></ul></div><p></p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e156"></a>4.3.&nbsp;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="ch01s03.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01s05.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">3.&nbsp;Trackers&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;5.&nbsp;Statut des demandes</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>5.&nbsp;Statut des demandes</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="up" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="prev" href="ch01s04.html" title="4.&nbsp;Champs personnalis&eacute;s"><link rel="next" href="ch01s06.html" title="6.&nbsp;Workflow"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">5.&nbsp;Statut des demandes</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s04.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;1.&nbsp;Administration</th><td width="20%" align="right">&nbsp;<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="d0e167"></a>5.&nbsp;Statut des demandes</h2></div></div></div><p>Ces &eacute;crans vous permettent de d&eacute;finir les diff&eacute;rents statuts possibles des demandes.</p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Demande ferm&eacute;e</span>: indique que le statut correspond &agrave; une demande consid&eacute;r&eacute;e comme ferm&eacute;e</p></li><li><p><span class="guilabel">Statut par d&eacute;faut</span>: statut appliqu&eacute; par d&eacute;faut aux nouvelles demandes (seul un statut peut &ecirc;tre d&eacute;clar&eacute; comme statut par d&eacute;faut)</p></li><li><p><span class="guilabel">Couleur</span>: code couleur HTML (6 caract&egrave;res) repr&eacute;sentant le statut &agrave; l'affichage</p></li></ul></div><p></p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s04.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01s06.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">4.&nbsp;Champs personnalis&eacute;s&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;6.&nbsp;Workflow</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>6.&nbsp;Workflow</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="up" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="prev" href="ch01s05.html" title="5.&nbsp;Statut des demandes"><link rel="next" href="ch01s07.html" title="7.&nbsp;Listes de valeurs"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">6.&nbsp;Workflow</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s05.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;1.&nbsp;Administration</th><td width="20%" align="right">&nbsp;<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="d0e189"></a>6.&nbsp;Workflow</h2></div></div></div><p>Le workflow permet de d&eacute;finir les changements que les diff&eacute;rents membres d'un projet sont autoris&eacute;s &agrave; effectuer sur les demandes, en fonction de leur type.</p><p>S&eacute;lectionnez le r&ocirc;le et le tracker pour lesquels vous souhaitez modifier le workflow, puis cliquez sur Edit. L'&eacute;cran vous permet alors de modifier, pour le r&ocirc;le et le tracker choisi, les changements autoris&eacute;s. Les lignes repr&eacute;sentent les statuts initiaux des demandes. Les colonnes repr&eacute;sentent les statuts autoris&eacute;s &agrave; &ecirc;tre appliqu&eacute;s.</p><p><em><span class="remark">Remarque: pour qu'un r&ocirc;le puisse changer le statut des demandes, la permission doit lui &ecirc;tre explicitement donn&eacute;e ind&eacute;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 Bug au statut Nouveau pourront &ecirc;tre pass&eacute;es au statut Assign&eacute;e ou R&eacute;solue par le r&ocirc;le D&eacute;veloppeur. Celles au statut Assign&eacute;e pourront &ecirc;tre pass&eacute;es au statut R&eacute;solue. Le statut de toutes les autres demandes de type Bug ne pourra pas &ecirc;tre modifi&eacute; par le D&eacute;veloppeur.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s05.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01s07.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">5.&nbsp;Statut des demandes&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;7.&nbsp;Listes de valeurs</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>7.&nbsp;Listes de valeurs</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="up" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="prev" href="ch01s06.html" title="6.&nbsp;Workflow"><link rel="next" href="ch01s08.html" title="8.&nbsp;Notifications par mail"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">7.&nbsp;Listes de valeurs</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s06.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;1.&nbsp;Administration</th><td width="20%" align="right">&nbsp;<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="d0e208"></a>7.&nbsp;Listes de valeurs</h2></div></div></div><p>Les listes de valeurs utilis&eacute;es par l'application (exemple: les priorit&eacute;s des demandes) peuvent &ecirc;tre personnalis&eacute;es. Cet &eacute;cran vous permet de d&eacute;finir les valeurs possibles pour chacune des listes suivantes:</p><div class="itemizedlist"><ul type="disc"><li><p>Priorit&eacute;s des demandes</p></li><li><p>Cat&eacute;gories de documents</p></li></ul></div><p></p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s06.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01s08.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">6.&nbsp;Workflow&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;8.&nbsp;Notifications par mail</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>8.&nbsp;Notifications par mail</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="up" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="prev" href="ch01s07.html" title="7.&nbsp;Listes de valeurs"><link rel="next" href="ch01s09.html" title="9.&nbsp;Authentification"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">8.&nbsp;Notifications par mail</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s07.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;1.&nbsp;Administration</th><td width="20%" align="right">&nbsp;<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="d0e221"></a>8.&nbsp;Notifications par mail</h2></div></div></div><p>Cet &eacute;cran vous permet de s&eacute;lectionner les actions qui donneront lieu &agrave; une notification par mail aux membres du projet.</p><p>Remarque: l'envoi de mails doit &ecirc;tre activ&eacute; dans la configuration de l'application si souhaitez effectuer des notifications.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s07.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01s09.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">7.&nbsp;Listes de valeurs&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;9.&nbsp;Authentification</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>9.&nbsp;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 redMine"><link rel="up" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="prev" href="ch01s08.html" title="8.&nbsp;Notifications par mail"><link rel="next" href="ch01s10.html" title="10.&nbsp;Informations"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">9.&nbsp;Authentification</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s08.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;1.&nbsp;Administration</th><td width="20%" align="right">&nbsp;<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="d0e228"></a>9.&nbsp;Authentification</h2></div></div></div><p>Par d&eacute;faut, redMine s'appuie sur sa propre base de donn&eacute;es pour authentifier les utilisateurs, &agrave; l'aide d'un mot de passe sp&eacute;cifique.</p><p>Si vous disposez d&eacute;j&agrave; d'un ou plusieurs r&eacute;f&eacute;rentiels externes d'utilisateurs (annuaires LDAP), vous pouvez les d&eacute;clarer afin qu'ils soient utilis&eacute;s pour l'authentification sur redMine. Cela permet aux utilisateurs d'acc&eacute;der &agrave; redMine avec leurs identifiants et mots de passe habituels.</p><p>Pour chaque r&eacute;f&eacute;rentiel d&eacute;clar&eacute;, vous pouvez sp&eacute;cifier si les comptes peuvent &ecirc;tre cr&eacute;&eacute;s &agrave; la vol&eacute;e dans redMine. Si c'est le cas, les comptes utilisateurs sont automatiquement cr&eacute;&eacute;s &agrave; la premi&egrave;re connexion de l'utilisateur (sans droits sp&eacute;cifiques sur les projets), &agrave; partir des informations disponibles dans le r&eacute;f&eacute;rentiel. Sinon, l'administrateur doit au pr&eacute;alable cr&eacute;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="d0e238"></a>9.1.&nbsp;D&eacute;claration d'un 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&eacute;f&eacute;rentiel</p></li><li><p><span class="guilabel">H&ocirc;te</span>: nom d'h&ocirc;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&egrave;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&eacute; 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&eacute; comme identifiant de l'utilisateur (ex: uid)</p></li><li><p><span class="guilabel">Pr&eacute;nom</span>: nom de l'attribut LDAP contenant le pr&eacute;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&eacute;nom</span>", "<span class="guilabel">Nom</span>" et "<span class="guilabel">Email</span>" ne sont utilis&eacute;s que lorsque les comptes sont cr&eacute;&eacute;s &agrave; la vol&eacute;e.</p></div></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>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01s10.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">8.&nbsp;Notifications par mail&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;10.&nbsp;Informations</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>10.&nbsp;Informations</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="up" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"><link rel="prev" href="ch01s09.html" title="9.&nbsp;Authentification"><link rel="next" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projets"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">10.&nbsp;Informations</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s09.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;1.&nbsp;Administration</th><td width="20%" align="right">&nbsp;<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="d0e315"></a>10.&nbsp;Informations</h2></div></div></div><p>Affiche des informations relatives &agrave; l'application et &agrave; son environnement.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s09.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">9.&nbsp;Authentification&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;2.&nbsp;Projets</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>Chapter&nbsp;2.&nbsp;Projets</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="up" href="index.html" title="Documentation redMine"><link rel="prev" href="ch01s10.html" title="10.&nbsp;Informations"><link rel="next" href="ch02s01.html" title="1.&nbsp;Aper&ccedil;u du projet"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;2.&nbsp;Projets</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s10.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch02s01.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="d0e320"></a>Chapter&nbsp;2.&nbsp;Projets</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="section"><a href="ch02s01.html">1. Aper&ccedil;u du projet</a></span></dt><dt><span class="section"><a href="ch02s02.html">2. Gestion des demandes</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s02.html#d0e333">2.1. Liste des demandes</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s03.html">3. Rapports</a></span></dt><dt><span class="section"><a href="ch02s04.html">4. Historique</a></span></dt><dt><span class="section"><a href="ch02s05.html">5. Annonces</a></span></dt><dt><span class="section"><a href="ch02s06.html">6. Documents</a></span></dt><dt><span class="section"><a href="ch02s07.html">7. Fichiers</a></span></dt><dt><span class="section"><a href="ch02s08.html">8. Configuration du projet</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s08.html#d0e377">8.1. Propri&eacute;t&eacute;s du projet</a></span></dt><dt><span class="section"><a href="ch02s08.html#d0e393">8.2. Membres</a></span></dt><dt><span class="section"><a href="ch02s08.html#d0e398">8.3. Versions</a></span></dt><dt><span class="section"><a href="ch02s08.html#d0e403">8.4. Cat&eacute;gories des demandes</a></span></dt></dl></dd></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s10.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">10.&nbsp;Informations&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;1.&nbsp;Aper&ccedil;u du projet</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>1.&nbsp;Aper&ccedil;u du projet</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projets"><link rel="prev" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projets"><link rel="next" href="ch02s02.html" title="2.&nbsp;Gestion des demandes"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">1.&nbsp;Aper&ccedil;u du projet</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projets</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="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="d0e323"></a>1.&nbsp;Aper&ccedil;u du projet</h2></div></div></div><p>L'aper&ccedil;u vous pr&eacute;sente les informations g&eacute;n&eacute;rales relatives au projet, les principaux membres, les derni&egrave;res annonces, ainsi qu'une synth&egrave;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>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;2.&nbsp;Projets&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;2.&nbsp;Gestion des demandes</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>2.&nbsp;Gestion des demandes</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projets"><link rel="prev" href="ch02s01.html" title="1.&nbsp;Aper&ccedil;u du projet"><link rel="next" href="ch02s03.html" title="3.&nbsp;Rapports"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">2.&nbsp;Gestion des demandes</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s01.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projets</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="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="d0e329"></a>2.&nbsp;Gestion des demandes</h2></div></div></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e333"></a>2.1.&nbsp;Liste des demandes</h3></div></div></div><p>Par d&eacute;faut, l'ensemble des demandes ouvertes du projet sont affich&eacute;es. Diff&eacute;rents filtres vous permettent de s&eacute;lectionner les demandes &agrave; afficher. Si le projet comporte des sous-projets, vous avez la possibilit&eacute; d'afficher &eacute;galement les demandes relatives aux sous-projets (non affich&eacute;es par d&eacute;faut).</p><p>Une fois appliqu&eacute;, un filtre reste valable durant toute votre session. Vous pouvez le red&eacute;finir, ou le supprimer en cliquant sur Annuler.</p><p></p><div class="screenshot"><div class="mediaobject"><img src="resources/issues_list.png"></div></div><p></p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s01.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">1.&nbsp;Aper&ccedil;u du projet&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;3.&nbsp;Rapports</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>3.&nbsp;Rapports</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projets"><link rel="prev" href="ch02s02.html" title="2.&nbsp;Gestion des demandes"><link rel="next" href="ch02s04.html" title="4.&nbsp;Historique"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">3.&nbsp;Rapports</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s02.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projets</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="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="d0e348"></a>3.&nbsp;Rapports</h2></div></div></div><p>Cet &eacute;cran pr&eacute;sente la synth&egrave;se du nombre de demandes par statut et selon diff&eacute;rents crit&egrave;res (tracker, priorit&eacute;, cat&eacute;gorie). Des liens directs permettent d'acc&eacute;der &agrave; la liste d&eacute;taill&eacute;e des demandes pour chaque crit&egrave;re.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s02.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s04.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">2.&nbsp;Gestion des demandes&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;4.&nbsp;Historique</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>4.&nbsp;Historique</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projets"><link rel="prev" href="ch02s03.html" title="3.&nbsp;Rapports"><link rel="next" href="ch02s05.html" title="5.&nbsp;Annonces"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">4.&nbsp;Historique</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s03.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projets</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="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="d0e353"></a>4.&nbsp;Historique</h2></div></div></div><p>Cette page pr&eacute;sente l'ensemble des demandes r&eacute;solues dans chacune des versions du projet. Certains types de demande peuvent &ecirc;tre exclus de cet affichage.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s03.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s05.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">3.&nbsp;Rapports&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;5.&nbsp;Annonces</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>5.&nbsp;Annonces</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projets"><link rel="prev" href="ch02s04.html" title="4.&nbsp;Historique"><link rel="next" href="ch02s06.html" title="6.&nbsp;Documents"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">5.&nbsp;Annonces</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s04.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projets</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="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="d0e358"></a>5.&nbsp;Annonces</h2></div></div></div><p>Les nouvelles vous permettent d'informer les utilisateurs sur l'activit&eacute; du projet.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s04.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s06.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">4.&nbsp;Historique&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;6.&nbsp;Documents</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>6.&nbsp;Documents</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projets"><link rel="prev" href="ch02s05.html" title="5.&nbsp;Annonces"><link rel="next" href="ch02s07.html" title="7.&nbsp;Fichiers"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">6.&nbsp;Documents</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s05.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projets</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="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="d0e363"></a>6.&nbsp;Documents</h2></div></div></div><p>Les documents sont group&eacute;s par cat&eacute;gories (voir Listes de valeurs). Un document peut contenir plusieurs fichiers (exemple: r&eacute;visions ou versions successives).</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s05.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s07.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">5.&nbsp;Annonces&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;7.&nbsp;Fichiers</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>7.&nbsp;Fichiers</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projets"><link rel="prev" href="ch02s06.html" title="6.&nbsp;Documents"><link rel="next" href="ch02s08.html" title="8.&nbsp;Configuration du projet"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">7.&nbsp;Fichiers</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s06.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projets</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="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="d0e368"></a>7.&nbsp;Fichiers</h2></div></div></div><p>Ce module vous permet de publier les diff&eacute;rents fichiers (sources, binaires, ...) pour chaque version de l'application.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s06.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s08.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">6.&nbsp;Documents&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;8.&nbsp;Configuration du projet</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>8.&nbsp;Configuration du projet</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projets"><link rel="prev" href="ch02s07.html" title="7.&nbsp;Fichiers"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">8.&nbsp;Configuration du projet</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s07.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projets</th><td width="20%" align="right">&nbsp;</td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e373"></a>8.&nbsp;Configuration du projet</h2></div></div></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e377"></a>8.1.&nbsp;Propri&eacute;t&eacute;s du projet</h3></div></div></div><p></p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Public</span>: si le projet est public, il sera visible (consultation des demandes, des documents, ...) pour l'ensemble des utilisateurs, y compris ceux qui ne sont pas membres du projet. Si le projet n'est pas public, seuls les membres du projet y ont acc&egrave;s, en fonction de leur r&ocirc;le.</p></li><li><p><span class="guilabel">Champs personnalis&eacute;s</span>: s&eacute;lectionner les champs personnalis&eacute;s que vous souhaitez utiliser pour les demandes du projet. Seul l'administrateur peut d&eacute;finir de nouveaux champs personnalis&eacute;s.</p></li></ul></div><p></p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e393"></a>8.2.&nbsp;Membres</h3></div></div></div><p>Cet &eacute;cran vous permet de d&eacute;finir les membres du projet ainsi que leurs r&ocirc;les respectifs. Un utilisateur ne peut avoir qu'un r&ocirc;le au sein d'un projet donn&eacute;. Le r&ocirc;le d'un membre d&eacute;termine les permissions dont il b&eacute;n&eacute;ficie sur le projet.</p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e398"></a>8.3.&nbsp;Versions</h3></div></div></div><p>Les versions vous permettent de suivre les changements survenus tout au long du projet. A la fermeture d'une demande, vous pouvez par exemple indiquer quelle version la prend en compte. Vous pouvez par ailleurs publier les diff&eacute;rentes versions de l'application (voir Fichiers).</p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e403"></a>8.4.&nbsp;Cat&eacute;gories des demandes</h3></div></div></div><p>Les cat&eacute;gories de demande vous permettent de typer les demandes. Les cat&eacute;gories peuvent par exemple correspondre aux diff&eacute;rents modules du projet.</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s07.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;</td></tr><tr><td width="40%" align="left" valign="top">7.&nbsp;Fichiers&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;</td></tr></table></div></body></html> No newline at end of file
@@ -0,0 +1,55
1 body {
2 background: #FFFFFF;
3 font: 0.8em Verdana,Tahoma,Arial,sans-serif;
4 }
5
6 h1, h2, h3, h4, h5 {
7 color: #800000;
8 font-family: sans-serif;
9 }
10
11 table {
12 font-size: 1em;
13 }
14
15 a{
16 color:#467aa7;
17 font-weight:bold;
18 text-decoration:none;
19 background-color:inherit;
20 }
21
22 a:hover{
23 color: #800000;
24 text-decoration:underline;
25 background-color:inherit;
26 }
27
28 a img{border:none;}
29
30 .screenshot {
31 text-align: center;
32 }
33
34 .guilabel {
35 font-weight: bold;
36 }
37
38 span.term {
39 font-weight: bold;
40 }
41
42 div.sidebar {
43 background: #F0F0F0;
44 border: 1px solid gray;
45 padding: 5px;
46 margin: 20px;
47 }
48
49 pre.programlisting {
50 background: #F0F0F0;
51 border: 1px solid gray;
52 padding: 2px;
53 font-size: 10pt;
54 white-space: pre;
55 }
@@ -0,0 +1,3
1 <html><head>
2 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3 <title>Documentation redMine</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation redMine"><link rel="next" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Documentation redMine</th></tr><tr><td width="20%" align="left">&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch01.html">Next</a></td></tr></table><hr></div><div class="book" lang="en"><div class="titlepage"><div><div><h1 class="title"><a name="d0e1"></a>Documentation redMine</h1></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="chapter"><a href="ch01.html">1. Administration</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html">1. Utilisateurs</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html#d0e12">1.1. Liste des utilisateurs</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e26">1.2. Cr&eacute;ation ou modification d'un utilisateur</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s02.html">2. R&ocirc;les et permissions</a></span></dt><dt><span class="section"><a href="ch01s03.html">3. Trackers</a></span></dt><dt><span class="section"><a href="ch01s04.html">4. Champs personnalis&eacute;s</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s04.html#d0e132">4.1. Champs pour les projets</a></span></dt><dt><span class="section"><a href="ch01s04.html#d0e143">4.2. Champs pour les demandes</a></span></dt><dt><span class="section"><a href="ch01s04.html#d0e156">4.3. Champs pour les utilisateurs</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s05.html">5. Statut des demandes</a></span></dt><dt><span class="section"><a href="ch01s06.html">6. Workflow</a></span></dt><dt><span class="section"><a href="ch01s07.html">7. Listes de valeurs</a></span></dt><dt><span class="section"><a href="ch01s08.html">8. Notifications par mail</a></span></dt><dt><span class="section"><a href="ch01s09.html">9. Authentification</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s09.html#d0e238">9.1. D&eacute;claration d'un annuaire LDAP</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s10.html">10. Informations</a></span></dt></dl></dd><dt><span class="chapter"><a href="ch02.html">2. Projets</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s01.html">1. Aper&ccedil;u du projet</a></span></dt><dt><span class="section"><a href="ch02s02.html">2. Gestion des demandes</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s02.html#d0e333">2.1. Liste des demandes</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s03.html">3. Rapports</a></span></dt><dt><span class="section"><a href="ch02s04.html">4. Historique</a></span></dt><dt><span class="section"><a href="ch02s05.html">5. Annonces</a></span></dt><dt><span class="section"><a href="ch02s06.html">6. Documents</a></span></dt><dt><span class="section"><a href="ch02s07.html">7. Fichiers</a></span></dt><dt><span class="section"><a href="ch02s08.html">8. Configuration du projet</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s08.html#d0e377">8.1. Propri&eacute;t&eacute;s du projet</a></span></dt><dt><span class="section"><a href="ch02s08.html#d0e393">8.2. Membres</a></span></dt><dt><span class="section"><a href="ch02s08.html#d0e398">8.3. Versions</a></span></dt><dt><span class="section"><a href="ch02s08.html#d0e403">8.4. Cat&eacute;gories des demandes</a></span></dt></dl></dd></dl></dd></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;1.&nbsp;Administration</td></tr></table></div></body></html> No newline at end of file
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
@@ -0,0 +1,1
1 # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file No newline at end of file
@@ -0,0 +1,231
1 /* The main calendar widget. DIV containing a table. */
2
3 div.calendar { position: relative; }
4
5 .calendar, .calendar table {
6 border: 1px solid #556;
7 font-size: 11px;
8 color: #000;
9 cursor: default;
10 background: #fafbfc;
11 font-family: tahoma,verdana,sans-serif;
12 }
13
14 /* Header part -- contains navigation buttons and day names. */
15
16 .calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
17 text-align: center; /* They are the navigation buttons */
18 padding: 2px; /* Make the buttons seem like they're pressing */
19 }
20
21 .calendar .nav {
22 background: #467aa7 url(menuarrow.gif) no-repeat 100% 100%;
23 }
24
25 .calendar thead .title { /* This holds the current "month, year" */
26 font-weight: bold; /* Pressing it will take you to the current date */
27 text-align: center;
28 background: #fff;
29 color: #000;
30 padding: 2px;
31 }
32
33 .calendar thead .headrow { /* Row <TR> containing navigation buttons */
34 background: #467aa7;
35 color: #fff;
36 }
37
38 .calendar thead .daynames { /* Row <TR> containing the day names */
39 background: #bdf;
40 }
41
42 .calendar thead .name { /* Cells <TD> containing the day names */
43 border-bottom: 1px solid #556;
44 padding: 2px;
45 text-align: center;
46 color: #000;
47 }
48
49 .calendar thead .weekend { /* How a weekend day name shows in header */
50 color: #a66;
51 }
52
53 .calendar thead .hilite { /* How do the buttons in header appear when hover */
54 background-color: #80b0da;
55 color: #000;
56 padding: 1px;
57 }
58
59 .calendar thead .active { /* Active (pressed) buttons in header */
60 background-color: #77c;
61 padding: 2px 0px 0px 2px;
62 }
63
64 /* The body part -- contains all the days in month. */
65
66 .calendar tbody .day { /* Cells <TD> containing month days dates */
67 width: 2em;
68 color: #456;
69 text-align: right;
70 padding: 2px 4px 2px 2px;
71 }
72 .calendar tbody .day.othermonth {
73 font-size: 80%;
74 color: #bbb;
75 }
76 .calendar tbody .day.othermonth.oweekend {
77 color: #fbb;
78 }
79
80 .calendar table .wn {
81 padding: 2px 3px 2px 2px;
82 border-right: 1px solid #000;
83 background: #bdf;
84 }
85
86 .calendar tbody .rowhilite td {
87 background: #def;
88 }
89
90 .calendar tbody .rowhilite td.wn {
91 background: #80b0da;
92 }
93
94 .calendar tbody td.hilite { /* Hovered cells <TD> */
95 background: #80b0da;
96 padding: 1px 3px 1px 1px;
97 border: 1px solid #bbb;
98 }
99
100 .calendar tbody td.active { /* Active (pressed) cells <TD> */
101 background: #cde;
102 padding: 2px 2px 0px 2px;
103 }
104
105 .calendar tbody td.selected { /* Cell showing today date */
106 font-weight: bold;
107 border: 1px solid #000;
108 padding: 1px 3px 1px 1px;
109 background: #fff;
110 color: #000;
111 }
112
113 .calendar tbody td.weekend { /* Cells showing weekend days */
114 color: #a66;
115 }
116
117 .calendar tbody td.today { /* Cell showing selected date */
118 font-weight: bold;
119 color: #f00;
120 }
121
122 .calendar tbody .disabled { color: #999; }
123
124 .calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
125 visibility: hidden;
126 }
127
128 .calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
129 display: none;
130 }
131
132 /* The footer part -- status bar and "Close" button */
133
134 .calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
135 text-align: center;
136 background: #556;
137 color: #fff;
138 }
139
140 .calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
141 background: #fff;
142 color: #445;
143 border-top: 1px solid #556;
144 padding: 1px;
145 }
146
147 .calendar tfoot .hilite { /* Hover style for buttons in footer */
148 background: #aaf;
149 border: 1px solid #04f;
150 color: #000;
151 padding: 1px;
152 }
153
154 .calendar tfoot .active { /* Active (pressed) style for buttons in footer */
155 background: #77c;
156 padding: 2px 0px 0px 2px;
157 }
158
159 /* Combo boxes (menus that display months/years for direct selection) */
160
161 .calendar .combo {
162 position: absolute;
163 display: none;
164 top: 0px;
165 left: 0px;
166 width: 4em;
167 cursor: default;
168 border: 1px solid #655;
169 background: #def;
170 color: #000;
171 font-size: 90%;
172 z-index: 100;
173 }
174
175 .calendar .combo .label,
176 .calendar .combo .label-IEfix {
177 text-align: center;
178 padding: 1px;
179 }
180
181 .calendar .combo .label-IEfix {
182 width: 4em;
183 }
184
185 .calendar .combo .hilite {
186 background: #acf;
187 }
188
189 .calendar .combo .active {
190 border-top: 1px solid #46a;
191 border-bottom: 1px solid #46a;
192 background: #eef;
193 font-weight: bold;
194 }
195
196 .calendar td.time {
197 border-top: 1px solid #000;
198 padding: 1px 0px;
199 text-align: center;
200 background-color: #f4f0e8;
201 }
202
203 .calendar td.time .hour,
204 .calendar td.time .minute,
205 .calendar td.time .ampm {
206 padding: 0px 3px 0px 4px;
207 border: 1px solid #889;
208 font-weight: bold;
209 background-color: #fff;
210 }
211
212 .calendar td.time .ampm {
213 text-align: center;
214 }
215
216 .calendar td.time .colon {
217 padding: 0px 2px 0px 3px;
218 font-weight: bold;
219 }
220
221 .calendar td.time span.hilite {
222 border-color: #000;
223 background-color: #667;
224 color: #fff;
225 }
226
227 .calendar td.time span.active {
228 border-color: #f00;
229 background-color: #000;
230 color: #0f0;
231 }
@@ -0,0 +1,79
1 .jstEditor {
2 padding-left: 0px;
3 }
4 .jstEditor textarea, .jstEditor iframe {
5 margin: 0;
6 border: 1;
7 }
8
9 .jstHandle {
10 height: 16px;
11 font-size: 0.1em;
12 cursor: s-resize;
13 background: transparent url(img/resizer.png) no-repeat 45% 50%;
14 }
15
16 .jstElements {
17 padding: 3px 3px;
18 }
19
20 .jstElements button {
21 margin-right : 6px;
22 width : 24px;
23 height: 24px;
24 padding: 4px;
25 border-style: solid;
26 border-width: 1px;
27 border-color: #ddd;
28 background-color : #f7f7f7;
29 background-position : 50% 50%;
30 background-repeat: no-repeat;
31 }
32 .jstElements button:hover {
33 border-color : #000;
34 }
35 .jstElements button span {
36 display : none;
37 }
38 .jstElements span {
39 display : inline;
40 }
41
42 .jstSpacer {
43 width : 0px;
44 font-size: 1px;
45 margin-right: 4px;
46 }
47
48 /* Buttons
49 -------------------------------------------------------- */
50 .jstb_strong {
51 background-image: url(../images/jstoolbar/bt_strong.png);
52 }
53 .jstb_em {
54 background-image: url(../images/jstoolbar/bt_em.png);
55 }
56 .jstb_ins {
57 background-image: url(../images/jstoolbar/bt_ins.png);
58 }
59 .jstb_del {
60 background-image: url(../images/jstoolbar/bt_del.png);
61 }
62 .jstb_quote {
63 background-image: url(../images/jstoolbar/bt_quote.png);
64 }
65 .jstb_code {
66 background-image: url(../images/jstoolbar/bt_code.png);
67 }
68 .jstb_br {
69 background-image: url(../images/jstoolbar/bt_br.png);
70 }
71 .jstb_ul {
72 background-image: url(../images/jstoolbar/bt_ul.png);
73 }
74 .jstb_ol {
75 background-image: url(../images/jstoolbar/bt_ol.png);
76 }
77 .jstb_link {
78 background-image: url(../images/jstoolbar/bt_link.png);
79 }
@@ -0,0 +1,39
1 /*========== Drop down menu ==============*/
2 div.menu {
3 background-color: #FFFFFF;
4 border-style: solid;
5 border-width: 1px;
6 border-color: #7F9DB9;
7 position: absolute;
8 top: 0px;
9 left: 0px;
10 padding: 0;
11 visibility: hidden;
12 z-index: 101;
13 }
14
15 div.menu a.menuItem {
16 font-size: 10px;
17 font-weight: normal;
18 line-height: 2em;
19 color: #000000;
20 background-color: #FFFFFF;
21 cursor: default;
22 display: block;
23 padding: 0 1em;
24 margin: 0;
25 border: 0;
26 text-decoration: none;
27 white-space: nowrap;
28 }
29
30 div.menu a.menuItem:hover, div.menu a.menuItemHighlight {
31 background-color: #80b0da;
32 color: #ffffff;
33 }
34
35 div.menu a.menuItem span.menuItemText {}
36
37 div.menu a.menuItem span.menuItemArrow {
38 margin-right: -.75em;
39 }
@@ -0,0 +1,57
1
2 .fieldWithErrors {
3 padding: 2px;
4 margin: 0px;
5 background-color: red;
6 display: table;
7 }
8
9 #errorExplanation {
10 width: 400px;
11 border: 0;
12 padding: 7px;
13 padding-bottom: 3px;
14 margin-bottom: 0px;
15 /*background-color: #f0f0f0;*/
16 }
17
18 #errorExplanation h2 {
19 text-align: left;
20 font-weight: bold;
21 padding: 5px 5px 10px 26px;
22 font-size: 1em;
23 margin: -7px;
24 background: url(../images/alert.png) no-repeat 6px 6px;
25 }
26
27 #errorExplanation p {
28 color: #333;
29 margin-bottom: 0;
30 padding: 5px;
31 }
32
33 #errorExplanation ul li {
34 font-size: 1em;
35 list-style: none;
36 margin-left: -16px;
37 }
38
39 div.uploadStatus {
40 margin: 5px;
41 }
42
43 div.progressBar {
44 margin: 5px;
45 }
46
47 div.progressBar div.border {
48 background-color: #fff;
49 border: 1px solid grey;
50 width: 100%;
51 }
52
53 div.progressBar div.background {
54 background-color: #333;
55 height: 18px;
56 width: 0%;
57 }
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from redmine/Rakefile to Rakefile
NO CONTENT: file renamed from redmine/Rakefile to Rakefile
1 NO CONTENT: file renamed from redmine/app/controllers/account_controller.rb to app/controllers/account_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/account_controller.rb to app/controllers/account_controller.rb
1 NO CONTENT: file renamed from redmine/app/controllers/admin_controller.rb to app/controllers/admin_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/admin_controller.rb to app/controllers/admin_controller.rb
1 NO CONTENT: file renamed from redmine/app/controllers/application.rb to app/controllers/application.rb
NO CONTENT: file renamed from redmine/app/controllers/application.rb to app/controllers/application.rb
1 NO CONTENT: file renamed from redmine/app/controllers/auth_sources_controller.rb to app/controllers/auth_sources_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/auth_sources_controller.rb to app/controllers/auth_sources_controller.rb
1 NO CONTENT: file renamed from redmine/app/controllers/custom_fields_controller.rb to app/controllers/custom_fields_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/custom_fields_controller.rb to app/controllers/custom_fields_controller.rb
1 NO CONTENT: file renamed from redmine/app/controllers/documents_controller.rb to app/controllers/documents_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/documents_controller.rb to app/controllers/documents_controller.rb
1 NO CONTENT: file renamed from redmine/app/controllers/enumerations_controller.rb to app/controllers/enumerations_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/enumerations_controller.rb to app/controllers/enumerations_controller.rb
1 NO CONTENT: file renamed from redmine/app/controllers/help_controller.rb to app/controllers/help_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/help_controller.rb to app/controllers/help_controller.rb
1 NO CONTENT: file renamed from redmine/app/controllers/issue_categories_controller.rb to app/controllers/issue_categories_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/issue_categories_controller.rb to app/controllers/issue_categories_controller.rb
1 NO CONTENT: file renamed from redmine/app/controllers/issue_statuses_controller.rb to app/controllers/issue_statuses_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/issue_statuses_controller.rb to app/controllers/issue_statuses_controller.rb
1 NO CONTENT: file renamed from redmine/app/controllers/issues_controller.rb to app/controllers/issues_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/issues_controller.rb to app/controllers/issues_controller.rb
1 NO CONTENT: file renamed from redmine/app/controllers/members_controller.rb to app/controllers/members_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/members_controller.rb to app/controllers/members_controller.rb
1 NO CONTENT: file renamed from redmine/app/controllers/my_controller.rb to app/controllers/my_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/my_controller.rb to app/controllers/my_controller.rb
1 NO CONTENT: file renamed from redmine/app/controllers/news_controller.rb to app/controllers/news_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/news_controller.rb to app/controllers/news_controller.rb
1 NO CONTENT: file renamed from redmine/app/controllers/projects_controller.rb to app/controllers/projects_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/projects_controller.rb to app/controllers/projects_controller.rb
1 NO CONTENT: file renamed from redmine/app/controllers/reports_controller.rb to app/controllers/reports_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/reports_controller.rb to app/controllers/reports_controller.rb
1 NO CONTENT: file renamed from redmine/app/controllers/roles_controller.rb to app/controllers/roles_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/roles_controller.rb to app/controllers/roles_controller.rb
1 NO CONTENT: file renamed from redmine/app/controllers/trackers_controller.rb to app/controllers/trackers_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/trackers_controller.rb to app/controllers/trackers_controller.rb
1 NO CONTENT: file renamed from redmine/app/controllers/users_controller.rb to app/controllers/users_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/users_controller.rb to app/controllers/users_controller.rb
1 NO CONTENT: file renamed from redmine/app/controllers/versions_controller.rb to app/controllers/versions_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/versions_controller.rb to app/controllers/versions_controller.rb
1 NO CONTENT: file renamed from redmine/app/controllers/welcome_controller.rb to app/controllers/welcome_controller.rb
NO CONTENT: file renamed from redmine/app/controllers/welcome_controller.rb to app/controllers/welcome_controller.rb
1 NO CONTENT: file renamed from redmine/app/helpers/account_helper.rb to app/helpers/account_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/account_helper.rb to app/helpers/account_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/admin_helper.rb to app/helpers/admin_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/admin_helper.rb to app/helpers/admin_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/application_helper.rb to app/helpers/application_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/application_helper.rb to app/helpers/application_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/auth_sources_helper.rb to app/helpers/auth_sources_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/auth_sources_helper.rb to app/helpers/auth_sources_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/custom_fields_helper.rb to app/helpers/custom_fields_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/custom_fields_helper.rb to app/helpers/custom_fields_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/documents_helper.rb to app/helpers/documents_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/documents_helper.rb to app/helpers/documents_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/enumerations_helper.rb to app/helpers/enumerations_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/enumerations_helper.rb to app/helpers/enumerations_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/help_helper.rb to app/helpers/help_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/help_helper.rb to app/helpers/help_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/ifpdf_helper.rb to app/helpers/ifpdf_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/ifpdf_helper.rb to app/helpers/ifpdf_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/issue_categories_helper.rb to app/helpers/issue_categories_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/issue_categories_helper.rb to app/helpers/issue_categories_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/issue_statuses_helper.rb to app/helpers/issue_statuses_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/issue_statuses_helper.rb to app/helpers/issue_statuses_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/issues_helper.rb to app/helpers/issues_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/issues_helper.rb to app/helpers/issues_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/members_helper.rb to app/helpers/members_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/members_helper.rb to app/helpers/members_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/my_helper.rb to app/helpers/my_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/my_helper.rb to app/helpers/my_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/news_helper.rb to app/helpers/news_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/news_helper.rb to app/helpers/news_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/projects_helper.rb to app/helpers/projects_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/projects_helper.rb to app/helpers/projects_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/reports_helper.rb to app/helpers/reports_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/reports_helper.rb to app/helpers/reports_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/roles_helper.rb to app/helpers/roles_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/roles_helper.rb to app/helpers/roles_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/search_filter_helper.rb to app/helpers/search_filter_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/search_filter_helper.rb to app/helpers/search_filter_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/sort_helper.rb to app/helpers/sort_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/sort_helper.rb to app/helpers/sort_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/trackers_helper.rb to app/helpers/trackers_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/trackers_helper.rb to app/helpers/trackers_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/users_helper.rb to app/helpers/users_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/users_helper.rb to app/helpers/users_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/versions_helper.rb to app/helpers/versions_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/versions_helper.rb to app/helpers/versions_helper.rb
1 NO CONTENT: file renamed from redmine/app/helpers/welcome_helper.rb to app/helpers/welcome_helper.rb
NO CONTENT: file renamed from redmine/app/helpers/welcome_helper.rb to app/helpers/welcome_helper.rb
1 NO CONTENT: file renamed from redmine/app/models/attachment.rb to app/models/attachment.rb
NO CONTENT: file renamed from redmine/app/models/attachment.rb to app/models/attachment.rb
1 NO CONTENT: file renamed from redmine/app/models/auth_source.rb to app/models/auth_source.rb
NO CONTENT: file renamed from redmine/app/models/auth_source.rb to app/models/auth_source.rb
1 NO CONTENT: file renamed from redmine/app/models/auth_source_ldap.rb to app/models/auth_source_ldap.rb
NO CONTENT: file renamed from redmine/app/models/auth_source_ldap.rb to app/models/auth_source_ldap.rb
1 NO CONTENT: file renamed from redmine/app/models/custom_field.rb to app/models/custom_field.rb
NO CONTENT: file renamed from redmine/app/models/custom_field.rb to app/models/custom_field.rb
1 NO CONTENT: file renamed from redmine/app/models/custom_value.rb to app/models/custom_value.rb
NO CONTENT: file renamed from redmine/app/models/custom_value.rb to app/models/custom_value.rb
1 NO CONTENT: file renamed from redmine/app/models/document.rb to app/models/document.rb
NO CONTENT: file renamed from redmine/app/models/document.rb to app/models/document.rb
1 NO CONTENT: file renamed from redmine/app/models/enumeration.rb to app/models/enumeration.rb
NO CONTENT: file renamed from redmine/app/models/enumeration.rb to app/models/enumeration.rb
1 NO CONTENT: file renamed from redmine/app/models/issue.rb to app/models/issue.rb
NO CONTENT: file renamed from redmine/app/models/issue.rb to app/models/issue.rb
1 NO CONTENT: file renamed from redmine/app/models/issue_category.rb to app/models/issue_category.rb
NO CONTENT: file renamed from redmine/app/models/issue_category.rb to app/models/issue_category.rb
1 NO CONTENT: file renamed from redmine/app/models/issue_custom_field.rb to app/models/issue_custom_field.rb
NO CONTENT: file renamed from redmine/app/models/issue_custom_field.rb to app/models/issue_custom_field.rb
1 NO CONTENT: file renamed from redmine/app/models/issue_history.rb to app/models/issue_history.rb
NO CONTENT: file renamed from redmine/app/models/issue_history.rb to app/models/issue_history.rb
1 NO CONTENT: file renamed from redmine/app/models/issue_status.rb to app/models/issue_status.rb
NO CONTENT: file renamed from redmine/app/models/issue_status.rb to app/models/issue_status.rb
1 NO CONTENT: file renamed from redmine/app/models/journal.rb to app/models/journal.rb
NO CONTENT: file renamed from redmine/app/models/journal.rb to app/models/journal.rb
1 NO CONTENT: file renamed from redmine/app/models/journal_detail.rb to app/models/journal_detail.rb
NO CONTENT: file renamed from redmine/app/models/journal_detail.rb to app/models/journal_detail.rb
1 NO CONTENT: file renamed from redmine/app/models/mailer.rb to app/models/mailer.rb
NO CONTENT: file renamed from redmine/app/models/mailer.rb to app/models/mailer.rb
1 NO CONTENT: file renamed from redmine/app/models/member.rb to app/models/member.rb
NO CONTENT: file renamed from redmine/app/models/member.rb to app/models/member.rb
1 NO CONTENT: file renamed from redmine/app/models/news.rb to app/models/news.rb
NO CONTENT: file renamed from redmine/app/models/news.rb to app/models/news.rb
1 NO CONTENT: file renamed from redmine/app/models/permission.rb to app/models/permission.rb
NO CONTENT: file renamed from redmine/app/models/permission.rb to app/models/permission.rb
1 NO CONTENT: file renamed from redmine/app/models/project.rb to app/models/project.rb
NO CONTENT: file renamed from redmine/app/models/project.rb to app/models/project.rb
1 NO CONTENT: file renamed from redmine/app/models/project_custom_field.rb to app/models/project_custom_field.rb
NO CONTENT: file renamed from redmine/app/models/project_custom_field.rb to app/models/project_custom_field.rb
1 NO CONTENT: file renamed from redmine/app/models/role.rb to app/models/role.rb
NO CONTENT: file renamed from redmine/app/models/role.rb to app/models/role.rb
1 NO CONTENT: file renamed from redmine/app/models/token.rb to app/models/token.rb
NO CONTENT: file renamed from redmine/app/models/token.rb to app/models/token.rb
1 NO CONTENT: file renamed from redmine/app/models/tracker.rb to app/models/tracker.rb
NO CONTENT: file renamed from redmine/app/models/tracker.rb to app/models/tracker.rb
1 NO CONTENT: file renamed from redmine/app/models/user.rb to app/models/user.rb
NO CONTENT: file renamed from redmine/app/models/user.rb to app/models/user.rb
1 NO CONTENT: file renamed from redmine/app/models/user_custom_field.rb to app/models/user_custom_field.rb
NO CONTENT: file renamed from redmine/app/models/user_custom_field.rb to app/models/user_custom_field.rb
1 NO CONTENT: file renamed from redmine/app/models/user_preference.rb to app/models/user_preference.rb
NO CONTENT: file renamed from redmine/app/models/user_preference.rb to app/models/user_preference.rb
1 NO CONTENT: file renamed from redmine/app/models/version.rb to app/models/version.rb
NO CONTENT: file renamed from redmine/app/models/version.rb to app/models/version.rb
1 NO CONTENT: file renamed from redmine/app/models/workflow.rb to app/models/workflow.rb
NO CONTENT: file renamed from redmine/app/models/workflow.rb to app/models/workflow.rb
1 NO CONTENT: file renamed from redmine/app/views/account/login.rhtml to app/views/account/login.rhtml
NO CONTENT: file renamed from redmine/app/views/account/login.rhtml to app/views/account/login.rhtml
1 NO CONTENT: file renamed from redmine/app/views/account/lost_password.rhtml to app/views/account/lost_password.rhtml
NO CONTENT: file renamed from redmine/app/views/account/lost_password.rhtml to app/views/account/lost_password.rhtml
1 NO CONTENT: file renamed from redmine/app/views/account/password_recovery.rhtml to app/views/account/password_recovery.rhtml
NO CONTENT: file renamed from redmine/app/views/account/password_recovery.rhtml to app/views/account/password_recovery.rhtml
1 NO CONTENT: file renamed from redmine/app/views/account/register.rhtml to app/views/account/register.rhtml
NO CONTENT: file renamed from redmine/app/views/account/register.rhtml to app/views/account/register.rhtml
1 NO CONTENT: file renamed from redmine/app/views/account/show.rhtml to app/views/account/show.rhtml
NO CONTENT: file renamed from redmine/app/views/account/show.rhtml to app/views/account/show.rhtml
1 NO CONTENT: file renamed from redmine/app/views/admin/index.rhtml to app/views/admin/index.rhtml
NO CONTENT: file renamed from redmine/app/views/admin/index.rhtml to app/views/admin/index.rhtml
1 NO CONTENT: file renamed from redmine/app/views/admin/info.rhtml to app/views/admin/info.rhtml
NO CONTENT: file renamed from redmine/app/views/admin/info.rhtml to app/views/admin/info.rhtml
1 NO CONTENT: file renamed from redmine/app/views/admin/mail_options.rhtml to app/views/admin/mail_options.rhtml
NO CONTENT: file renamed from redmine/app/views/admin/mail_options.rhtml to app/views/admin/mail_options.rhtml
1 NO CONTENT: file renamed from redmine/app/views/admin/projects.rhtml to app/views/admin/projects.rhtml
NO CONTENT: file renamed from redmine/app/views/admin/projects.rhtml to app/views/admin/projects.rhtml
1 NO CONTENT: file renamed from redmine/app/views/auth_sources/_form.rhtml to app/views/auth_sources/_form.rhtml
NO CONTENT: file renamed from redmine/app/views/auth_sources/_form.rhtml to app/views/auth_sources/_form.rhtml
1 NO CONTENT: file renamed from redmine/app/views/auth_sources/edit.rhtml to app/views/auth_sources/edit.rhtml
NO CONTENT: file renamed from redmine/app/views/auth_sources/edit.rhtml to app/views/auth_sources/edit.rhtml
1 NO CONTENT: file renamed from redmine/app/views/auth_sources/list.rhtml to app/views/auth_sources/list.rhtml
NO CONTENT: file renamed from redmine/app/views/auth_sources/list.rhtml to app/views/auth_sources/list.rhtml
1 NO CONTENT: file renamed from redmine/app/views/auth_sources/new.rhtml to app/views/auth_sources/new.rhtml
NO CONTENT: file renamed from redmine/app/views/auth_sources/new.rhtml to app/views/auth_sources/new.rhtml
1 NO CONTENT: file renamed from redmine/app/views/custom_fields/_form.rhtml to app/views/custom_fields/_form.rhtml
NO CONTENT: file renamed from redmine/app/views/custom_fields/_form.rhtml to app/views/custom_fields/_form.rhtml
1 NO CONTENT: file renamed from redmine/app/views/custom_fields/edit.rhtml to app/views/custom_fields/edit.rhtml
NO CONTENT: file renamed from redmine/app/views/custom_fields/edit.rhtml to app/views/custom_fields/edit.rhtml
1 NO CONTENT: file renamed from redmine/app/views/custom_fields/list.rhtml to app/views/custom_fields/list.rhtml
NO CONTENT: file renamed from redmine/app/views/custom_fields/list.rhtml to app/views/custom_fields/list.rhtml
1 NO CONTENT: file renamed from redmine/app/views/custom_fields/new.rhtml to app/views/custom_fields/new.rhtml
NO CONTENT: file renamed from redmine/app/views/custom_fields/new.rhtml to app/views/custom_fields/new.rhtml
1 NO CONTENT: file renamed from redmine/app/views/documents/_form.rhtml to app/views/documents/_form.rhtml
NO CONTENT: file renamed from redmine/app/views/documents/_form.rhtml to app/views/documents/_form.rhtml
1 NO CONTENT: file renamed from redmine/app/views/documents/edit.rhtml to app/views/documents/edit.rhtml
NO CONTENT: file renamed from redmine/app/views/documents/edit.rhtml to app/views/documents/edit.rhtml
1 NO CONTENT: file renamed from redmine/app/views/documents/show.rhtml to app/views/documents/show.rhtml
NO CONTENT: file renamed from redmine/app/views/documents/show.rhtml to app/views/documents/show.rhtml
1 NO CONTENT: file renamed from redmine/app/views/enumerations/_form.rhtml to app/views/enumerations/_form.rhtml
NO CONTENT: file renamed from redmine/app/views/enumerations/_form.rhtml to app/views/enumerations/_form.rhtml
1 NO CONTENT: file renamed from redmine/app/views/enumerations/edit.rhtml to app/views/enumerations/edit.rhtml
NO CONTENT: file renamed from redmine/app/views/enumerations/edit.rhtml to app/views/enumerations/edit.rhtml
1 NO CONTENT: file renamed from redmine/app/views/enumerations/list.rhtml to app/views/enumerations/list.rhtml
NO CONTENT: file renamed from redmine/app/views/enumerations/list.rhtml to app/views/enumerations/list.rhtml
1 NO CONTENT: file renamed from redmine/app/views/enumerations/new.rhtml to app/views/enumerations/new.rhtml
NO CONTENT: file renamed from redmine/app/views/enumerations/new.rhtml to app/views/enumerations/new.rhtml
1 NO CONTENT: file renamed from redmine/app/views/issue_categories/_form.rhtml to app/views/issue_categories/_form.rhtml
NO CONTENT: file renamed from redmine/app/views/issue_categories/_form.rhtml to app/views/issue_categories/_form.rhtml
1 NO CONTENT: file renamed from redmine/app/views/issue_categories/edit.rhtml to app/views/issue_categories/edit.rhtml
NO CONTENT: file renamed from redmine/app/views/issue_categories/edit.rhtml to app/views/issue_categories/edit.rhtml
1 NO CONTENT: file renamed from redmine/app/views/issue_statuses/_form.rhtml to app/views/issue_statuses/_form.rhtml
NO CONTENT: file renamed from redmine/app/views/issue_statuses/_form.rhtml to app/views/issue_statuses/_form.rhtml
1 NO CONTENT: file renamed from redmine/app/views/issue_statuses/edit.rhtml to app/views/issue_statuses/edit.rhtml
NO CONTENT: file renamed from redmine/app/views/issue_statuses/edit.rhtml to app/views/issue_statuses/edit.rhtml
1 NO CONTENT: file renamed from redmine/app/views/issue_statuses/list.rhtml to app/views/issue_statuses/list.rhtml
NO CONTENT: file renamed from redmine/app/views/issue_statuses/list.rhtml to app/views/issue_statuses/list.rhtml
1 NO CONTENT: file renamed from redmine/app/views/issue_statuses/new.rhtml to app/views/issue_statuses/new.rhtml
NO CONTENT: file renamed from redmine/app/views/issue_statuses/new.rhtml to app/views/issue_statuses/new.rhtml
1 NO CONTENT: file renamed from redmine/app/views/issues/_history.rhtml to app/views/issues/_history.rhtml
NO CONTENT: file renamed from redmine/app/views/issues/_history.rhtml to app/views/issues/_history.rhtml
1 NO CONTENT: file renamed from redmine/app/views/issues/_list_simple.rhtml to app/views/issues/_list_simple.rhtml
NO CONTENT: file renamed from redmine/app/views/issues/_list_simple.rhtml to app/views/issues/_list_simple.rhtml
1 NO CONTENT: file renamed from redmine/app/views/issues/_pdf.rfpdf to app/views/issues/_pdf.rfpdf
NO CONTENT: file renamed from redmine/app/views/issues/_pdf.rfpdf to app/views/issues/_pdf.rfpdf
1 NO CONTENT: file renamed from redmine/app/views/issues/change_status.rhtml to app/views/issues/change_status.rhtml
NO CONTENT: file renamed from redmine/app/views/issues/change_status.rhtml to app/views/issues/change_status.rhtml
1 NO CONTENT: file renamed from redmine/app/views/issues/edit.rhtml to app/views/issues/edit.rhtml
NO CONTENT: file renamed from redmine/app/views/issues/edit.rhtml to app/views/issues/edit.rhtml
1 NO CONTENT: file renamed from redmine/app/views/issues/export_pdf.rfpdf to app/views/issues/export_pdf.rfpdf
NO CONTENT: file renamed from redmine/app/views/issues/export_pdf.rfpdf to app/views/issues/export_pdf.rfpdf
1 NO CONTENT: file renamed from redmine/app/views/issues/history.rhtml to app/views/issues/history.rhtml
NO CONTENT: file renamed from redmine/app/views/issues/history.rhtml to app/views/issues/history.rhtml
1 NO CONTENT: file renamed from redmine/app/views/issues/show.rhtml to app/views/issues/show.rhtml
NO CONTENT: file renamed from redmine/app/views/issues/show.rhtml to app/views/issues/show.rhtml
1 NO CONTENT: file renamed from redmine/app/views/layouts/base.rhtml to app/views/layouts/base.rhtml
NO CONTENT: file renamed from redmine/app/views/layouts/base.rhtml to app/views/layouts/base.rhtml
1 NO CONTENT: file renamed from redmine/app/views/mailer/_issue.rhtml to app/views/mailer/_issue.rhtml
NO CONTENT: file renamed from redmine/app/views/mailer/_issue.rhtml to app/views/mailer/_issue.rhtml
1 NO CONTENT: file renamed from redmine/app/views/mailer/issue_add_de.rhtml to app/views/mailer/issue_add_de.rhtml
NO CONTENT: file renamed from redmine/app/views/mailer/issue_add_de.rhtml to app/views/mailer/issue_add_de.rhtml
1 NO CONTENT: file renamed from redmine/app/views/mailer/issue_add_en.rhtml to app/views/mailer/issue_add_en.rhtml
NO CONTENT: file renamed from redmine/app/views/mailer/issue_add_en.rhtml to app/views/mailer/issue_add_en.rhtml
1 NO CONTENT: file renamed from redmine/app/views/mailer/issue_add_es.rhtml to app/views/mailer/issue_add_es.rhtml
NO CONTENT: file renamed from redmine/app/views/mailer/issue_add_es.rhtml to app/views/mailer/issue_add_es.rhtml
1 NO CONTENT: file renamed from redmine/app/views/mailer/issue_add_fr.rhtml to app/views/mailer/issue_add_fr.rhtml
NO CONTENT: file renamed from redmine/app/views/mailer/issue_add_fr.rhtml to app/views/mailer/issue_add_fr.rhtml
1 NO CONTENT: file renamed from redmine/app/views/mailer/issue_edit_de.rhtml to app/views/mailer/issue_edit_de.rhtml
NO CONTENT: file renamed from redmine/app/views/mailer/issue_edit_de.rhtml to app/views/mailer/issue_edit_de.rhtml
1 NO CONTENT: file renamed from redmine/app/views/mailer/issue_edit_en.rhtml to app/views/mailer/issue_edit_en.rhtml
NO CONTENT: file renamed from redmine/app/views/mailer/issue_edit_en.rhtml to app/views/mailer/issue_edit_en.rhtml
1 NO CONTENT: file renamed from redmine/app/views/mailer/issue_edit_es.rhtml to app/views/mailer/issue_edit_es.rhtml
NO CONTENT: file renamed from redmine/app/views/mailer/issue_edit_es.rhtml to app/views/mailer/issue_edit_es.rhtml
1 NO CONTENT: file renamed from redmine/app/views/mailer/issue_edit_fr.rhtml to app/views/mailer/issue_edit_fr.rhtml
NO CONTENT: file renamed from redmine/app/views/mailer/issue_edit_fr.rhtml to app/views/mailer/issue_edit_fr.rhtml
1 NO CONTENT: file renamed from redmine/app/views/mailer/lost_password_de.rhtml to app/views/mailer/lost_password_de.rhtml
NO CONTENT: file renamed from redmine/app/views/mailer/lost_password_de.rhtml to app/views/mailer/lost_password_de.rhtml
1 NO CONTENT: file renamed from redmine/app/views/mailer/lost_password_en.rhtml to app/views/mailer/lost_password_en.rhtml
NO CONTENT: file renamed from redmine/app/views/mailer/lost_password_en.rhtml to app/views/mailer/lost_password_en.rhtml
1 NO CONTENT: file renamed from redmine/app/views/mailer/lost_password_es.rhtml to app/views/mailer/lost_password_es.rhtml
NO CONTENT: file renamed from redmine/app/views/mailer/lost_password_es.rhtml to app/views/mailer/lost_password_es.rhtml
1 NO CONTENT: file renamed from redmine/app/views/mailer/lost_password_fr.rhtml to app/views/mailer/lost_password_fr.rhtml
NO CONTENT: file renamed from redmine/app/views/mailer/lost_password_fr.rhtml to app/views/mailer/lost_password_fr.rhtml
1 NO CONTENT: file renamed from redmine/app/views/mailer/register_de.rhtml to app/views/mailer/register_de.rhtml
NO CONTENT: file renamed from redmine/app/views/mailer/register_de.rhtml to app/views/mailer/register_de.rhtml
1 NO CONTENT: file renamed from redmine/app/views/mailer/register_en.rhtml to app/views/mailer/register_en.rhtml
NO CONTENT: file renamed from redmine/app/views/mailer/register_en.rhtml to app/views/mailer/register_en.rhtml
1 NO CONTENT: file renamed from redmine/app/views/mailer/register_es.rhtml to app/views/mailer/register_es.rhtml
NO CONTENT: file renamed from redmine/app/views/mailer/register_es.rhtml to app/views/mailer/register_es.rhtml
1 NO CONTENT: file renamed from redmine/app/views/mailer/register_fr.rhtml to app/views/mailer/register_fr.rhtml
NO CONTENT: file renamed from redmine/app/views/mailer/register_fr.rhtml to app/views/mailer/register_fr.rhtml
1 NO CONTENT: file renamed from redmine/app/views/my/_block.rhtml to app/views/my/_block.rhtml
NO CONTENT: file renamed from redmine/app/views/my/_block.rhtml to app/views/my/_block.rhtml
1 NO CONTENT: file renamed from redmine/app/views/my/account.rhtml to app/views/my/account.rhtml
NO CONTENT: file renamed from redmine/app/views/my/account.rhtml to app/views/my/account.rhtml
1 NO CONTENT: file renamed from redmine/app/views/my/blocks/_calendar.rhtml to app/views/my/blocks/_calendar.rhtml
NO CONTENT: file renamed from redmine/app/views/my/blocks/_calendar.rhtml to app/views/my/blocks/_calendar.rhtml
1 NO CONTENT: file renamed from redmine/app/views/my/blocks/_documents.rhtml to app/views/my/blocks/_documents.rhtml
NO CONTENT: file renamed from redmine/app/views/my/blocks/_documents.rhtml to app/views/my/blocks/_documents.rhtml
1 NO CONTENT: file renamed from redmine/app/views/my/blocks/_issues_assigned_to_me.rhtml to app/views/my/blocks/_issues_assigned_to_me.rhtml
NO CONTENT: file renamed from redmine/app/views/my/blocks/_issues_assigned_to_me.rhtml to app/views/my/blocks/_issues_assigned_to_me.rhtml
1 NO CONTENT: file renamed from redmine/app/views/my/blocks/_issues_reported_by_me.rhtml to app/views/my/blocks/_issues_reported_by_me.rhtml
NO CONTENT: file renamed from redmine/app/views/my/blocks/_issues_reported_by_me.rhtml to app/views/my/blocks/_issues_reported_by_me.rhtml
1 NO CONTENT: file renamed from redmine/app/views/my/blocks/_latest_news.rhtml to app/views/my/blocks/_latest_news.rhtml
NO CONTENT: file renamed from redmine/app/views/my/blocks/_latest_news.rhtml to app/views/my/blocks/_latest_news.rhtml
1 NO CONTENT: file renamed from redmine/app/views/my/page.rhtml to app/views/my/page.rhtml
NO CONTENT: file renamed from redmine/app/views/my/page.rhtml to app/views/my/page.rhtml
1 NO CONTENT: file renamed from redmine/app/views/my/page_layout.rhtml to app/views/my/page_layout.rhtml
NO CONTENT: file renamed from redmine/app/views/my/page_layout.rhtml to app/views/my/page_layout.rhtml
1 NO CONTENT: file renamed from redmine/app/views/news/_form.rhtml to app/views/news/_form.rhtml
NO CONTENT: file renamed from redmine/app/views/news/_form.rhtml to app/views/news/_form.rhtml
1 NO CONTENT: file renamed from redmine/app/views/news/edit.rhtml to app/views/news/edit.rhtml
NO CONTENT: file renamed from redmine/app/views/news/edit.rhtml to app/views/news/edit.rhtml
1 NO CONTENT: file renamed from redmine/app/views/news/show.rhtml to app/views/news/show.rhtml
NO CONTENT: file renamed from redmine/app/views/news/show.rhtml to app/views/news/show.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/_form.rhtml to app/views/projects/_form.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/_form.rhtml to app/views/projects/_form.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/activity.rhtml to app/views/projects/activity.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/activity.rhtml to app/views/projects/activity.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/add.rhtml to app/views/projects/add.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/add.rhtml to app/views/projects/add.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/add_document.rhtml to app/views/projects/add_document.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/add_document.rhtml to app/views/projects/add_document.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/add_file.rhtml to app/views/projects/add_file.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/add_file.rhtml to app/views/projects/add_file.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/add_issue.rhtml to app/views/projects/add_issue.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/add_issue.rhtml to app/views/projects/add_issue.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/add_news.rhtml to app/views/projects/add_news.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/add_news.rhtml to app/views/projects/add_news.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/add_version.rhtml to app/views/projects/add_version.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/add_version.rhtml to app/views/projects/add_version.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/calendar.rhtml to app/views/projects/calendar.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/calendar.rhtml to app/views/projects/calendar.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/changelog.rhtml to app/views/projects/changelog.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/changelog.rhtml to app/views/projects/changelog.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/destroy.rhtml to app/views/projects/destroy.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/destroy.rhtml to app/views/projects/destroy.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/export_issues_pdf.rfpdf to app/views/projects/export_issues_pdf.rfpdf
NO CONTENT: file renamed from redmine/app/views/projects/export_issues_pdf.rfpdf to app/views/projects/export_issues_pdf.rfpdf
1 NO CONTENT: file renamed from redmine/app/views/projects/gantt.rfpdf to app/views/projects/gantt.rfpdf
NO CONTENT: file renamed from redmine/app/views/projects/gantt.rfpdf to app/views/projects/gantt.rfpdf
1 NO CONTENT: file renamed from redmine/app/views/projects/gantt.rhtml to app/views/projects/gantt.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/gantt.rhtml to app/views/projects/gantt.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/list.rhtml to app/views/projects/list.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/list.rhtml to app/views/projects/list.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/list_documents.rhtml to app/views/projects/list_documents.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/list_documents.rhtml to app/views/projects/list_documents.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/list_files.rhtml to app/views/projects/list_files.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/list_files.rhtml to app/views/projects/list_files.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/list_issues.rhtml to app/views/projects/list_issues.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/list_issues.rhtml to app/views/projects/list_issues.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/list_members.rhtml to app/views/projects/list_members.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/list_members.rhtml to app/views/projects/list_members.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/list_news.rhtml to app/views/projects/list_news.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/list_news.rhtml to app/views/projects/list_news.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/move_issues.rhtml to app/views/projects/move_issues.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/move_issues.rhtml to app/views/projects/move_issues.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/settings.rhtml to app/views/projects/settings.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/settings.rhtml to app/views/projects/settings.rhtml
1 NO CONTENT: file renamed from redmine/app/views/projects/show.rhtml to app/views/projects/show.rhtml
NO CONTENT: file renamed from redmine/app/views/projects/show.rhtml to app/views/projects/show.rhtml
1 NO CONTENT: file renamed from redmine/app/views/reports/_details.rhtml to app/views/reports/_details.rhtml
NO CONTENT: file renamed from redmine/app/views/reports/_details.rhtml to app/views/reports/_details.rhtml
1 NO CONTENT: file renamed from redmine/app/views/reports/_simple.rhtml to app/views/reports/_simple.rhtml
NO CONTENT: file renamed from redmine/app/views/reports/_simple.rhtml to app/views/reports/_simple.rhtml
1 NO CONTENT: file renamed from redmine/app/views/reports/issue_report.rhtml to app/views/reports/issue_report.rhtml
NO CONTENT: file renamed from redmine/app/views/reports/issue_report.rhtml to app/views/reports/issue_report.rhtml
1 NO CONTENT: file renamed from redmine/app/views/reports/issue_report_details.rhtml to app/views/reports/issue_report_details.rhtml
NO CONTENT: file renamed from redmine/app/views/reports/issue_report_details.rhtml to app/views/reports/issue_report_details.rhtml
1 NO CONTENT: file renamed from redmine/app/views/roles/_form.rhtml to app/views/roles/_form.rhtml
NO CONTENT: file renamed from redmine/app/views/roles/_form.rhtml to app/views/roles/_form.rhtml
1 NO CONTENT: file renamed from redmine/app/views/roles/edit.rhtml to app/views/roles/edit.rhtml
NO CONTENT: file renamed from redmine/app/views/roles/edit.rhtml to app/views/roles/edit.rhtml
1 NO CONTENT: file renamed from redmine/app/views/roles/list.rhtml to app/views/roles/list.rhtml
NO CONTENT: file renamed from redmine/app/views/roles/list.rhtml to app/views/roles/list.rhtml
1 NO CONTENT: file renamed from redmine/app/views/roles/new.rhtml to app/views/roles/new.rhtml
NO CONTENT: file renamed from redmine/app/views/roles/new.rhtml to app/views/roles/new.rhtml
1 NO CONTENT: file renamed from redmine/app/views/roles/workflow.rhtml to app/views/roles/workflow.rhtml
NO CONTENT: file renamed from redmine/app/views/roles/workflow.rhtml to app/views/roles/workflow.rhtml
1 NO CONTENT: file renamed from redmine/app/views/trackers/_form.rhtml to app/views/trackers/_form.rhtml
NO CONTENT: file renamed from redmine/app/views/trackers/_form.rhtml to app/views/trackers/_form.rhtml
1 NO CONTENT: file renamed from redmine/app/views/trackers/edit.rhtml to app/views/trackers/edit.rhtml
NO CONTENT: file renamed from redmine/app/views/trackers/edit.rhtml to app/views/trackers/edit.rhtml
1 NO CONTENT: file renamed from redmine/app/views/trackers/list.rhtml to app/views/trackers/list.rhtml
NO CONTENT: file renamed from redmine/app/views/trackers/list.rhtml to app/views/trackers/list.rhtml
1 NO CONTENT: file renamed from redmine/app/views/trackers/new.rhtml to app/views/trackers/new.rhtml
NO CONTENT: file renamed from redmine/app/views/trackers/new.rhtml to app/views/trackers/new.rhtml
1 NO CONTENT: file renamed from redmine/app/views/users/_form.rhtml to app/views/users/_form.rhtml
NO CONTENT: file renamed from redmine/app/views/users/_form.rhtml to app/views/users/_form.rhtml
1 NO CONTENT: file renamed from redmine/app/views/users/add.rhtml to app/views/users/add.rhtml
NO CONTENT: file renamed from redmine/app/views/users/add.rhtml to app/views/users/add.rhtml
1 NO CONTENT: file renamed from redmine/app/views/users/edit.rhtml to app/views/users/edit.rhtml
NO CONTENT: file renamed from redmine/app/views/users/edit.rhtml to app/views/users/edit.rhtml
1 NO CONTENT: file renamed from redmine/app/views/users/list.rhtml to app/views/users/list.rhtml
NO CONTENT: file renamed from redmine/app/views/users/list.rhtml to app/views/users/list.rhtml
1 NO CONTENT: file renamed from redmine/app/views/versions/_form.rhtml to app/views/versions/_form.rhtml
NO CONTENT: file renamed from redmine/app/views/versions/_form.rhtml to app/views/versions/_form.rhtml
1 NO CONTENT: file renamed from redmine/app/views/versions/edit.rhtml to app/views/versions/edit.rhtml
NO CONTENT: file renamed from redmine/app/views/versions/edit.rhtml to app/views/versions/edit.rhtml
1 NO CONTENT: file renamed from redmine/app/views/welcome/index.rhtml to app/views/welcome/index.rhtml
NO CONTENT: file renamed from redmine/app/views/welcome/index.rhtml to app/views/welcome/index.rhtml
1 NO CONTENT: file renamed from redmine/config/boot.rb to config/boot.rb
NO CONTENT: file renamed from redmine/config/boot.rb to config/boot.rb
1 NO CONTENT: file renamed from redmine/config/config_custom.example.rb to config/config_custom.example.rb
NO CONTENT: file renamed from redmine/config/config_custom.example.rb to config/config_custom.example.rb
1 NO CONTENT: file renamed from redmine/config/database.yml to config/database.yml
NO CONTENT: file renamed from redmine/config/database.yml to config/database.yml
1 NO CONTENT: file renamed from redmine/config/environment.rb to config/environment.rb
NO CONTENT: file renamed from redmine/config/environment.rb to config/environment.rb
1 NO CONTENT: file renamed from redmine/config/environments/demo.rb to config/environments/demo.rb
NO CONTENT: file renamed from redmine/config/environments/demo.rb to config/environments/demo.rb
1 NO CONTENT: file renamed from redmine/config/environments/development.rb to config/environments/development.rb
NO CONTENT: file renamed from redmine/config/environments/development.rb to config/environments/development.rb
1 NO CONTENT: file renamed from redmine/config/environments/development_oracle.rb to config/environments/development_oracle.rb
NO CONTENT: file renamed from redmine/config/environments/development_oracle.rb to config/environments/development_oracle.rb
1 NO CONTENT: file renamed from redmine/config/environments/development_pgsql.rb to config/environments/development_pgsql.rb
NO CONTENT: file renamed from redmine/config/environments/development_pgsql.rb to config/environments/development_pgsql.rb
1 NO CONTENT: file renamed from redmine/config/environments/development_sqlserver.rb to config/environments/development_sqlserver.rb
NO CONTENT: file renamed from redmine/config/environments/development_sqlserver.rb to config/environments/development_sqlserver.rb
1 NO CONTENT: file renamed from redmine/config/environments/production.rb to config/environments/production.rb
NO CONTENT: file renamed from redmine/config/environments/production.rb to config/environments/production.rb
1 NO CONTENT: file renamed from redmine/config/environments/test.rb to config/environments/test.rb
NO CONTENT: file renamed from redmine/config/environments/test.rb to config/environments/test.rb
1 NO CONTENT: file renamed from redmine/config/environments/test_oracle.rb to config/environments/test_oracle.rb
NO CONTENT: file renamed from redmine/config/environments/test_oracle.rb to config/environments/test_oracle.rb
1 NO CONTENT: file renamed from redmine/config/environments/test_pgsql.rb to config/environments/test_pgsql.rb
NO CONTENT: file renamed from redmine/config/environments/test_pgsql.rb to config/environments/test_pgsql.rb
1 NO CONTENT: file renamed from redmine/config/environments/test_sqlserver.rb to config/environments/test_sqlserver.rb
NO CONTENT: file renamed from redmine/config/environments/test_sqlserver.rb to config/environments/test_sqlserver.rb
1 NO CONTENT: file renamed from redmine/config/help.yml to config/help.yml
NO CONTENT: file renamed from redmine/config/help.yml to config/help.yml
1 NO CONTENT: file renamed from redmine/config/routes.rb to config/routes.rb
NO CONTENT: file renamed from redmine/config/routes.rb to config/routes.rb
1 NO CONTENT: file renamed from redmine/db/migrate/001_setup.rb to db/migrate/001_setup.rb
NO CONTENT: file renamed from redmine/db/migrate/001_setup.rb to db/migrate/001_setup.rb
1 NO CONTENT: file renamed from redmine/db/migrate/002_issue_move.rb to db/migrate/002_issue_move.rb
NO CONTENT: file renamed from redmine/db/migrate/002_issue_move.rb to db/migrate/002_issue_move.rb
1 NO CONTENT: file renamed from redmine/db/migrate/003_issue_add_note.rb to db/migrate/003_issue_add_note.rb
NO CONTENT: file renamed from redmine/db/migrate/003_issue_add_note.rb to db/migrate/003_issue_add_note.rb
1 NO CONTENT: file renamed from redmine/db/migrate/004_export_pdf.rb to db/migrate/004_export_pdf.rb
NO CONTENT: file renamed from redmine/db/migrate/004_export_pdf.rb to db/migrate/004_export_pdf.rb
1 NO CONTENT: file renamed from redmine/db/migrate/005_issue_start_date.rb to db/migrate/005_issue_start_date.rb
NO CONTENT: file renamed from redmine/db/migrate/005_issue_start_date.rb to db/migrate/005_issue_start_date.rb
1 NO CONTENT: file renamed from redmine/db/migrate/007_create_journals.rb to db/migrate/007_create_journals.rb
NO CONTENT: file renamed from redmine/db/migrate/007_create_journals.rb to db/migrate/007_create_journals.rb
1 NO CONTENT: file renamed from redmine/db/migrate/008_create_user_preferences.rb to db/migrate/008_create_user_preferences.rb
NO CONTENT: file renamed from redmine/db/migrate/008_create_user_preferences.rb to db/migrate/008_create_user_preferences.rb
1 NO CONTENT: file renamed from redmine/db/migrate/009_add_hide_mail_pref.rb to db/migrate/009_add_hide_mail_pref.rb
NO CONTENT: file renamed from redmine/db/migrate/009_add_hide_mail_pref.rb to db/migrate/009_add_hide_mail_pref.rb
1 NO CONTENT: file renamed from redmine/doc/CHANGELOG to doc/CHANGELOG
NO CONTENT: file renamed from redmine/doc/CHANGELOG to doc/CHANGELOG
1 NO CONTENT: file renamed from redmine/doc/COPYING to doc/COPYING
NO CONTENT: file renamed from redmine/doc/COPYING to doc/COPYING
1 NO CONTENT: file renamed from redmine/doc/INSTALL to doc/INSTALL
NO CONTENT: file renamed from redmine/doc/INSTALL to doc/INSTALL
1 NO CONTENT: file renamed from redmine/doc/README to doc/README
NO CONTENT: file renamed from redmine/doc/README to doc/README
1 NO CONTENT: file renamed from redmine/doc/docbook/en/redmine-userdoc-en.xml to doc/docbook/en/redmine-userdoc-en.xml
NO CONTENT: file renamed from redmine/doc/docbook/en/redmine-userdoc-en.xml to doc/docbook/en/redmine-userdoc-en.xml
1 NO CONTENT: file renamed from redmine/doc/docbook/fr/redmine-userdoc-fr.xml to doc/docbook/fr/redmine-userdoc-fr.xml
NO CONTENT: file renamed from redmine/doc/docbook/fr/redmine-userdoc-fr.xml to doc/docbook/fr/redmine-userdoc-fr.xml
1 NO CONTENT: file renamed from redmine/lang/de.yml to lang/de.yml
NO CONTENT: file renamed from redmine/lang/de.yml to lang/de.yml
1 NO CONTENT: file renamed from redmine/lang/en.yml to lang/en.yml
NO CONTENT: file renamed from redmine/lang/en.yml to lang/en.yml
1 NO CONTENT: file renamed from redmine/lang/es.yml to lang/es.yml
NO CONTENT: file renamed from redmine/lang/es.yml to lang/es.yml
1 NO CONTENT: file renamed from redmine/lang/fr.yml to lang/fr.yml
NO CONTENT: file renamed from redmine/lang/fr.yml to lang/fr.yml
1 NO CONTENT: file renamed from redmine/lib/tasks/load_default_data.rake to lib/tasks/load_default_data.rake
NO CONTENT: file renamed from redmine/lib/tasks/load_default_data.rake to lib/tasks/load_default_data.rake
1 NO CONTENT: file renamed from redmine/public/404.html to public/404.html
NO CONTENT: file renamed from redmine/public/404.html to public/404.html
1 NO CONTENT: file renamed from redmine/public/dispatch.cgi to public/dispatch.cgi
NO CONTENT: file renamed from redmine/public/dispatch.cgi to public/dispatch.cgi
1 NO CONTENT: file renamed from redmine/public/dispatch.rb to public/dispatch.rb
NO CONTENT: file renamed from redmine/public/dispatch.rb to public/dispatch.rb
1 NO CONTENT: file renamed from redmine/public/images/add.png to public/images/add.png
NO CONTENT: file renamed from redmine/public/images/add.png to public/images/add.png
1 NO CONTENT: file renamed from redmine/public/images/attachment.png to public/images/attachment.png
NO CONTENT: file renamed from redmine/public/images/attachment.png to public/images/attachment.png
1 NO CONTENT: file renamed from redmine/public/images/bulletgreen.png to public/images/bulletgreen.png
NO CONTENT: file renamed from redmine/public/images/bulletgreen.png to public/images/bulletgreen.png
1 NO CONTENT: file renamed from redmine/public/images/bulletred.png to public/images/bulletred.png
NO CONTENT: file renamed from redmine/public/images/bulletred.png to public/images/bulletred.png
1 NO CONTENT: file renamed from redmine/public/images/calendar.png to public/images/calendar.png
NO CONTENT: file renamed from redmine/public/images/calendar.png to public/images/calendar.png
1 NO CONTENT: file renamed from redmine/public/images/close.png to public/images/close.png
NO CONTENT: file renamed from redmine/public/images/close.png to public/images/close.png
1 NO CONTENT: file renamed from redmine/public/images/close_hl.png to public/images/close_hl.png
NO CONTENT: file renamed from redmine/public/images/close_hl.png to public/images/close_hl.png
1 NO CONTENT: file renamed from redmine/public/images/alert.png to public/images/delete.png, binary diff hidden
NO CONTENT: file renamed from redmine/public/images/alert.png to public/images/delete.png, binary diff hidden
1 NO CONTENT: file renamed from redmine/public/images/details.png to public/images/details.png
NO CONTENT: file renamed from redmine/public/images/details.png to public/images/details.png
1 NO CONTENT: file renamed from redmine/public/images/edit_small.png to public/images/edit_small.png
NO CONTENT: file renamed from redmine/public/images/edit_small.png to public/images/edit_small.png
1 NO CONTENT: file renamed from redmine/public/images/file_new.png to public/images/file_new.png
NO CONTENT: file renamed from redmine/public/images/file_new.png to public/images/file_new.png
1 NO CONTENT: file renamed from redmine/public/images/gantt.png to public/images/gantt.png
NO CONTENT: file renamed from redmine/public/images/gantt.png to public/images/gantt.png
1 NO CONTENT: file renamed from redmine/public/images/jstoolbar/bt_br.png to public/images/jstoolbar/bt_br.png
NO CONTENT: file renamed from redmine/public/images/jstoolbar/bt_br.png to public/images/jstoolbar/bt_br.png
1 NO CONTENT: file renamed from redmine/public/images/jstoolbar/bt_code.png to public/images/jstoolbar/bt_ol.png, binary diff hidden
NO CONTENT: file renamed from redmine/public/images/jstoolbar/bt_code.png to public/images/jstoolbar/bt_ol.png, binary diff hidden
1 NO CONTENT: file renamed from redmine/public/images/jstoolbar/bt_del.png to public/images/jstoolbar/bt_ul.png, binary diff hidden
NO CONTENT: file renamed from redmine/public/images/jstoolbar/bt_del.png to public/images/jstoolbar/bt_ul.png, binary diff hidden
1 NO CONTENT: file renamed from redmine/public/images/delete.png to public/images/mailer.png, binary diff hidden
NO CONTENT: file renamed from redmine/public/images/delete.png to public/images/mailer.png, binary diff hidden
1 NO CONTENT: file renamed from redmine/public/images/mailer.png to public/images/true.png, binary diff hidden
NO CONTENT: file renamed from redmine/public/images/mailer.png to public/images/true.png, binary diff hidden
1 NO CONTENT: file renamed from redmine/public/images/admin.png to public/images/users.png, binary diff hidden
NO CONTENT: file renamed from redmine/public/images/admin.png to public/images/users.png, binary diff hidden
1 NO CONTENT: file renamed from redmine/public/images/dir.png to public/images/workflow.png, binary diff hidden
NO CONTENT: file renamed from redmine/public/images/dir.png to public/images/workflow.png, binary diff hidden
1 NO CONTENT: file renamed from redmine/public/javascripts/calendar/calendar-setup.js to public/javascripts/calendar/calendar-setup.js
NO CONTENT: file renamed from redmine/public/javascripts/calendar/calendar-setup.js to public/javascripts/calendar/calendar-setup.js
1 NO CONTENT: file renamed from redmine/public/javascripts/calendar/calendar.js to public/javascripts/calendar/calendar.js
NO CONTENT: file renamed from redmine/public/javascripts/calendar/calendar.js to public/javascripts/calendar/calendar.js
1 NO CONTENT: file renamed from redmine/public/javascripts/calendar/lang/calendar-de.js to public/javascripts/calendar/lang/calendar-de.js
NO CONTENT: file renamed from redmine/public/javascripts/calendar/lang/calendar-de.js to public/javascripts/calendar/lang/calendar-de.js
1 NO CONTENT: file renamed from redmine/public/javascripts/calendar/lang/calendar-en.js to public/javascripts/calendar/lang/calendar-en.js
NO CONTENT: file renamed from redmine/public/javascripts/calendar/lang/calendar-en.js to public/javascripts/calendar/lang/calendar-en.js
1 NO CONTENT: file renamed from redmine/public/javascripts/calendar/lang/calendar-es.js to public/javascripts/calendar/lang/calendar-es.js
NO CONTENT: file renamed from redmine/public/javascripts/calendar/lang/calendar-es.js to public/javascripts/calendar/lang/calendar-es.js
1 NO CONTENT: file renamed from redmine/public/javascripts/calendar/lang/calendar-fr.js to public/javascripts/calendar/lang/calendar-fr.js
NO CONTENT: file renamed from redmine/public/javascripts/calendar/lang/calendar-fr.js to public/javascripts/calendar/lang/calendar-fr.js
1 NO CONTENT: file renamed from redmine/public/javascripts/controls.js to public/javascripts/controls.js
NO CONTENT: file renamed from redmine/public/javascripts/controls.js to public/javascripts/controls.js
1 NO CONTENT: file renamed from redmine/public/javascripts/dragdrop.js to public/javascripts/dragdrop.js
NO CONTENT: file renamed from redmine/public/javascripts/dragdrop.js to public/javascripts/dragdrop.js
1 NO CONTENT: file renamed from redmine/public/javascripts/effects.js to public/javascripts/effects.js
NO CONTENT: file renamed from redmine/public/javascripts/effects.js to public/javascripts/effects.js
1 NO CONTENT: file renamed from redmine/public/javascripts/jstoolbar.js to public/javascripts/jstoolbar.js
NO CONTENT: file renamed from redmine/public/javascripts/jstoolbar.js to public/javascripts/jstoolbar.js
1 NO CONTENT: file renamed from redmine/public/javascripts/menu.js to public/javascripts/menu.js
NO CONTENT: file renamed from redmine/public/javascripts/menu.js to public/javascripts/menu.js
1 NO CONTENT: file renamed from redmine/public/javascripts/prototype.js to public/javascripts/prototype.js
NO CONTENT: file renamed from redmine/public/javascripts/prototype.js to public/javascripts/prototype.js
1 NO CONTENT: file renamed from redmine/public/manual/en/ch01s04.html to public/manual/en/ch01s04.html
NO CONTENT: file renamed from redmine/public/manual/en/ch01s04.html to public/manual/en/ch01s04.html
1 NO CONTENT: file renamed from redmine/public/manual/en/resources/issues_list.png to public/manual/en/resources/issues_list.png
NO CONTENT: file renamed from redmine/public/manual/en/resources/issues_list.png to public/manual/en/resources/issues_list.png
1 NO CONTENT: file renamed from redmine/public/manual/en/resources/users_list.png to public/manual/en/resources/users_list.png
NO CONTENT: file renamed from redmine/public/manual/en/resources/users_list.png to public/manual/en/resources/users_list.png
1 NO CONTENT: file renamed from redmine/public/manual/en/resources/workflow.png to public/manual/en/resources/workflow.png
NO CONTENT: file renamed from redmine/public/manual/en/resources/workflow.png to public/manual/en/resources/workflow.png
1 NO CONTENT: file renamed from redmine/public/manual/fr/resources/issues_list.png to public/manual/fr/resources/issues_list.png
NO CONTENT: file renamed from redmine/public/manual/fr/resources/issues_list.png to public/manual/fr/resources/issues_list.png
1 NO CONTENT: file renamed from redmine/public/stylesheets/application.css to public/stylesheets/application.css
NO CONTENT: file renamed from redmine/public/stylesheets/application.css to public/stylesheets/application.css
1 NO CONTENT: file renamed from redmine/test/fixtures/workflows.yml to test/fixtures/workflows.yml
NO CONTENT: file renamed from redmine/test/fixtures/workflows.yml to test/fixtures/workflows.yml
1 NO CONTENT: file renamed from redmine/vendor/plugins/gloc-1.1.0/README to vendor/plugins/gloc-1.1.0/README
NO CONTENT: file renamed from redmine/vendor/plugins/gloc-1.1.0/README to vendor/plugins/gloc-1.1.0/README
1 NO CONTENT: file renamed from redmine/vendor/plugins/gloc-1.1.0/doc/classes/ActionController/Filters/ClassMethods.html to vendor/plugins/gloc-1.1.0/doc/classes/ActionController/Filters/ClassMethods.html
NO CONTENT: file renamed from redmine/vendor/plugins/gloc-1.1.0/doc/classes/ActionController/Filters/ClassMethods.html to vendor/plugins/gloc-1.1.0/doc/classes/ActionController/Filters/ClassMethods.html
1 NO CONTENT: file renamed from redmine/vendor/plugins/gloc-1.1.0/doc/classes/ActionView/Helpers/DateHelper.html to vendor/plugins/gloc-1.1.0/doc/classes/ActionView/Helpers/DateHelper.html
NO CONTENT: file renamed from redmine/vendor/plugins/gloc-1.1.0/doc/classes/ActionView/Helpers/DateHelper.html to vendor/plugins/gloc-1.1.0/doc/classes/ActionView/Helpers/DateHelper.html
1 NO CONTENT: file renamed from redmine/vendor/plugins/gloc-1.1.0/doc/classes/ActiveRecord/Validations/ClassMethods.html to vendor/plugins/gloc-1.1.0/doc/classes/ActiveRecord/Validations/ClassMethods.html
NO CONTENT: file renamed from redmine/vendor/plugins/gloc-1.1.0/doc/classes/ActiveRecord/Validations/ClassMethods.html to vendor/plugins/gloc-1.1.0/doc/classes/ActiveRecord/Validations/ClassMethods.html
1 NO CONTENT: file renamed from redmine/vendor/plugins/gloc-1.1.0/doc/classes/GLoc.html to vendor/plugins/gloc-1.1.0/doc/classes/GLoc.html
NO CONTENT: file renamed from redmine/vendor/plugins/gloc-1.1.0/doc/classes/GLoc.html to vendor/plugins/gloc-1.1.0/doc/classes/GLoc.html
1 NO CONTENT: file renamed from redmine/vendor/plugins/gloc-1.1.0/doc/classes/GLoc/Helpers.html to vendor/plugins/gloc-1.1.0/doc/classes/GLoc/Helpers.html
NO CONTENT: file renamed from redmine/vendor/plugins/gloc-1.1.0/doc/classes/GLoc/Helpers.html to vendor/plugins/gloc-1.1.0/doc/classes/GLoc/Helpers.html
1 NO CONTENT: file renamed from redmine/vendor/plugins/gloc-1.1.0/doc/classes/GLoc/InstanceMethods.html to vendor/plugins/gloc-1.1.0/doc/classes/GLoc/InstanceMethods.html
NO CONTENT: file renamed from redmine/vendor/plugins/gloc-1.1.0/doc/classes/GLoc/InstanceMethods.html to vendor/plugins/gloc-1.1.0/doc/classes/GLoc/InstanceMethods.html
1 NO CONTENT: file renamed from redmine/vendor/plugins/gloc-1.1.0/doc/files/README.html to vendor/plugins/gloc-1.1.0/doc/files/README.html
NO CONTENT: file renamed from redmine/vendor/plugins/gloc-1.1.0/doc/files/README.html to vendor/plugins/gloc-1.1.0/doc/files/README.html
1 NO CONTENT: file renamed from redmine/vendor/plugins/gloc-1.1.0/test/gloc_test.rb to vendor/plugins/gloc-1.1.0/test/gloc_test.rb
NO CONTENT: file renamed from redmine/vendor/plugins/gloc-1.1.0/test/gloc_test.rb to vendor/plugins/gloc-1.1.0/test/gloc_test.rb
1 NO CONTENT: file renamed from redmine/vendor/plugins/rfpdf/lib/rfpdf/fpdf.rb to vendor/plugins/rfpdf/lib/rfpdf/fpdf.rb
NO CONTENT: file renamed from redmine/vendor/plugins/rfpdf/lib/rfpdf/fpdf.rb to vendor/plugins/rfpdf/lib/rfpdf/fpdf.rb
1 NO CONTENT: file renamed from redmine/vendor/plugins/rfpdf/lib/rfpdf/makefont.rb to vendor/plugins/rfpdf/lib/rfpdf/makefont.rb
NO CONTENT: file renamed from redmine/vendor/plugins/rfpdf/lib/rfpdf/makefont.rb to vendor/plugins/rfpdf/lib/rfpdf/makefont.rb
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
General Comments 0
You need to be logged in to leave comments. Login now