summaryrefslogtreecommitdiffstats
path: root/app/views/projects
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/projects')
-rw-r--r--app/views/projects/_form.rhtml26
-rw-r--r--app/views/projects/activity.rhtml41
-rw-r--r--app/views/projects/add.rhtml6
-rw-r--r--app/views/projects/add_document.rhtml14
-rw-r--r--app/views/projects/add_file.rhtml14
-rw-r--r--app/views/projects/add_issue.rhtml50
-rw-r--r--app/views/projects/add_news.rhtml6
-rw-r--r--app/views/projects/add_version.rhtml6
-rw-r--r--app/views/projects/calendar.rhtml75
-rw-r--r--app/views/projects/changelog.rhtml28
-rw-r--r--app/views/projects/destroy.rhtml14
-rw-r--r--app/views/projects/export_issues_pdf.rfpdf11
-rw-r--r--app/views/projects/gantt.rfpdf168
-rw-r--r--app/views/projects/gantt.rhtml241
-rw-r--r--app/views/projects/list.rhtml20
-rw-r--r--app/views/projects/list_documents.rhtml23
-rw-r--r--app/views/projects/list_files.rhtml46
-rw-r--r--app/views/projects/list_issues.rhtml76
-rw-r--r--app/views/projects/list_members.rhtml11
-rw-r--r--app/views/projects/list_news.rhtml18
-rw-r--r--app/views/projects/move_issues.rhtml24
-rw-r--r--app/views/projects/settings.rhtml118
-rw-r--r--app/views/projects/show.rhtml72
23 files changed, 1108 insertions, 0 deletions
diff --git a/app/views/projects/_form.rhtml b/app/views/projects/_form.rhtml
new file mode 100644
index 000000000..ab0b35fab
--- /dev/null
+++ b/app/views/projects/_form.rhtml
@@ -0,0 +1,26 @@
+<%= error_messages_for 'project' %>
+<div class="box">
+<!--[form:project]-->
+<p><%= f.text_field :name, :required => true %></p>
+
+<% if admin_loggedin? and !@root_projects.empty? %>
+ <p><%= f.select :parent_id, (@root_projects.collect {|p| [p.name, p.id]}), { :include_blank => true } %></p>
+<% end %>
+
+<p><%= f.text_area :description, :required => true, :cols => 60, :rows => 3 %></p>
+<p><%= f.text_field :homepage, :size => 40 %></p>
+<p><%= f.check_box :is_public %></p>
+
+<% for @custom_value in @custom_values %>
+ <p><%= custom_field_tag_with_label @custom_value %></p>
+<% end %>
+
+<% unless @custom_fields.empty? %>
+<p><label><%=l(:label_custom_field_plural)%></label>
+<% for custom_field in @custom_fields %>
+ <%= check_box_tag "custom_field_ids[]", custom_field.id, ((@project.custom_fields.include? custom_field) or custom_field.is_for_all?), (custom_field.is_for_all? ? {:disabled => "disabled"} : {}) %>
+ <%= custom_field.name %>
+<% end %></p>
+<% end %>
+<!--[eoform:project]-->
+</div>
diff --git a/app/views/projects/activity.rhtml b/app/views/projects/activity.rhtml
new file mode 100644
index 000000000..d6e5a1a43
--- /dev/null
+++ b/app/views/projects/activity.rhtml
@@ -0,0 +1,41 @@
+<h2><%=l(:label_activity)%></h2>
+
+<div>
+<div class="rightbox">
+ <%= start_form_tag %>
+<p><%= select_month(@month, :prefix => "month", :discard_type => true) %>
+<%= select_year(@year, :prefix => "year", :discard_type => true) %></p>
+ <%= check_box_tag 'show_issues', 1, @show_issues %><%= hidden_field_tag 'show_issues', 0 %> <%=l(:label_issue_plural)%><br />
+ <%= check_box_tag 'show_news', 1, @show_news %><%= hidden_field_tag 'show_news', 0 %> <%=l(:label_news_plural)%><br />
+ <%= check_box_tag 'show_files', 1, @show_files %><%= hidden_field_tag 'show_files', 0 %> <%=l(:label_attachment_plural)%><br />
+ <%= check_box_tag 'show_documents', 1, @show_documents %><%= hidden_field_tag 'show_documents', 0 %> <%=l(:label_document_plural)%><br />
+ <p><center><%= submit_tag l(:button_apply), :class => 'button-small' %></center></p>
+ <%= end_form_tag %>
+ </div>
+<% @events_by_day.keys.sort {|x,y| y <=> x }.each do |day| %>
+ <h3><%= day_name(day.cwday) %> <%= format_date(day) %></h3>
+ <ul>
+ <% @events_by_day[day].sort {|x,y| y.created_on <=> x.created_on }.each do |e| %>
+ <li><p>
+ <% if e.is_a? Issue %>
+ <%= e.created_on.strftime("%H:%M") %> <%= link_to "#{e.tracker.name} ##{e.id}", :controller => 'issues', :action => 'show', :id => e %> (<%= e.status.name %>): <%= e.subject %><br />
+ <i><%= e.author.name %></i>
+ <% elsif e.is_a? News %>
+ <%= e.created_on.strftime("%H:%M") %> <%=l(:label_news)%>: <%= link_to e.title, :controller => 'news', :action => 'show', :id => e %><br />
+ <% unless e.summary.empty? %><%= e.summary %><br /><% end %>
+ <i><%= e.author.name %></i>
+ <% elsif (e.is_a? Attachment) and (e.container.is_a? Version) %>
+ <%= e.created_on.strftime("%H:%M") %> <%=l(:label_attachment)%> (Version <%= e.container.name %>): <%= link_to e.filename, :controller => 'projects', :action => 'list_files', :id => @project %><br />
+ <i><%= e.author.name %></i>
+ <% elsif (e.is_a? Attachment) and (e.container.is_a? Document) %>
+ <%= e.created_on.strftime("%H:%M") %> <%=l(:label_document)%>: <%= link_to e.container.title, :controller => 'documents', :action => 'show', :id => e %><br />
+ <i><%= e.author.name %></i>
+ <% end %>
+ </p></li>
+
+ <% end %>
+ </ul>
+<% end %>
+<% if @events_by_day.empty? %><p><i><%= l(:label_no_data) %></i></p><% end %>
+<br />
+</div> \ No newline at end of file
diff --git a/app/views/projects/add.rhtml b/app/views/projects/add.rhtml
new file mode 100644
index 000000000..bafbf9145
--- /dev/null
+++ b/app/views/projects/add.rhtml
@@ -0,0 +1,6 @@
+<h2><%=l(:label_project_new)%></h2>
+
+<% labelled_tabular_form_for :project, @project, :url => { :action => "add" } do |f| %>
+<%= render :partial => 'form', :locals => { :f => f } %>
+<%= submit_tag l(:button_save) %>
+<% end %> \ No newline at end of file
diff --git a/app/views/projects/add_document.rhtml b/app/views/projects/add_document.rhtml
new file mode 100644
index 000000000..88572f409
--- /dev/null
+++ b/app/views/projects/add_document.rhtml
@@ -0,0 +1,14 @@
+<h2><%=l(:label_document_new)%></h2>
+
+<%= start_form_tag( { :action => 'add_document', :id => @project }, :class => "tabular", :multipart => true) %>
+<%= render :partial => 'documents/form' %>
+
+<div class="box">
+<p><label for="attachment_file"><%=l(:label_attachment)%></label>
+<%= file_field 'attachment', 'file' %></p>
+</div>
+
+<%= submit_tag l(:button_create) %>
+<%= end_form_tag %>
+
+
diff --git a/app/views/projects/add_file.rhtml b/app/views/projects/add_file.rhtml
new file mode 100644
index 000000000..fee67c53f
--- /dev/null
+++ b/app/views/projects/add_file.rhtml
@@ -0,0 +1,14 @@
+<h2><%=l(:label_attachment_new)%></h2>
+
+<%= error_messages_for 'attachment' %>
+<%= start_form_tag ({ :action => 'add_file', :project => @project }, :multipart => true) %>
+
+<p><label for="version_id"><%=l(:field_version)%></label><br />
+<select name="version_id">
+<%= options_from_collection_for_select @versions, "id", "name" %>
+</select></p>
+
+<p><b><%=l(:label_attachment)%><b><br /><%= file_field 'attachment', 'file' %></p>
+<br/>
+<%= submit_tag l(:button_add) %>
+<%= end_form_tag %> \ No newline at end of file
diff --git a/app/views/projects/add_issue.rhtml b/app/views/projects/add_issue.rhtml
new file mode 100644
index 000000000..b60f91a2e
--- /dev/null
+++ b/app/views/projects/add_issue.rhtml
@@ -0,0 +1,50 @@
+<h2><%=l(:label_issue_new)%>: <%= @tracker.name %></h2>
+
+<% labelled_tabular_form_for :issue, @issue, :url => {:action => 'add_issue'}, :html => {:multipart => true} do |f| %>
+<%= error_messages_for 'issue' %>
+<div class="box">
+<!--[form:issue]-->
+<%= hidden_field_tag 'tracker_id', @tracker.id %>
+
+<div class="splitcontentleft">
+<p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), :required => true %></p>
+<p><%= f.select :assigned_to_id, (@issue.project.members.collect {|m| [m.name, m.user_id]}), :include_blank => true %></p>
+<p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %></p>
+</div>
+<div class="splitcontentright">
+<p><%= f.text_field :start_date, :size => 10 %><%= calendar_for('issue_start_date') %></p>
+<p><%= f.text_field :due_date, :size => 10 %><%= calendar_for('issue_due_date') %></p>
+<p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
+</div>
+
+<div class="clear">
+<p><%= f.text_field :subject, :size => 80, :required => true %></p>
+<p><%= f.text_area :description, :cols => 60, :rows => 10, :required => true %></p>
+
+<% for @custom_value in @custom_values %>
+ <p><%= custom_field_tag_with_label @custom_value %></p>
+<% end %>
+
+<p id="attachments_p"><label for="attachment_file"><%=l(:label_attachment)%>&nbsp;
+<%= link_to_function image_tag('add'), "addFileField()" %></label>
+<%= file_field_tag 'attachments[]', :size => 30 %></p>
+
+</div>
+<!--[eoform:issue]-->
+</div>
+<%= submit_tag l(:button_create) %>
+<% end %>
+
+<% unless $RDM_TEXTILE_DISABLED %>
+<%= javascript_include_tag 'jstoolbar' %>
+<script type="text/javascript">
+//<![CDATA[
+if (document.getElementById) {
+ if (document.getElementById('issue_description')) {
+ var commentTb = new jsToolBar(document.getElementById('issue_description'));
+ commentTb.draw();
+ }
+}
+//]]>
+</script>
+<% end %> \ No newline at end of file
diff --git a/app/views/projects/add_news.rhtml b/app/views/projects/add_news.rhtml
new file mode 100644
index 000000000..a6ecd3da7
--- /dev/null
+++ b/app/views/projects/add_news.rhtml
@@ -0,0 +1,6 @@
+<h2><%=l(:label_news_new)%></h2>
+
+<% labelled_tabular_form_for :news, @news, :url => { :action => "add_news" } do |f| %>
+<%= render :partial => 'news/form', :locals => { :f => f } %>
+<%= submit_tag l(:button_create) %>
+<% end %> \ No newline at end of file
diff --git a/app/views/projects/add_version.rhtml b/app/views/projects/add_version.rhtml
new file mode 100644
index 000000000..c038b7de9
--- /dev/null
+++ b/app/views/projects/add_version.rhtml
@@ -0,0 +1,6 @@
+<h2><%=l(:label_version_new)%></h2>
+
+<% labelled_tabular_form_for :version, @version, :url => { :action => 'add_version' } do |f| %>
+<%= render :partial => 'versions/form', :locals => { :f => f } %>
+<%= submit_tag l(:button_create) %>
+<% end %> \ No newline at end of file
diff --git a/app/views/projects/calendar.rhtml b/app/views/projects/calendar.rhtml
new file mode 100644
index 000000000..fc62921d4
--- /dev/null
+++ b/app/views/projects/calendar.rhtml
@@ -0,0 +1,75 @@
+<h2><%= l(:label_calendar) %></h2>
+
+<table width="100%">
+<tr>
+<td align="left">
+<%= start_form_tag :action => 'calendar', :id => @project %>
+<%= select_month(@month, :prefix => "month", :discard_type => true) %>
+<%= select_year(@year, :prefix => "year", :discard_type => true) %>
+<%= submit_tag l(:button_submit), :class => "button-small" %>
+<%= end_form_tag %>
+</td>
+<td align="right">
+<%= image_tag 'gantt' %>
+<%= link_to l(:label_gantt_chart), :action => 'gantt', :id => @project %>&nbsp;
+</td>
+</tr>
+</table>
+<br />
+
+<table class="calenderTable">
+<tr class="ListHead">
+<td></td>
+<% 1.upto(7) do |d| %>
+ <td align="center" width="14%"><%= day_name(d) %></td>
+<% end %>
+</tr>
+<tr height="100">
+<% day = @date_from
+while day <= @date_to
+ if day.cwday == 1 %>
+ <td valign="middle"><%= day.cweek %></td>
+ <% end %>
+ <td valign="top" width="14%" class="<%= day.month==@month ? "even" : "odd" %>">
+ <p align="right"><%= day==Date.today ? "<b>#{day.day}</b>" : day.day %></p>
+ <% day_issues = []
+ @issues.each { |i| day_issues << i if i.start_date == day or i.due_date == day }
+ day_issues.each do |i| %>
+ <%= if day == i.start_date and day == i.due_date
+ image_tag('arrow_bw')
+ elsif day == i.start_date
+ image_tag('arrow_from')
+ elsif day == i.due_date
+ image_tag('arrow_to')
+ end %>
+ <small><%= link_to "#{i.tracker.name} ##{i.id}", :controller => 'issues', :action => 'show', :id => i %>: <%= i.subject.sub(/^(.{30}[^\s]*\s).*$/, '\1 (...)') %></small><br />
+ <% end %>
+ </td>
+ <%= '</tr><tr height="100">' if day.cwday >= 7 and day!=@date_to %>
+ <%
+ day = day + 1
+end %>
+</tr>
+</table>
+
+<table width="100%">
+<tr>
+<td align="left">
+<%= link_to_remote ('&#171; ' + l(:label_previous)),
+ {:update => "content", :url => { :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1) }},
+ {:href => url_for(:action => 'calendar', :year => (@month==1 ? @year-1 : @year), :month =>(@month==1 ? 12 : @month-1))}
+ %>
+</td>
+<td align="right">
+<%= link_to_remote (l(:label_next) + ' &#187;'),
+ {:update => "content", :url => { :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1) }},
+ {:href => url_for(:action => 'calendar', :year => (@month==12 ? @year+1 : @year), :month =>(@month==12 ? 1 : @month+1))}
+ %>
+&nbsp;
+</td>
+</tr>
+</table>
+<br />
+<%= image_tag 'arrow_from' %>&nbsp;&nbsp;<%= l(:text_tip_task_begin_day) %><br />
+<%= image_tag 'arrow_to' %>&nbsp;&nbsp;<%= l(:text_tip_task_end_day) %><br />
+<%= image_tag 'arrow_bw' %>&nbsp;&nbsp;<%= l(:text_tip_task_begin_end_day) %><br /> \ No newline at end of file
diff --git a/app/views/projects/changelog.rhtml b/app/views/projects/changelog.rhtml
new file mode 100644
index 000000000..081456413
--- /dev/null
+++ b/app/views/projects/changelog.rhtml
@@ -0,0 +1,28 @@
+<h2><%=l(:label_change_log)%></h2>
+
+<div>
+
+<div class="rightbox" style="width:140px;">
+<%= start_form_tag %>
+<strong><%=l(:label_tracker_plural)%></strong><br />
+<% @trackers.each do |tracker| %>
+ <%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %>
+ <%= tracker.name %><br />
+<% end %>
+<p><center><%= submit_tag l(:button_apply), :class => 'button-small' %></center></p>
+<%= end_form_tag %>
+</div>
+
+<% ver_id = nil
+ @fixed_issues.each do |issue| %>
+ <% unless ver_id == issue.fixed_version_id %>
+ <% if ver_id %></ul><% end %>
+ <h3><%= l(:label_version) %>: <%= issue.fixed_version.name %></h3>
+ <p><%= format_date(issue.fixed_version.effective_date) %><br />
+ <%=h issue.fixed_version.description %></p>
+ <ul>
+ <% ver_id = issue.fixed_version_id
+ end %>
+ <li><%= link_to issue.long_id, :controller => 'issues', :action => 'show', :id => issue %> [<%= issue.tracker.name %>]: <%= issue.subject %></li>
+<% end %>
+</div> \ No newline at end of file
diff --git a/app/views/projects/destroy.rhtml b/app/views/projects/destroy.rhtml
new file mode 100644
index 000000000..d11705be4
--- /dev/null
+++ b/app/views/projects/destroy.rhtml
@@ -0,0 +1,14 @@
+<h2><%=l(:label_confirmation)%></h2>
+<div class="box">
+<center>
+<p><strong><%= @project.name %></strong><br />
+<%=l(:text_project_destroy_confirmation)%></p>
+
+<p>
+ <%= start_form_tag({:controller => 'projects', :action => 'destroy', :id => @project}) %>
+ <%= hidden_field_tag "confirm", 1 %>
+ <%= submit_tag l(:button_delete) %>
+ <%= end_form_tag %>
+</p>
+</center>
+</div> \ No newline at end of file
diff --git a/app/views/projects/export_issues_pdf.rfpdf b/app/views/projects/export_issues_pdf.rfpdf
new file mode 100644
index 000000000..2e0acf54b
--- /dev/null
+++ b/app/views/projects/export_issues_pdf.rfpdf
@@ -0,0 +1,11 @@
+<% pdf=IfpdfHelper::IFPDF.new
+ pdf.AliasNbPages
+ pdf.footer_date = format_date(Date.today)
+ pdf.AddPage
+ @issues.each {|i|
+ render :partial => 'issues/pdf', :locals => { :pdf => pdf, :issue => i }
+ pdf.AddPage
+ }
+%>
+
+<%= pdf.Output %> \ No newline at end of file
diff --git a/app/views/projects/gantt.rfpdf b/app/views/projects/gantt.rfpdf
new file mode 100644
index 000000000..545abb483
--- /dev/null
+++ b/app/views/projects/gantt.rfpdf
@@ -0,0 +1,168 @@
+<%
+pdf=IfpdfHelper::IFPDF.new
+pdf.AliasNbPages
+pdf.footer_date = format_date(Date.today)
+pdf.AddPage("L")
+pdf.SetFont('Arial','B',12)
+pdf.SetX(15)
+pdf.Cell(70, 20, @project.name)
+pdf.Ln
+pdf.SetFont('Arial','B',9)
+
+subject_width = 70
+header_heigth = 5
+
+headers_heigth = header_heigth
+show_weeks = false
+show_days = false
+
+if @months < 7
+ show_weeks = true
+ headers_heigth = 2*header_heigth
+ if @months < 3
+ show_days = true
+ headers_heigth = 3*header_heigth
+ end
+end
+
+g_width = 210
+zoom = (g_width) / (@date_to - @date_from + 1)
+g_height = 120
+t_height = g_height + headers_heigth
+
+y_start = pdf.GetY
+
+
+#
+# Months headers
+#
+month_f = @date_from
+left = subject_width
+height = header_heigth
+@months.times do
+ width = ((month_f >> 1) - month_f) * zoom
+ pdf.SetY(y_start)
+ pdf.SetX(left)
+ pdf.Cell(width, height, "#{month_f.year}-#{month_f.month}", "LTR", 0, "C")
+ left = left + width
+ month_f = month_f >> 1
+end
+
+#
+# Weeks headers
+#
+if show_weeks
+ left = subject_width
+ height = header_heigth
+ if @date_from.cwday == 1
+ # @date_from is monday
+ week_f = @date_from
+ else
+ # find next monday after @date_from
+ week_f = @date_from + (7 - @date_from.cwday + 1)
+ width = (7 - @date_from.cwday + 1) * zoom-1
+ pdf.SetY(y_start + header_heigth)
+ pdf.SetX(left)
+ pdf.Cell(width + 1, height, "", "LTR")
+ left = left + width+1
+ end
+ while week_f < @date_to
+ width = (week_f + 6 <= @date_to) ? 7 * zoom : (@date_to - week_f + 1) * zoom
+ pdf.SetY(y_start + header_heigth)
+ pdf.SetX(left)
+ pdf.Cell(width, height, week_f.cweek.to_s, "LTR", 0, "C")
+ left = left + width
+ week_f = week_f+7
+ end
+end
+
+#
+# Days headers
+#
+if show_days
+ left = subject_width
+ height = header_heigth
+ wday = @date_from.cwday
+ pdf.SetFont('Arial','B',7)
+ (@date_to - @date_from + 1).to_i.times do
+ width = zoom
+ pdf.SetY(y_start + 2 * header_heigth)
+ pdf.SetX(left)
+ pdf.Cell(width, height, day_name(wday)[0,1], "LTR", 0, "C")
+ left = left + width
+ wday = wday + 1
+ wday = 1 if wday > 7
+ end
+end
+
+pdf.SetY(y_start)
+pdf.SetX(15)
+pdf.Cell(subject_width+g_width-15, headers_heigth, "", 1)
+
+
+#
+# Tasks
+#
+top = headers_heigth + y_start
+pdf.SetFont('Arial','B',7)
+@issues.each do |i|
+ pdf.SetY(top)
+ pdf.SetX(15)
+ pdf.Cell(subject_width-15, 5, "#{i.tracker.name} #{i.id}: #{i.subject}".sub(/^(.{30}[^\s]*\s).*$/, '\1 (...)'), "LR")
+
+ pdf.SetY(top)
+ pdf.SetX(subject_width)
+ pdf.Cell(g_width, 5, "", "LR")
+
+ i_start_date = (i.start_date >= @date_from ? i.start_date : @date_from )
+ i_end_date = (i.due_date <= @date_to ? i.due_date : @date_to )
+
+ i_done_date = i.start_date + ((i.due_date - i.start_date+1)*i.done_ratio/100).floor
+ i_done_date = (i_done_date <= @date_from ? @date_from : i_done_date )
+ i_done_date = (i_done_date >= @date_to ? @date_to : i_done_date )
+
+ i_late_date = [i_end_date, Date.today].min if i_start_date < Date.today
+
+ i_left = ((i_start_date - @date_from)*zoom)
+ i_width = ((i_end_date - i_start_date + 1)*zoom)
+ d_width = ((i_done_date - i_start_date)*zoom)
+ l_width = ((i_late_date - i_start_date+1)*zoom) if i_late_date
+ l_width ||= 0
+
+ pdf.SetY(top+1.5)
+ pdf.SetX(subject_width + i_left)
+ pdf.SetFillColor(200,200,200)
+ pdf.Cell(i_width, 2, "", 0, 0, "", 1)
+
+ if l_width > 0
+ pdf.SetY(top+1.5)
+ pdf.SetX(subject_width + i_left)
+ pdf.SetFillColor(255,100,100)
+ pdf.Cell(l_width, 2, "", 0, 0, "", 1)
+ end
+ if d_width > 0
+ pdf.SetY(top+1.5)
+ pdf.SetX(subject_width + i_left)
+ pdf.SetFillColor(100,100,255)
+ pdf.Cell(d_width, 2, "", 0, 0, "", 1)
+ end
+
+ pdf.SetY(top+1.5)
+ pdf.SetX(subject_width + i_left + i_width)
+ pdf.Cell(30, 2, "#{i.status.name} #{i.done_ratio}%")
+
+ top = top + 5
+ pdf.SetDrawColor(200, 200, 200)
+ pdf.Line(15, top, subject_width+g_width, top)
+ if pdf.GetY() > 180
+ pdf.AddPage("L")
+ top = 20
+ pdf.Line(15, top, subject_width+g_width, top)
+ end
+ pdf.SetDrawColor(0, 0, 0)
+end
+
+pdf.Line(15, top, subject_width+g_width, top)
+
+%>
+<%= pdf.Output %> \ No newline at end of file
diff --git a/app/views/projects/gantt.rhtml b/app/views/projects/gantt.rhtml
new file mode 100644
index 000000000..78d3ac20a
--- /dev/null
+++ b/app/views/projects/gantt.rhtml
@@ -0,0 +1,241 @@
+<h2><%= l(:label_gantt_chart) %></h2>
+<div class="topright">
+<small>
+<%= l(:label_export_to) %>&nbsp;&nbsp;<%= link_to 'PDF', :zoom => @zoom, :year => @year_from, :month => @month_from, :months => @months, :output => 'pdf' %>
+</small>
+</div>
+
+<table width="100%">
+<tr>
+<td align="left">
+<%= start_form_tag %>
+<input type="text" name="months" size="2" value="<%= @months %>">
+<%= l(:label_months_from) %>
+<%= select_month(@month_from, :prefix => "month", :discard_type => true) %>
+<%= select_year(@year_from, :prefix => "year", :discard_type => true) %>
+<%= hidden_field_tag 'zoom', @zoom %>
+<%= submit_tag l(:button_submit), :class => "button-small" %>
+<%= end_form_tag %>
+</td>
+<td align="right">
+<%= if @zoom < 4
+ link_to image_tag('zoom_in'), {:zoom => (@zoom+1), :year => @year_from, :month => @month_from, :months => @months}
+ else
+ image_tag 'zoom_in_g'
+ end %>
+<%= if @zoom > 1
+ link_to image_tag('zoom_out'), :zoom => (@zoom-1), :year => @year_from, :month => @month_from, :months => @months
+ else
+ image_tag 'zoom_out_g'
+ end %>
+</td>
+</tr>
+</table>
+<br />
+
+<style>
+.m_bg {
+ position:absolute;
+ top:0;
+ height:16px;
+ border-top: 1px solid #c0c0c0;
+ border-bottom: 1px solid #c0c0c0;
+ border-right: 1px solid #c0c0c0;
+ text-align: center;
+}
+
+.task {
+ position: absolute;
+ height:8px;
+ font-size:0.8em;
+ color:#888;
+ background:#aaa;
+ padding:0;
+ margin:0;
+ line-height:0.8em;
+}
+
+.task_late {
+ background:#f66;
+}
+
+.task_done {
+ background:#66f;
+}
+</style>
+
+<% zoom = 1
+@zoom.times { zoom = zoom * 2 }
+
+subject_width = 260
+header_heigth = 18
+
+headers_heigth = header_heigth
+show_weeks = false
+show_days = false
+
+if @zoom >1
+ show_weeks = true
+ headers_heigth = 2*header_heigth
+ if @zoom > 2
+ show_days = true
+ headers_heigth = 3*header_heigth
+ end
+end
+
+g_width = (@date_to - @date_from + 1)*zoom
+g_height = [(20 * @issues.length + 6), 206].max
+t_height = g_height + headers_heigth
+%>
+
+<table width="100%" border=0 cellspacing=0 cellpading=0>
+<tr>
+<td width=260>
+
+<div style="position:relative;height:<%= t_height + 24 %>px;width:<%= subject_width + 1 %>px;">
+<div style="right:-2px;width:<%= subject_width %>px;height:<%= headers_heigth %>px;" class="m_bg"></div>
+<div style="right:-2px;width:<%= subject_width %>px;height:<%= t_height %>px;border-left: 1px solid #c0c0c0;" class="m_bg"></div>
+<%
+#
+# Tasks subjects
+#
+top = headers_heigth + 8
+@issues.each do |i| %>
+ <div style="position: absolute;line-height:1em;height:16px;top:<%= top %>px;left:4px;width:<%= subject_width - 5 %>px;overflow:hidden;">
+ <small><%= link_to "#{i.tracker.name} ##{i.id}", :controller => 'issues', :action => 'show', :id => i %>:
+ <%= i.subject.sub(/^(.{30}[^\s]*\s).*$/, '\1 (...)') %></small>
+ </div>
+<% top = top + 20
+end %>
+</div>
+</td>
+<td>
+
+<div style="position:relative;height:<%= t_height + 24 %>px;width:<%= subject_width %>;overflow:auto;">
+<div style="width:<%= g_width-1 %>px;height:<%= headers_heigth %>px;" class="m_bg">&nbsp;</div>
+<%
+#
+# Months headers
+#
+month_f = @date_from
+left = 0
+height = (show_weeks ? header_heigth : header_heigth + g_height)
+@months.times do
+ width = ((month_f >> 1) - month_f) * zoom - 1
+ %>
+ <div style="left:<%= left %>px;width:<%= width %>px;height:<%= height %>px;" class="m_bg">
+ <%= link_to "#{month_f.year}-#{month_f.month}", :year => month_f.year, :month => month_f.month, :zoom => @zoom, :months => @months %>
+ </div>
+ <%
+ left = left + width + 1
+ month_f = month_f >> 1
+end %>
+
+<%
+#
+# Weeks headers
+#
+if show_weeks
+ left = 0
+ height = (show_days ? header_heigth-1 : header_heigth-1 + g_height)
+ if @date_from.cwday == 1
+ # @date_from is monday
+ week_f = @date_from
+ else
+ # find next monday after @date_from
+ week_f = @date_from + (7 - @date_from.cwday + 1)
+ width = (7 - @date_from.cwday + 1) * zoom-1
+ %>
+ <div style="left:<%= left %>px;top:19px;width:<%= width %>px;height:<%= height %>px;" class="m_bg">&nbsp;</div>
+ <%
+ left = left + width+1
+ end %>
+ <%
+ while week_f < @date_to
+ width = (week_f + 6 <= @date_to) ? 7 * zoom -1 : (@date_to - week_f + 1) * zoom-1
+ %>
+ <div style="left:<%= left %>px;top:19px;width:<%= width %>px;height:<%= height %>px;" class="m_bg">
+ <small><%= week_f.cweek %></small>
+ </div>
+ <%
+ left = left + width+1
+ week_f = week_f+7
+ end
+end %>
+
+<%
+#
+# Days headers
+#
+if show_days
+ left = 0
+ height = g_height + header_heigth - 1
+ wday = @date_from.cwday
+ (@date_to - @date_from + 1).to_i.times do
+ width = zoom - 1
+ %>
+ <div style="left:<%= left %>px;top:37px;width:<%= width %>px;height:<%= height %>px;font-size:0.7em;<%= "background:#f1f1f1;" if wday > 5 %>" class="m_bg">
+ <%= day_name(wday)[0,1] %>
+ </div>
+ <%
+ left = left + width+1
+ wday = wday + 1
+ wday = 1 if wday > 7
+ end
+end %>
+
+<%
+#
+# Today red line
+#
+if Date.today >= @date_from and Date.today <= @date_to %>
+ <div style="position: absolute;height:<%= g_height %>px;top:<%= headers_heigth + 1 %>px;left:<%= ((Date.today-@date_from+1)*zoom).floor()-1 %>px;width:10px;border-left: 1px dashed red;">&nbsp;</div>
+<% end %>
+
+<%
+#
+# Tasks
+#
+top = headers_heigth + 12
+@issues.each do |i| %>
+ <%
+ i_start_date = (i.start_date >= @date_from ? i.start_date : @date_from )
+ i_end_date = (i.due_date <= @date_to ? i.due_date : @date_to )
+
+ i_done_date = i.start_date + ((i.due_date - i.start_date+1)*i.done_ratio/100).floor
+ i_done_date = (i_done_date <= @date_from ? @date_from : i_done_date )
+ i_done_date = (i_done_date >= @date_to ? @date_to : i_done_date )
+
+ i_late_date = [i_end_date, Date.today].min if i_start_date < Date.today
+
+ i_left = ((i_start_date - @date_from)*zoom).floor
+ i_width = ((i_end_date - i_start_date + 1)*zoom).floor
+ d_width = ((i_done_date - i_start_date)*zoom).floor
+ l_width = ((i_late_date - i_start_date+1)*zoom).floor if i_late_date
+ l_width ||= 0
+ %>
+ <div style="top:<%= top %>px;left:<%= i_left %>px;width:<%= i_width %>px;" class="task">&nbsp;</div>
+ <% if l_width > 0 %>
+ <div style="top:<%= top %>px;left:<%= i_left %>px;width:<%= l_width %>px;" class="task task_late">&nbsp;</div>
+ <% end %>
+ <% if d_width > 0 %>
+ <div style="top:<%= top %>px;left:<%= i_left %>px;width:<%= d_width %>px;" class="task task_done">&nbsp;</div>
+ <% end %>
+ <div style="top:<%= top %>px;left:<%= i_left + i_width + 5 %>px;background:#fff;" class="task">
+ <%= i.status.name %>
+ <%= (i.done_ratio).to_i %>%
+ </div>
+ <% top = top + 20
+end %>
+</div>
+</td>
+</tr>
+</table>
+
+<table width="100%">
+<tr>
+<td align="left"><%= link_to ('&#171; ' + l(:label_previous)), :year => (@date_from << @months).year, :month => (@date_from << @months).month, :zoom => @zoom, :months => @months %></td>
+<td>
+<td align="right"><%= link_to (l(:label_next) + ' &#187;'), :year => (@date_from >> @months).year, :month => (@date_from >> @months).month, :zoom => @zoom, :months => @months %></td>
+</tr>
+</table> \ No newline at end of file
diff --git a/app/views/projects/list.rhtml b/app/views/projects/list.rhtml
new file mode 100644
index 000000000..0137086d9
--- /dev/null
+++ b/app/views/projects/list.rhtml
@@ -0,0 +1,20 @@
+<h2><%=l(:label_public_projects)%></h2>
+
+<table class="listTableContent">
+ <tr class="ListHead">
+ <%= sort_header_tag('name', :caption => l(:label_project)) %>
+ <th><%=l(:field_description)%></th>
+ <%= sort_header_tag('created_on', :caption => l(:field_created_on)) %>
+ </tr>
+
+<% for project in @projects %>
+ <tr class="<%= cycle("odd", "even") %>">
+ <td><%= link_to project.name, :action => 'show', :id => project %>
+ <td><%= project.description %>
+ <td align="center"><%= format_date(project.created_on) %>
+ </tr>
+<% end %>
+</table>
+
+<%= pagination_links_full @project_pages %>
+[ <%= @project_pages.current.first_item %> - <%= @project_pages.current.last_item %> / <%= @project_count %> ] \ No newline at end of file
diff --git a/app/views/projects/list_documents.rhtml b/app/views/projects/list_documents.rhtml
new file mode 100644
index 000000000..e6cf2b828
--- /dev/null
+++ b/app/views/projects/list_documents.rhtml
@@ -0,0 +1,23 @@
+<h2><%=l(:label_document_plural)%></h2>
+
+<% if @documents.empty? %><p><i><%= l(:label_no_data) %></i></p><% end %>
+
+<% documents = @documents.group_by {|d| d.category } %>
+<% documents.each do |category, docs| %>
+<h3><%= category.name %></h3>
+<ul>
+<% docs.each do |d| %>
+ <li>
+ <b><%= link_to d.title, :controller => 'documents', :action => 'show', :id => d %></b>
+ <br />
+ <%= truncate d.description, 250 %><br />
+ <em><%= format_time(d.created_on) %></em><br />&nbsp;
+ </li>
+
+<% end %>
+</ul>
+<% end %>
+
+<p>
+<%= link_to_if_authorized '&#187; ' + l(:label_document_new), :controller => 'projects', :action => 'add_document', :id => @project %>
+</p>
diff --git a/app/views/projects/list_files.rhtml b/app/views/projects/list_files.rhtml
new file mode 100644
index 000000000..5fe65e6a6
--- /dev/null
+++ b/app/views/projects/list_files.rhtml
@@ -0,0 +1,46 @@
+<h2><%=l(:label_attachment_plural)%></h2>
+
+<% delete_allowed = authorize_for('versions', 'destroy_file') %>
+
+<table class="listTableContent">
+ <tr class="ListHead">
+ <th><%=l(:field_version)%></th>
+ <th><%=l(:field_filename)%></th>
+ <th><%=l(:label_date)%></th>
+ <th><%=l(:field_filesize)%></th>
+ <th>D/L</th>
+ <th>MD5</th>
+ <% if delete_allowed %><th></th><% end %>
+ </tr>
+
+<% for version in @versions %>
+ <% unless version.attachments.empty? %>
+ <tr><td colspan="7"><%= image_tag 'package' %> <b><%= version.name %></b></td></tr>
+ <% for file in version.attachments %>
+ <tr class="<%= cycle("odd", "even") %>">
+ <td></td>
+ <td><%= link_to file.filename, :controller => 'versions', :action => 'download', :id => version, :attachment_id => file %></td>
+ <td align="center"><%= format_date(file.created_on) %></td>
+ <td align="center"><%= human_size(file.filesize) %></td>
+ <td align="center"><%= file.downloads %></td>
+ <td align="center"><small><%= file.digest %></small></td>
+ <% if delete_allowed %>
+ <td align="center">
+ <%= start_form_tag :controller => 'versions', :action => 'destroy_file', :id => version, :attachment_id => file %>
+ <%= submit_tag l(:button_delete), :class => "button-small" %>
+ <%= end_form_tag %>
+ </td>
+ <% end %>
+ </tr>
+ <% end
+ reset_cycle %>
+ <% end %>
+<% end %>
+</table>
+
+<br />
+<p>
+<%= link_to_if_authorized '&#187; ' + l(:label_attachment_new), :controller => 'projects', :action => 'add_file', :id => @project %>
+</p>
+
+
diff --git a/app/views/projects/list_issues.rhtml b/app/views/projects/list_issues.rhtml
new file mode 100644
index 000000000..e7e3ceeda
--- /dev/null
+++ b/app/views/projects/list_issues.rhtml
@@ -0,0 +1,76 @@
+<h2><%=l(:label_issue_plural)%></h2>
+<div class="topright">
+<small>
+<%= l(:label_export_to) %>&nbsp;
+<%= link_to 'CSV', :action => 'export_issues_csv', :id => @project %>,
+<%= link_to 'PDF', :action => 'export_issues_pdf', :id => @project %>
+</small>
+</div>
+
+<%= start_form_tag :action => 'list_issues' %>
+<table cellpadding=2>
+ <tr>
+ <td valign="bottom"><small><%=l(:field_status)%>:</small><br /><%= search_filter_tag 'status_id', :class => 'select-small' %></td>
+ <td valign="bottom"><small><%=l(:field_tracker)%>:</small><br /><%= search_filter_tag 'tracker_id', :class => 'select-small' %></td>
+ <td valign="bottom"><small><%=l(:field_priority)%>:</small><br /><%= search_filter_tag 'priority_id', :class => 'select-small' %></td>
+ <td valign="bottom"><small><%=l(:field_category)%>:</small><br /><%= search_filter_tag 'category_id', :class => 'select-small' %></td>
+ <td valign="bottom"><small><%=l(:field_fixed_version)%>:</small><br /><%= search_filter_tag 'fixed_version_id', :class => 'select-small' %></td>
+ <td valign="bottom"><small><%=l(:field_author)%>:</small><br /><%= search_filter_tag 'author_id', :class => 'select-small' %></td>
+ <td valign="bottom"><small><%=l(:field_assigned_to)%>:</small><br /><%= search_filter_tag 'assigned_to_id', :class => 'select-small' %></td>
+ <td valign="bottom"><small><%=l(:label_subproject_plural)%>:</small><br /><%= search_filter_tag 'subproject_id', :class => 'select-small' %></td>
+ <td valign="bottom">
+ <%= hidden_field_tag 'set_filter', 1 %>
+ <%= submit_tag l(:button_apply), :class => 'button-small' %>
+ </td>
+ <td valign="bottom">
+ <%= link_to l(:button_clear), :action => 'list_issues', :id => @project, :set_filter => 1 %>
+ </td>
+ </tr>
+</table>
+<%= end_form_tag %>
+
+ &nbsp;
+<table class="listTableContent">
+ <tr>
+ <td colspan="6" align="left"><small><%= check_all_links 'issues_form' %></small></td>
+ <td colspan="2" align="right">
+ <small><%= l(:label_per_page) %>:</small>
+ <%= start_form_tag %>
+ <%= select_tag 'per_page', options_for_select(@results_per_page_options, @results_per_page), :class => 'select-small'%>
+ <%= submit_tag l(:button_apply), :class => 'button-small'%>
+ <%= end_form_tag %>
+ </td>
+ </tr>
+</table>
+<%= start_form_tag({:controller => 'projects', :action => 'move_issues', :id => @project}, :id => 'issues_form' ) %>
+<table class="listTableContent">
+
+ <tr class="ListHead">
+ <td></td>
+ <%= sort_header_tag('issues.id', :caption => '#') %>
+ <%= sort_header_tag('issue_statuses.name', :caption => l(:field_status)) %>
+ <%= sort_header_tag('issues.tracker_id', :caption => l(:field_tracker)) %>
+ <th><%=l(:field_subject)%></th>
+ <%= sort_header_tag('users.lastname', :caption => l(:field_author)) %>
+ <%= sort_header_tag('issues.created_on', :caption => l(:field_created_on)) %>
+ <%= sort_header_tag('issues.updated_on', :caption => l(:field_updated_on)) %>
+ </tr>
+ <% for issue in @issues %>
+ <tr class="<%= cycle("odd", "even") %>">
+ <td width="15"><%= check_box_tag "issue_ids[]", issue.id %></td>
+ <td align="center"><%= link_to issue.long_id, :controller => 'issues', :action => 'show', :id => issue %></td>
+ <td align="center" style="font-weight:bold;color:#<%= issue.status.html_color %>;"><%= issue.status.name %></font></td>
+ <td align="center"><%= issue.tracker.name %></td>
+ <td><%= link_to issue.subject, :controller => 'issues', :action => 'show', :id => issue %></td>
+ <td align="center"><%= issue.author.display_name %></td>
+ <td align="center"><%= format_time(issue.created_on) %></td>
+ <td align="center"><%= format_time(issue.updated_on) %></td>
+ </tr>
+ <% end %>
+</table>
+<p>
+<%= pagination_links_full @issue_pages %>
+[ <%= @issue_pages.current.first_item %> - <%= @issue_pages.current.last_item %> / <%= @issue_count %> ]
+</p>
+<%= submit_tag l(:button_move) %>
+<%= end_form_tag %> \ No newline at end of file
diff --git a/app/views/projects/list_members.rhtml b/app/views/projects/list_members.rhtml
new file mode 100644
index 000000000..655abb280
--- /dev/null
+++ b/app/views/projects/list_members.rhtml
@@ -0,0 +1,11 @@
+<h2><%=l(:label_member_plural)%></h2>
+
+<% members = @members.group_by {|m| m.role } %>
+<% members.each do |role, member| %>
+<h3><%= role.name %></h3>
+<ul>
+<% member.each do |m| %>
+<li><%= link_to m.user.display_name, :controller => 'account', :action => 'show', :id => m.user %> (<%= format_date m.created_on %>)</li>
+<% end %>
+</ul>
+<% end %>
diff --git a/app/views/projects/list_news.rhtml b/app/views/projects/list_news.rhtml
new file mode 100644
index 000000000..6880de32f
--- /dev/null
+++ b/app/views/projects/list_news.rhtml
@@ -0,0 +1,18 @@
+<h2><%=l(:label_news_plural)%></h2>
+
+<% if @news.empty? %><p><i><%= l(:label_no_data) %></i></p><% end %>
+
+<ul>
+<% for news in @news %>
+ <li><%= link_to news.title, :controller => 'news', :action => 'show', :id => news %><br />
+ <% unless news.summary.empty? %><%= news.summary %><br /><% end %>
+ <em><%= news.author.name %>, <%= format_time(news.created_on) %></em><br />&nbsp;
+ </li>
+<% end %>
+</ul>
+
+
+<%= pagination_links_full @news_pages %>
+<p>
+<%= link_to_if_authorized '&#187; ' + l(:label_news_new), :controller => 'projects', :action => 'add_news', :id => @project %>
+</p>
diff --git a/app/views/projects/move_issues.rhtml b/app/views/projects/move_issues.rhtml
new file mode 100644
index 000000000..380d47fd5
--- /dev/null
+++ b/app/views/projects/move_issues.rhtml
@@ -0,0 +1,24 @@
+<h2><%=l(:button_move)%></h2>
+
+
+<%= start_form_tag({:action => 'move_issues', :id => @project}, :class => "tabular") %>
+
+<div class="box">
+<p><label><%= l(:label_issue_plural) %>:</label>
+<% for issue in @issues %>
+ <b><%= link_to issue.long_id, :controller => 'issues', :action => 'show', :id => issue %></b> - <%= issue.subject %>
+ <%= hidden_field_tag "issue_ids[]", issue.id %><br />
+<% end %>
+<i>(<%= @issues.length%> <%= lwr(:label_issue, @issues.length)%>)</i></p>
+
+&nbsp;
+
+<!--[form:issue]-->
+<p><label for="new_project_id"><%=l(:field_project)%></label>
+<%= select_tag "new_project_id", options_from_collection_for_select(@projects, "id", "name", @project.id) %></p>
+
+<p><label for="new_tracker_id"><%=l(:field_tracker)%></label>
+<%= select_tag "new_tracker_id", options_from_collection_for_select(@trackers, "id", "name") %></p>
+</div>
+<%= submit_tag l(:button_move) %>
+<%= end_form_tag %>
diff --git a/app/views/projects/settings.rhtml b/app/views/projects/settings.rhtml
new file mode 100644
index 000000000..3f9cba0a0
--- /dev/null
+++ b/app/views/projects/settings.rhtml
@@ -0,0 +1,118 @@
+<h2><%=l(:label_settings)%></h2>
+
+<% if authorize_for('projects', 'edit') %>
+ <% labelled_tabular_form_for :project, @project, :url => { :action => "edit", :id => @project } do |f| %>
+ <%= render :partial => 'form', :locals => { :f => f } %>
+ <%= submit_tag l(:button_save) %>
+ <% end %>
+ <br />&nbsp;
+<% end %>
+
+<div class="box">
+<h3><%=l(:label_member_plural)%></h3>
+<%= error_messages_for 'member' %>
+<table>
+<% for member in @project.members.find(:all, :include => :user) %>
+ <% unless member.new_record? %>
+ <tr>
+ <td><%= member.user.display_name %></td>
+ <td>
+ <% if authorize_for('members', 'edit') %>
+ <%= start_form_tag :controller => 'members', :action => 'edit', :id => member %>
+ <select name="member[role_id]">
+ <%= options_from_collection_for_select @roles, "id", "name", member.role_id %>
+ </select>
+ <%= submit_tag l(:button_change), :class => "button-small" %>
+ <%= end_form_tag %>
+ <% end %>
+ </td>
+ <td>
+ <% if authorize_for('members', 'destroy') %>
+ <%= start_form_tag :controller => 'members', :action => 'destroy', :id => member %>
+ <%= submit_tag l(:button_delete), :class => "button-small" %>
+ <%= end_form_tag %>
+ <% end %>
+ </td>
+ </tr>
+ <% end %>
+<% end %>
+</table>
+<% if authorize_for('projects', 'add_member') %>
+ <hr />
+ <label><%=l(:label_member_new)%></label><br/>
+ <%= start_form_tag :controller => 'projects', :action => 'add_member', :id => @project %>
+ <select name="member[user_id]">
+ <%= options_from_collection_for_select @users, "id", "display_name", @member.user_id %>
+ </select>
+ <select name="member[role_id]">
+ <%= options_from_collection_for_select @roles, "id", "name", @member.role_id %>
+ </select>
+ <%= submit_tag l(:button_add) %>
+ <%= end_form_tag %>
+<% end %>
+</div>
+
+<div class="box">
+<h3><%=l(:label_version_plural)%></h3>
+<table>
+<% for version in @project.versions %>
+ <tr>
+ <td width="100"><strong><%=h version.name %></strong></td>
+ <td width="100"><%= format_date(version.effective_date) %></td>
+ <td><%=h version.description %></td>
+ <td>&nbsp;&nbsp;&nbsp;
+ <%= link_to_if_authorized l(:button_edit), :controller => 'versions', :action => 'edit', :id => version %>
+ <% if authorize_for('versions', 'destroy') %>
+ &nbsp;
+ <%= start_form_tag :controller => 'versions', :action => 'destroy', :id => version %>
+ <%= submit_tag l(:button_delete), :class => "button-small" %>
+ <%= end_form_tag %>
+ <% end %>
+ </td>
+ </tr>
+<% end %>
+</table>
+<% if authorize_for('projects', 'add_version') %>
+ <hr />
+ <%= link_to l(:label_version_new), :controller => 'projects', :action => 'add_version', :id => @project %>
+<% end %>
+</div>
+
+
+<div class="box">
+<h3><%=l(:label_issue_category_plural)%></h3>
+<table>
+<% for @category in @project.issue_categories %>
+ <% unless @category.new_record? %>
+ <tr>
+ <td>
+ <%= start_form_tag :controller => 'issue_categories', :action => 'edit', :id => @category %>
+ <%= text_field 'category', 'name', :size => 25 %>
+ </td>
+ <td>
+ <% if authorize_for('issue_categories', 'edit') %>
+ <%= submit_tag l(:button_save), :class => "button-small" %>
+ <%= end_form_tag %>
+ <% end %>
+ </td>
+ <td>
+ <% if authorize_for('issue_categories', 'destroy') %>
+ <%= start_form_tag :controller => 'issue_categories', :action => 'destroy', :id => @category %>
+ <%= submit_tag l(:button_delete), :class => "button-small" %>
+ <%= end_form_tag %>
+ <% end %>
+ </td>
+ </tr>
+ <% end %>
+<% end %>
+</table>
+<% if authorize_for('projects', 'add_issue_category') %>
+ <hr />
+ <%= start_form_tag :action => 'add_issue_category', :id => @project %>
+ <label for="issue_category_name"><%=l(:label_issue_category_new)%></label><br/>
+ <%= error_messages_for 'issue_category' %>
+ <%= text_field 'issue_category', 'name', :size => 25 %>
+ <%= submit_tag l(:button_create) %>
+ <%= end_form_tag %>
+<% end %>
+</div>
diff --git a/app/views/projects/show.rhtml b/app/views/projects/show.rhtml
new file mode 100644
index 000000000..79e36a586
--- /dev/null
+++ b/app/views/projects/show.rhtml
@@ -0,0 +1,72 @@
+<h2><%=l(:label_overview)%></h2>
+
+<div class="splitcontentleft">
+ <%= simple_format(auto_link(@project.description)) %>
+ <ul>
+ <% unless @project.homepage.empty? %><li><%=l(:field_homepage)%>: <%= auto_link @project.homepage %></li><% end %>
+ <li><%=l(:field_created_on)%>: <%= format_date(@project.created_on) %></li>
+ <% for custom_value in @custom_values %>
+ <% if !custom_value.value.empty? %>
+ <li><%= custom_value.custom_field.name%>: <%= show_value(custom_value) %></li>
+ <% end %>
+ <% end %>
+ </ul>
+
+ <div class="box">
+ <h3><%= image_tag "tracker" %> <%=l(:label_tracker_plural)%></h3>
+ <ul>
+ <% for tracker in @trackers %>
+ <li><%= link_to tracker.name, :controller => 'projects', :action => 'list_issues', :id => @project,
+ :set_filter => 1,
+ "tracker_id" => tracker.id %>:
+ <%= issue_count = Issue.count(:conditions => ["project_id=? and tracker_id=? and issue_statuses.is_closed=?", @project.id, tracker.id, false], :include => :status) %>
+ <%= lwr(:label_open_issues, issue_count) %>
+ </li>
+ <% end %>
+ </ul>
+ <% if authorize_for 'projects', 'add_issue' %>
+ &#187; <%=l(:label_issue_new)%>:
+ <ul>
+ <% @trackers.each do |tracker| %>
+ <li><%= link_to tracker.name, :controller => 'projects', :action => 'add_issue', :id => @project, :tracker_id => tracker %></li>
+ <% end %>
+ </ul>
+ <% end %>
+ <center><small>[ <%= link_to l(:label_issue_view_all), :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 %> ]</small></center>
+ </div>
+</div>
+
+<div class="splitcontentright">
+ <div class="box">
+ <h3><%= image_tag "users" %> <%=l(:label_member_plural)%></h3>
+ <% for member in @members %>
+ <%= link_to_user member.user %> (<%= member.role.name %>)<br />
+ <% end %>
+ </div>
+
+ <% if @subprojects %>
+ <div class="box">
+ <h3><%= image_tag "projects" %> <%=l(:label_subproject_plural)%></h3>
+ <% for subproject in @subprojects %>
+ <%= link_to subproject.name, :action => 'show', :id => subproject %><br />
+ <% end %>
+ </div>
+ <% end %>
+
+ <div class="box">
+ <h3><%=l(:label_news_latest)%></h3>
+ <% for news in @news %>
+ <p><b><%= news.title %></b> <small>(<%= link_to_user news.author %> <%= format_time(news.created_on) %>)</small><br />
+ <%= news.summary %>
+ <small>[<%= link_to l(:label_read), :controller => 'news', :action => 'show', :id => news %>]</small></p>
+ <hr />
+ <% end %>
+ <center><small>[ <%= link_to l(:label_news_view_all), :controller => 'projects', :action => 'list_news', :id => @project %> ]</small></center>
+ </div>
+</div>
+
+
+
+
+
+