projects_controller.rb
535 lines
| 20.3 KiB
| text/x-ruby
|
RubyLexer
|
r2 | # redMine - project management software | ||
# Copyright (C) 2006 Jean-Philippe Lang | ||||
# | ||||
# This program is free software; you can redistribute it and/or | ||||
# modify it under the terms of the GNU General Public License | ||||
# as published by the Free Software Foundation; either version 2 | ||||
# of the License, or (at your option) any later version. | ||||
# | ||||
# This program is distributed in the hope that it will be useful, | ||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||||
# GNU General Public License for more details. | ||||
# | ||||
# You should have received a copy of the GNU General Public License | ||||
# along with this program; if not, write to the Free Software | ||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
class ProjectsController < ApplicationController | ||||
|
r92 | layout 'base' | ||
|
r4 | before_filter :find_project, :authorize, :except => [ :index, :list, :add ] | ||
|
r2 | before_filter :require_admin, :only => [ :add, :destroy ] | ||
helper :sort | ||||
|
r92 | include SortHelper | ||
|
r4 | helper :custom_fields | ||
include CustomFieldsHelper | ||||
|
r35 | helper :ifpdf | ||
include IfpdfHelper | ||||
|
r52 | helper IssuesHelper | ||
|
r92 | helper :queries | ||
include QueriesHelper | ||||
|
r35 | |||
|
r4 | def index | ||
list | ||||
|
r31 | render :action => 'list' unless request.xhr? | ||
|
r4 | end | ||
|
r2 | |||
|
r5 | # Lists public projects | ||
def list | ||||
sort_init 'name', 'asc' | ||||
sort_update | ||||
@project_count = Project.count(["is_public=?", true]) | ||||
@project_pages = Paginator.new self, @project_count, | ||||
|
r2 | 15, | ||
|
r124 | params['page'] | ||
|
r5 | @projects = Project.find :all, :order => sort_clause, | ||
:conditions => ["is_public=?", true], | ||||
|
r2 | :limit => @project_pages.items_per_page, | ||
|
r31 | :offset => @project_pages.current.offset | ||
render :action => "list", :layout => false if request.xhr? | ||||
|
r2 | end | ||
# Add a new project | ||||
|
r5 | def add | ||
|
r10 | @custom_fields = IssueCustomField.find(:all) | ||
@root_projects = Project.find(:all, :conditions => "parent_id is null") | ||||
|
r5 | @project = Project.new(params[:project]) | ||
|
r10 | if request.get? | ||
@custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project) } | ||||
else | ||||
|
r124 | @project.custom_fields = CustomField.find(params[:custom_field_ids]) if params[:custom_field_ids] | ||
|
r10 | @custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project, :value => params["custom_fields"][x.id.to_s]) } | ||
@project.custom_values = @custom_values | ||||
|
r103 | if params[:repository_enabled] && params[:repository_enabled] == "1" | ||
@project.repository = Repository.new | ||||
@project.repository.attributes = params[:repository] | ||||
end | ||||
|
r5 | if @project.save | ||
|
r15 | flash[:notice] = l(:notice_successful_create) | ||
|
r5 | redirect_to :controller => 'admin', :action => 'projects' | ||
end | ||||
end | ||||
end | ||||
|
r2 | |||
|
r10 | # Show @project | ||
|
r5 | def show | ||
|
r10 | @custom_values = @project.custom_values.find(:all, :include => :custom_field) | ||
|
r5 | @members = @project.members.find(:all, :include => [:user, :role]) | ||
@subprojects = @project.children if @project.children_count > 0 | ||||
|
r10 | @news = @project.news.find(:all, :limit => 5, :include => [ :author, :project ], :order => "news.created_on DESC") | ||
@trackers = Tracker.find(:all) | ||||
|
r5 | end | ||
|
r2 | |||
def settings | ||||
|
r5 | @root_projects = Project::find(:all, :conditions => ["parent_id is null and id <> ?", @project.id]) | ||
|
r123 | @custom_fields = IssueCustomField.find(:all) | ||
|
r5 | @issue_category ||= IssueCategory.new | ||
|
r2 | @member ||= @project.members.new | ||
|
r123 | @roles = Role.find(:all) | ||
@users = User.find(:all) - @project.members.find(:all, :include => :user).collect{|m| m.user } | ||||
|
r18 | @custom_values ||= ProjectCustomField.find(:all).collect { |x| @project.custom_values.find_by_custom_field_id(x.id) || CustomValue.new(:custom_field => x) } | ||
|
r2 | end | ||
|
r5 | # Edit @project | ||
def edit | ||||
if request.post? | ||||
|
r124 | @project.custom_fields = IssueCustomField.find(params[:custom_field_ids]) if params[:custom_field_ids] | ||
|
r10 | if params[:custom_fields] | ||
@custom_values = ProjectCustomField.find(:all).collect { |x| CustomValue.new(:custom_field => x, :customized => @project, :value => params["custom_fields"][x.id.to_s]) } | ||||
@project.custom_values = @custom_values | ||||
end | ||||
|
r103 | if params[:repository_enabled] | ||
case params[:repository_enabled] | ||||
when "0" | ||||
@project.repository = nil | ||||
when "1" | ||||
@project.repository ||= Repository.new | ||||
@project.repository.attributes = params[:repository] | ||||
end | ||||
end | ||||
@project.attributes = params[:project] | ||||
if @project.save | ||||
|
r15 | flash[:notice] = l(:notice_successful_update) | ||
|
r5 | redirect_to :action => 'settings', :id => @project | ||
|
r2 | else | ||
settings | ||||
render :action => 'settings' | ||||
|
r5 | end | ||
end | ||||
|
r2 | end | ||
|
r10 | |||
# Delete @project | ||||
def destroy | ||||
|
r2 | if request.post? and params[:confirm] | ||
@project.destroy | ||||
redirect_to :controller => 'admin', :action => 'projects' | ||||
end | ||||
|
r10 | end | ||
|
r2 | |||
|
r10 | # Add a new issue category to @project | ||
def add_issue_category | ||||
if request.post? | ||||
@issue_category = @project.issue_categories.build(params[:issue_category]) | ||||
if @issue_category.save | ||||
|
r15 | flash[:notice] = l(:notice_successful_create) | ||
|
r10 | redirect_to :action => 'settings', :id => @project | ||
else | ||||
|
r2 | settings | ||
render :action => 'settings' | ||||
|
r10 | end | ||
end | ||||
end | ||||
|
r2 | |||
|
r10 | # Add a new version to @project | ||
def add_version | ||||
@version = @project.versions.build(params[:version]) | ||||
if request.post? and @version.save | ||||
|
r15 | flash[:notice] = l(:notice_successful_create) | ||
|
r2 | redirect_to :action => 'settings', :id => @project | ||
|
r10 | end | ||
end | ||||
|
r2 | |||
|
r10 | # Add a new member to @project | ||
def add_member | ||||
|
r2 | @member = @project.members.build(params[:member]) | ||
|
r10 | if request.post? | ||
if @member.save | ||||
|
r15 | flash[:notice] = l(:notice_successful_create) | ||
|
r10 | redirect_to :action => 'settings', :id => @project | ||
else | ||||
|
r2 | settings | ||
render :action => 'settings' | ||||
end | ||||
|
r10 | end | ||
end | ||||
|
r2 | |||
|
r10 | # Show members list of @project | ||
def list_members | ||||
@members = @project.members | ||||
end | ||||
|
r2 | |||
|
r10 | # Add a new document to @project | ||
def add_document | ||||
@categories = Enumeration::get_values('DCAT') | ||||
@document = @project.documents.build(params[:document]) | ||||
if request.post? | ||||
|
r2 | # Save the attachment | ||
|
r10 | if params[:attachment][:file].size > 0 | ||
@attachment = @document.attachments.build(params[:attachment]) | ||||
@attachment.author_id = self.logged_in_user.id if self.logged_in_user | ||||
end | ||||
if @document.save | ||||
|
r15 | flash[:notice] = l(:notice_successful_create) | ||
|
r10 | redirect_to :action => 'list_documents', :id => @project | ||
end | ||||
end | ||||
end | ||||
# Show documents list of @project | ||||
def list_documents | ||||
|
r95 | @documents = @project.documents.find :all, :include => :category | ||
|
r10 | end | ||
|
r2 | |||
|
r10 | # Add a new issue to @project | ||
def add_issue | ||||
@tracker = Tracker.find(params[:tracker_id]) | ||||
@priorities = Enumeration::get_values('IPRI') | ||||
@issue = Issue.new(:project => @project, :tracker => @tracker) | ||||
|
r42 | if request.get? | ||
@issue.start_date = Date.today | ||||
|
r10 | @custom_values = @project.custom_fields_for_issues(@tracker).collect { |x| CustomValue.new(:custom_field => x, :customized => @issue) } | ||
else | ||||
@issue.attributes = params[:issue] | ||||
@issue.author_id = self.logged_in_user.id if self.logged_in_user | ||||
|
r38 | # Multiple file upload | ||
|
r119 | @attachments = [] | ||
|
r38 | params[:attachments].each { |a| | ||
|
r119 | @attachments << Attachment.new(:container => @issue, :file => a, :author => logged_in_user) unless a.size == 0 | ||
|
r38 | } if params[:attachments] and params[:attachments].is_a? Array | ||
|
r10 | @custom_values = @project.custom_fields_for_issues(@tracker).collect { |x| CustomValue.new(:custom_field => x, :customized => @issue, :value => params["custom_fields"][x.id.to_s]) } | ||
|
r119 | @issue.custom_values = @custom_values | ||
|
r10 | if @issue.save | ||
|
r119 | @attachments.each(&:save) | ||
|
r15 | flash[:notice] = l(:notice_successful_create) | ||
|
r124 | Mailer.deliver_issue_add(@issue) if Permission.find_by_controller_and_action(params[:controller], params[:action]).mail_enabled? | ||
|
r10 | redirect_to :action => 'list_issues', :id => @project | ||
end | ||||
end | ||||
end | ||||
|
r5 | # Show filtered/sorted issues list of @project | ||
|
r4 | def list_issues | ||
sort_init 'issues.id', 'desc' | ||||
sort_update | ||||
|
r92 | retrieve_query | ||
|
r4 | |||
|
r35 | @results_per_page_options = [ 15, 25, 50, 100 ] | ||
if params[:per_page] and @results_per_page_options.include? params[:per_page].to_i | ||||
@results_per_page = params[:per_page].to_i | ||||
session[:results_per_page] = @results_per_page | ||||
else | ||||
|
r42 | @results_per_page = session[:results_per_page] || 25 | ||
|
r35 | end | ||
|
r92 | if @query.valid? | ||
@issue_count = Issue.count(:include => [:status, :project], :conditions => @query.statement) | ||||
|
r124 | @issue_pages = Paginator.new self, @issue_count, @results_per_page, params['page'] | ||
|
r92 | @issues = Issue.find :all, :order => sort_clause, | ||
:include => [ :author, :status, :tracker, :project ], | ||||
:conditions => @query.statement, | ||||
:limit => @issue_pages.items_per_page, | ||||
:offset => @issue_pages.current.offset | ||||
end | ||||
|
r35 | render :layout => false if request.xhr? | ||
|
r4 | end | ||
# Export filtered/sorted issues list to CSV | ||||
def export_issues_csv | ||||
sort_init 'issues.id', 'desc' | ||||
sort_update | ||||
|
r92 | retrieve_query | ||
render :action => 'list_issues' and return unless @query.valid? | ||||
|
r4 | |||
@issues = Issue.find :all, :order => sort_clause, | ||||
|
r35 | :include => [ :author, :status, :tracker, :project, :custom_values ], | ||
|
r92 | :conditions => @query.statement | ||
|
r2 | |||
|
r35 | ic = Iconv.new('ISO-8859-1', 'UTF-8') | ||
|
r4 | export = StringIO.new | ||
|
r35 | CSV::Writer.generate(export, l(:general_csv_separator)) do |csv| | ||
# csv header fields | ||||
headers = [ "#", l(:field_status), l(:field_tracker), l(:field_subject), l(:field_author), l(:field_created_on), l(:field_updated_on) ] | ||||
for custom_field in @project.all_custom_fields | ||||
headers << custom_field.name | ||||
end | ||||
csv << headers.collect {|c| ic.iconv(c) } | ||||
# csv lines | ||||
|
r4 | @issues.each do |issue| | ||
|
r35 | fields = [issue.id, issue.status.name, issue.tracker.name, issue.subject, issue.author.display_name, l_datetime(issue.created_on), l_datetime(issue.updated_on)] | ||
for custom_field in @project.all_custom_fields | ||||
fields << (show_value issue.custom_value_for(custom_field)) | ||||
end | ||||
csv << fields.collect {|c| ic.iconv(c.to_s) } | ||||
|
r4 | end | ||
end | ||||
export.rewind | ||||
|
r35 | send_data(export.read, :type => 'text/csv; header=present', :filename => 'export.csv') | ||
end | ||||
# Export filtered/sorted issues to PDF | ||||
def export_issues_pdf | ||||
sort_init 'issues.id', 'desc' | ||||
sort_update | ||||
|
r92 | retrieve_query | ||
render :action => 'list_issues' and return unless @query.valid? | ||||
|
r35 | |||
@issues = Issue.find :all, :order => sort_clause, | ||||
:include => [ :author, :status, :tracker, :project, :custom_values ], | ||||
|
r92 | :conditions => @query.statement | ||
|
r35 | |||
@options_for_rfpdf ||= {} | ||||
@options_for_rfpdf[:file_name] = "export.pdf" | ||||
|
r92 | render :layout => false | ||
|
r4 | end | ||
|
r2 | |||
|
r30 | def move_issues | ||
@issues = @project.issues.find(params[:issue_ids]) if params[:issue_ids] | ||||
redirect_to :action => 'list_issues', :id => @project and return unless @issues | ||||
@projects = [] | ||||
# find projects to which the user is allowed to move the issue | ||||
@logged_in_user.memberships.each {|m| @projects << m.project if Permission.allowed_to_role("projects/move_issues", m.role_id)} | ||||
# issue can be moved to any tracker | ||||
@trackers = Tracker.find(:all) | ||||
if request.post? and params[:new_project_id] and params[:new_tracker_id] | ||||
new_project = Project.find(params[:new_project_id]) | ||||
new_tracker = Tracker.find(params[:new_tracker_id]) | ||||
@issues.each { |i| | ||||
|
r97 | # project dependent properties | ||
unless i.project_id == new_project.id | ||||
i.category = nil | ||||
i.fixed_version = nil | ||||
end | ||||
|
r30 | # move the issue | ||
i.project = new_project | ||||
i.tracker = new_tracker | ||||
i.save | ||||
} | ||||
flash[:notice] = l(:notice_successful_update) | ||||
redirect_to :action => 'list_issues', :id => @project | ||||
end | ||||
end | ||||
|
r92 | def add_query | ||
@query = Query.new(params[:query]) | ||||
@query.project = @project | ||||
@query.user = logged_in_user | ||||
params[:fields].each do |field| | ||||
@query.add_filter(field, params[:operators][field], params[:values][field]) | ||||
end if params[:fields] | ||||
if request.post? and @query.save | ||||
flash[:notice] = l(:notice_successful_create) | ||||
redirect_to :controller => 'reports', :action => 'issue_report', :id => @project | ||||
end | ||||
render :layout => false if request.xhr? | ||||
end | ||||
|
r10 | # Add a news to @project | ||
def add_news | ||||
@news = News.new(:project => @project) | ||||
if request.post? | ||||
@news.attributes = params[:news] | ||||
@news.author_id = self.logged_in_user.id if self.logged_in_user | ||||
if @news.save | ||||
|
r15 | flash[:notice] = l(:notice_successful_create) | ||
|
r10 | redirect_to :action => 'list_news', :id => @project | ||
end | ||||
end | ||||
end | ||||
# Show news list of @project | ||||
|
r4 | def list_news | ||
|
r2 | @news_pages, @news = paginate :news, :per_page => 10, :conditions => ["project_id=?", @project.id], :include => :author, :order => "news.created_on DESC" | ||
|
r31 | render :action => "list_news", :layout => false if request.xhr? | ||
|
r4 | end | ||
|
r10 | |||
|
r94 | def add_file | ||
@attachment = Attachment.new(params[:attachment]) | ||||
if request.post? and params[:attachment][:file].size > 0 | ||||
@attachment.container = @project.versions.find_by_id(params[:version_id]) | ||||
@attachment.author = logged_in_user | ||||
if @attachment.save | ||||
flash[:notice] = l(:notice_successful_create) | ||||
redirect_to :controller => 'projects', :action => 'list_files', :id => @project | ||||
|
r2 | end | ||
end | ||||
@versions = @project.versions | ||||
end | ||||
def list_files | ||||
@versions = @project.versions | ||||
end | ||||
|
r16 | # Show changelog for @project | ||
|
r4 | def changelog | ||
|
r16 | @trackers = Tracker.find(:all, :conditions => ["is_in_chlog=?", true]) | ||
if request.get? | ||||
@selected_tracker_ids = @trackers.collect {|t| t.id.to_s } | ||||
else | ||||
@selected_tracker_ids = params[:tracker_ids].collect { |id| id.to_i.to_s } if params[:tracker_ids] and params[:tracker_ids].is_a? Array | ||||
end | ||||
@selected_tracker_ids ||= [] | ||||
|
r4 | @fixed_issues = @project.issues.find(:all, | ||
|
r16 | :include => [ :fixed_version, :status, :tracker ], | ||
:conditions => [ "issue_statuses.is_closed=? and issues.tracker_id in (#{@selected_tracker_ids.join(',')}) and issues.fixed_version_id is not null", true], | ||||
:order => "versions.effective_date DESC, issues.id DESC" | ||||
) unless @selected_tracker_ids.empty? | ||||
@fixed_issues ||= [] | ||||
|
r4 | end | ||
|
r2 | |||
|
r36 | def activity | ||
|
r42 | if params[:year] and params[:year].to_i > 1900 | ||
@year = params[:year].to_i | ||||
if params[:month] and params[:month].to_i > 0 and params[:month].to_i < 13 | ||||
@month = params[:month].to_i | ||||
end | ||||
end | ||||
@year ||= Date.today.year | ||||
@month ||= Date.today.month | ||||
@date_from = Date.civil(@year, @month, 1) | ||||
@date_to = (@date_from >> 1)-1 | ||||
|
r36 | @events_by_day = {} | ||
unless params[:show_issues] == "0" | ||||
|
r42 | @project.issues.find(:all, :include => [:author, :status], :conditions => ["issues.created_on>=? and issues.created_on<=?", @date_from, @date_to] ).each { |i| | ||
|
r36 | @events_by_day[i.created_on.to_date] ||= [] | ||
@events_by_day[i.created_on.to_date] << i | ||||
} | ||||
@show_issues = 1 | ||||
end | ||||
unless params[:show_news] == "0" | ||||
|
r95 | @project.news.find(:all, :conditions => ["news.created_on>=? and news.created_on<=?", @date_from, @date_to], :include => :author ).each { |i| | ||
|
r36 | @events_by_day[i.created_on.to_date] ||= [] | ||
@events_by_day[i.created_on.to_date] << i | ||||
} | ||||
@show_news = 1 | ||||
end | ||||
unless params[:show_files] == "0" | ||||
|
r95 | Attachment.find(:all, :select => "attachments.*", :joins => "LEFT JOIN versions ON versions.id = attachments.container_id", :conditions => ["attachments.container_type='Version' and versions.project_id=? and attachments.created_on>=? and attachments.created_on<=?", @project.id, @date_from, @date_to], :include => :author ).each { |i| | ||
|
r36 | @events_by_day[i.created_on.to_date] ||= [] | ||
@events_by_day[i.created_on.to_date] << i | ||||
} | ||||
@show_files = 1 | ||||
end | ||||
|
r49 | unless params[:show_documents] == "0" | ||
|
r81 | @project.documents.find(:all, :conditions => ["documents.created_on>=? and documents.created_on<=?", @date_from, @date_to] ).each { |i| | ||
@events_by_day[i.created_on.to_date] ||= [] | ||||
@events_by_day[i.created_on.to_date] << i | ||||
} | ||||
|
r95 | Attachment.find(:all, :select => "attachments.*", :joins => "LEFT JOIN documents ON documents.id = attachments.container_id", :conditions => ["attachments.container_type='Document' and documents.project_id=? and attachments.created_on>=? and attachments.created_on<=?", @project.id, @date_from, @date_to], :include => :author ).each { |i| | ||
|
r36 | @events_by_day[i.created_on.to_date] ||= [] | ||
@events_by_day[i.created_on.to_date] << i | ||||
} | ||||
@show_documents = 1 | ||||
end | ||||
|
r70 | |||
render :layout => false if request.xhr? | ||||
|
r36 | end | ||
|
r42 | |||
def calendar | ||||
if params[:year] and params[:year].to_i > 1900 | ||||
@year = params[:year].to_i | ||||
if params[:month] and params[:month].to_i > 0 and params[:month].to_i < 13 | ||||
@month = params[:month].to_i | ||||
end | ||||
end | ||||
@year ||= Date.today.year | ||||
@month ||= Date.today.month | ||||
@date_from = Date.civil(@year, @month, 1) | ||||
@date_to = (@date_from >> 1)-1 | ||||
# start on monday | ||||
@date_from = @date_from - (@date_from.cwday-1) | ||||
# finish on sunday | ||||
@date_to = @date_to + (7-@date_to.cwday) | ||||
@issues = @project.issues.find(:all, :include => :tracker, :conditions => ["((start_date>=? and start_date<=?) or (due_date>=? and due_date<=?))", @date_from, @date_to, @date_from, @date_to]) | ||||
render :layout => false if request.xhr? | ||||
end | ||||
def gantt | ||||
if params[:year] and params[:year].to_i >0 | ||||
@year_from = params[:year].to_i | ||||
if params[:month] and params[:month].to_i >=1 and params[:month].to_i <= 12 | ||||
@month_from = params[:month].to_i | ||||
else | ||||
@month_from = 1 | ||||
end | ||||
else | ||||
@month_from ||= (Date.today << 1).month | ||||
@year_from ||= (Date.today << 1).year | ||||
end | ||||
@zoom = (params[:zoom].to_i > 0 and params[:zoom].to_i < 5) ? params[:zoom].to_i : 2 | ||||
@months = (params[:months].to_i > 0 and params[:months].to_i < 25) ? params[:months].to_i : 6 | ||||
@date_from = Date.civil(@year_from, @month_from, 1) | ||||
@date_to = (@date_from >> @months) - 1 | ||||
@issues = @project.issues.find(:all, :order => "start_date, due_date", :conditions => ["(((start_date>=? and start_date<=?) or (due_date>=? and due_date<=?) or (start_date<? and due_date>?)) and start_date is not null and due_date is not null)", @date_from, @date_to, @date_from, @date_to, @date_from, @date_to]) | ||||
if params[:output]=='pdf' | ||||
@options_for_rfpdf ||= {} | ||||
@options_for_rfpdf[:file_name] = "gantt.pdf" | ||||
render :template => "projects/gantt.rfpdf", :layout => false | ||||
else | ||||
render :template => "projects/gantt.rhtml" | ||||
end | ||||
end | ||||
|
r2 | private | ||
|
r10 | # Find project of id params[:id] | ||
# if not found, redirect to project list | ||||
|
r16 | # Used as a before_filter | ||
|
r10 | def find_project | ||
|
r42 | @project = Project.find(params[:id]) | ||
@html_title = @project.name | ||||
|
r15 | rescue | ||
|
r10 | redirect_to :action => 'list' | ||
end | ||||
|
r92 | |||
# Retrieve query from session or build a new query | ||||
def retrieve_query | ||||
if params[:query_id] | ||||
@query = @project.queries.find(params[:query_id]) | ||||
else | ||||
if params[:set_filter] or !session[:query] or session[:query].project_id != @project.id | ||||
# Give it a name, required to be valid | ||||
@query = Query.new(:name => "_") | ||||
@query.project = @project | ||||
if params[:fields] and params[:fields].is_a? Array | ||||
params[:fields].each do |field| | ||||
@query.add_filter(field, params[:operators][field], params[:values][field]) | ||||
end | ||||
else | ||||
@query.available_filters.keys.each do |field| | ||||
@query.add_short_filter(field, params[field]) if params[field] | ||||
end | ||||
end | ||||
session[:query] = @query | ||||
else | ||||
@query = session[:query] | ||||
end | ||||
end | ||||
end | ||||
|
r2 | end | ||