Compare commits
51 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c393f1e92c | ||
|
|
8efcf60319 | ||
|
|
e07bc81c5e | ||
|
|
5c6349a7ca | ||
|
|
37fbdb1457 | ||
|
|
a13acb7851 | ||
|
|
01887f1e67 | ||
|
|
3d9f274140 | ||
|
|
7375dff6d6 | ||
|
|
9874a61ec3 | ||
|
|
b5998b59ab | ||
|
|
c590cded4b | ||
|
|
5b8af329e2 | ||
|
|
0badc79162 | ||
|
|
5e57cbfdc4 | ||
|
|
489527ada7 | ||
|
|
6ce685a63c | ||
|
|
8045385990 | ||
|
|
3a4c46089f | ||
|
|
53d45273a9 | ||
|
|
cc23ab9652 | ||
|
|
ea33a66c6b | ||
|
|
a8c27df9fe | ||
|
|
af632568e3 | ||
|
|
2c408ca6a5 | ||
|
|
2a6dadf787 | ||
|
|
958f1accec | ||
|
|
77a2cbfa6a | ||
|
|
73b4b614ee | ||
|
|
1a71316b37 | ||
|
|
5fa087a792 | ||
|
|
425a0fe988 | ||
|
|
606762dcad | ||
|
|
07dc1e34ff | ||
|
|
1afe67bf74 | ||
|
|
f9f4591cff | ||
|
|
aa4fc1b58a | ||
|
|
8c17237638 | ||
|
|
06ab582e5d | ||
|
|
af66c42d9e | ||
|
|
655c50849d | ||
|
|
bd5b7428d8 | ||
|
|
4ed30a4495 | ||
|
|
ca39b05420 | ||
|
|
e189641e8c | ||
|
|
102dd4c11b | ||
|
|
c1d853d957 | ||
|
|
225f99377a | ||
|
|
d8cf4c57d3 | ||
|
|
4b5fa08f66 | ||
|
|
4380c0af73 |
3
Gemfile
3
Gemfile
@@ -3,7 +3,7 @@ source 'https://rubygems.org'
|
||||
gem "rails", "3.2.13"
|
||||
gem "jquery-rails", "~> 2.0.2"
|
||||
gem "i18n", "~> 0.6.0"
|
||||
gem "coderay", "~> 1.0.6"
|
||||
gem "coderay", "~> 1.0.9"
|
||||
gem "fastercsv", "~> 1.5.0", :platforms => [:mri_18, :mingw_18, :jruby]
|
||||
gem "builder", "3.0.0"
|
||||
|
||||
@@ -80,6 +80,7 @@ group :test do
|
||||
gem "shoulda", "~> 3.3.2"
|
||||
gem "mocha", "~> 0.13.3"
|
||||
gem 'capybara', '~> 2.0.0'
|
||||
gem 'nokogiri', '< 1.6.0'
|
||||
end
|
||||
|
||||
local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")
|
||||
|
||||
@@ -70,14 +70,12 @@ class EnumerationsController < ApplicationController
|
||||
@enumeration.destroy
|
||||
redirect_to enumerations_path
|
||||
return
|
||||
elsif params[:reassign_to_id]
|
||||
if reassign_to = @enumeration.class.find_by_id(params[:reassign_to_id])
|
||||
@enumeration.destroy(reassign_to)
|
||||
redirect_to enumerations_path
|
||||
return
|
||||
end
|
||||
elsif params[:reassign_to_id].present? && (reassign_to = @enumeration.class.find_by_id(params[:reassign_to_id].to_i))
|
||||
@enumeration.destroy(reassign_to)
|
||||
redirect_to enumerations_path
|
||||
return
|
||||
end
|
||||
@enumerations = @enumeration.class.all - [@enumeration]
|
||||
@enumerations = @enumeration.class.system.all - [@enumeration]
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
@@ -53,7 +53,6 @@ class MyController < ApplicationController
|
||||
if request.post?
|
||||
@user.safe_attributes = params[:user]
|
||||
@user.pref.attributes = params[:pref]
|
||||
@user.pref[:no_self_notified] = (params[:no_self_notified] == '1')
|
||||
if @user.save
|
||||
@user.pref.save
|
||||
@user.notified_project_ids = (@user.mail_notification == 'selected' ? params[:notified_project_ids] : [])
|
||||
|
||||
@@ -92,7 +92,6 @@ class UsersController < ApplicationController
|
||||
|
||||
if @user.save
|
||||
@user.pref.attributes = params[:pref]
|
||||
@user.pref[:no_self_notified] = (params[:no_self_notified] == '1')
|
||||
@user.pref.save
|
||||
@user.notified_project_ids = (@user.mail_notification == 'selected' ? params[:notified_project_ids] : [])
|
||||
|
||||
@@ -137,7 +136,6 @@ class UsersController < ApplicationController
|
||||
was_activated = (@user.status_change == [User::STATUS_REGISTERED, User::STATUS_ACTIVE])
|
||||
# TODO: Similar to My#account
|
||||
@user.pref.attributes = params[:pref]
|
||||
@user.pref[:no_self_notified] = (params[:no_self_notified] == '1')
|
||||
|
||||
if @user.save
|
||||
@user.pref.save
|
||||
|
||||
@@ -471,7 +471,11 @@ module ApplicationHelper
|
||||
end
|
||||
|
||||
def accesskey(s)
|
||||
Redmine::AccessKeys.key_for s
|
||||
@used_accesskeys ||= []
|
||||
key = Redmine::AccessKeys.key_for(s)
|
||||
return nil if @used_accesskeys.include?(key)
|
||||
@used_accesskeys << key
|
||||
key
|
||||
end
|
||||
|
||||
# Formats text according to system settings.
|
||||
@@ -758,7 +762,7 @@ module ApplicationHelper
|
||||
if repository && (changeset = Changeset.visible.where("repository_id = ? AND scmid LIKE ?", repository.id, "#{name}%").first)
|
||||
link = link_to h("#{project_prefix}#{repo_prefix}#{name}"), {:only_path => only_path, :controller => 'repositories', :action => 'revision', :id => project, :repository_id => repository.identifier_param, :rev => changeset.identifier},
|
||||
:class => 'changeset',
|
||||
:title => truncate_single_line(h(changeset.comments), :length => 100)
|
||||
:title => truncate_single_line(changeset.comments, :length => 100)
|
||||
end
|
||||
else
|
||||
if repository && User.current.allowed_to?(:browse_repository, project)
|
||||
|
||||
@@ -29,6 +29,30 @@ module QueriesHelper
|
||||
end
|
||||
end
|
||||
|
||||
def query_filters_hidden_tags(query)
|
||||
tags = ''.html_safe
|
||||
query.filters.each do |field, options|
|
||||
tags << hidden_field_tag("f[]", field, :id => nil)
|
||||
tags << hidden_field_tag("op[#{field}]", options[:operator], :id => nil)
|
||||
options[:values].each do |value|
|
||||
tags << hidden_field_tag("v[#{field}][]", value, :id => nil)
|
||||
end
|
||||
end
|
||||
tags
|
||||
end
|
||||
|
||||
def query_columns_hidden_tags(query)
|
||||
tags = ''.html_safe
|
||||
query.columns.each do |column|
|
||||
tags << hidden_field_tag("c[]", column.name, :id => nil)
|
||||
end
|
||||
tags
|
||||
end
|
||||
|
||||
def query_hidden_tags(query)
|
||||
query_filters_hidden_tags(query) + query_columns_hidden_tags(query)
|
||||
end
|
||||
|
||||
def available_block_columns_tags(query)
|
||||
tags = ''.html_safe
|
||||
query.available_block_columns.each do |column|
|
||||
|
||||
@@ -38,6 +38,7 @@ class Enumeration < ActiveRecord::Base
|
||||
scope :shared, lambda { where(:project_id => nil) }
|
||||
scope :sorted, lambda { order("#{table_name}.position ASC") }
|
||||
scope :active, lambda { where(:active => true) }
|
||||
scope :system, lambda { where(:project_id => nil) }
|
||||
scope :named, lambda {|arg| where("LOWER(#{table_name}.name) = LOWER(?)", arg.to_s.strip)}
|
||||
|
||||
def self.default
|
||||
|
||||
@@ -854,15 +854,100 @@ class Issue < ActiveRecord::Base
|
||||
end
|
||||
|
||||
# Returns all the other issues that depend on the issue
|
||||
# The algorithm is a modified breadth first search (bfs)
|
||||
def all_dependent_issues(except=[])
|
||||
except << self
|
||||
# The found dependencies
|
||||
dependencies = []
|
||||
dependencies += relations_from.map(&:issue_to)
|
||||
dependencies += children unless leaf?
|
||||
dependencies << parent
|
||||
dependencies.compact!
|
||||
|
||||
# The visited flag for every node (issue) used by the breadth first search
|
||||
eNOT_DISCOVERED = 0 # The issue is "new" to the algorithm, it has not seen it before.
|
||||
|
||||
ePROCESS_ALL = 1 # The issue is added to the queue. Process both children and relations of
|
||||
# the issue when it is processed.
|
||||
|
||||
ePROCESS_RELATIONS_ONLY = 2 # The issue was added to the queue and will be output as dependent issue,
|
||||
# but its children will not be added to the queue when it is processed.
|
||||
|
||||
eRELATIONS_PROCESSED = 3 # The related issues, the parent issue and the issue itself have been added to
|
||||
# the queue, but its children have not been added.
|
||||
|
||||
ePROCESS_CHILDREN_ONLY = 4 # The relations and the parent of the issue have been added to the queue, but
|
||||
# the children still need to be processed.
|
||||
|
||||
eALL_PROCESSED = 5 # The issue and all its children, its parent and its related issues have been
|
||||
# added as dependent issues. It needs no further processing.
|
||||
|
||||
issue_status = Hash.new(eNOT_DISCOVERED)
|
||||
|
||||
# The queue
|
||||
queue = []
|
||||
|
||||
# Initialize the bfs, add start node (self) to the queue
|
||||
queue << self
|
||||
issue_status[self] = ePROCESS_ALL
|
||||
|
||||
while (!queue.empty?) do
|
||||
current_issue = queue.shift
|
||||
current_issue_status = issue_status[current_issue]
|
||||
dependencies << current_issue
|
||||
|
||||
# Add parent to queue, if not already in it.
|
||||
parent = current_issue.parent
|
||||
parent_status = issue_status[parent]
|
||||
|
||||
if parent && (parent_status == eNOT_DISCOVERED) && !except.include?(parent)
|
||||
queue << parent
|
||||
issue_status[parent] = ePROCESS_RELATIONS_ONLY
|
||||
end
|
||||
|
||||
# Add children to queue, but only if they are not already in it and
|
||||
# the children of the current node need to be processed.
|
||||
if (current_issue_status == ePROCESS_CHILDREN_ONLY || current_issue_status == ePROCESS_ALL)
|
||||
current_issue.children.each do |child|
|
||||
next if except.include?(child)
|
||||
|
||||
if (issue_status[child] == eNOT_DISCOVERED)
|
||||
queue << child
|
||||
issue_status[child] = ePROCESS_ALL
|
||||
elsif (issue_status[child] == eRELATIONS_PROCESSED)
|
||||
queue << child
|
||||
issue_status[child] = ePROCESS_CHILDREN_ONLY
|
||||
elsif (issue_status[child] == ePROCESS_RELATIONS_ONLY)
|
||||
queue << child
|
||||
issue_status[child] = ePROCESS_ALL
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# Add related issues to the queue, if they are not already in it.
|
||||
current_issue.relations_from.map(&:issue_to).each do |related_issue|
|
||||
next if except.include?(related_issue)
|
||||
|
||||
if (issue_status[related_issue] == eNOT_DISCOVERED)
|
||||
queue << related_issue
|
||||
issue_status[related_issue] = ePROCESS_ALL
|
||||
elsif (issue_status[related_issue] == eRELATIONS_PROCESSED)
|
||||
queue << related_issue
|
||||
issue_status[related_issue] = ePROCESS_CHILDREN_ONLY
|
||||
elsif (issue_status[related_issue] == ePROCESS_RELATIONS_ONLY)
|
||||
queue << related_issue
|
||||
issue_status[related_issue] = ePROCESS_ALL
|
||||
end
|
||||
end
|
||||
|
||||
# Set new status for current issue
|
||||
if (current_issue_status == ePROCESS_ALL) || (current_issue_status == ePROCESS_CHILDREN_ONLY)
|
||||
issue_status[current_issue] = eALL_PROCESSED
|
||||
elsif (current_issue_status == ePROCESS_RELATIONS_ONLY)
|
||||
issue_status[current_issue] = eRELATIONS_PROCESSED
|
||||
end
|
||||
end # while
|
||||
|
||||
# Remove the issues from the "except" parameter from the result array
|
||||
dependencies -= except
|
||||
dependencies + dependencies.map {|issue| issue.all_dependent_issues(except)}.flatten
|
||||
dependencies.delete(self)
|
||||
|
||||
dependencies
|
||||
end
|
||||
|
||||
# Returns an array of issues that duplicate this one
|
||||
|
||||
@@ -390,7 +390,7 @@ class Mailer < ActionMailer::Base
|
||||
|
||||
# Removes the author from the recipients and cc
|
||||
# if he doesn't want to receive notifications about what he does
|
||||
if @author && @author.logged? && @author.pref[:no_self_notified]
|
||||
if @author && @author.logged? && @author.pref.no_self_notified
|
||||
headers[:to].delete(@author.mail) if headers[:to].is_a?(Array)
|
||||
headers[:cc].delete(@author.mail) if headers[:cc].is_a?(Array)
|
||||
end
|
||||
|
||||
@@ -673,7 +673,7 @@ class Project < ActiveRecord::Base
|
||||
|
||||
# Returns an auto-generated project identifier based on the last identifier used
|
||||
def self.next_identifier
|
||||
p = Project.order('created_on DESC').first
|
||||
p = Project.order('id DESC').first
|
||||
p.nil? ? nil : p.identifier.to_s.succ
|
||||
end
|
||||
|
||||
@@ -840,6 +840,9 @@ class Project < ActiveRecord::Base
|
||||
new_issue = Issue.new
|
||||
new_issue.copy_from(issue, :subtasks => false, :link => false)
|
||||
new_issue.project = self
|
||||
# Changing project resets the custom field values
|
||||
# TODO: handle this in Issue#project=
|
||||
new_issue.custom_field_values = issue.custom_field_values.inject({}) {|h,v| h[v.custom_field_id] = v.value; h}
|
||||
# Reassign fixed_versions by name, since names are unique per project
|
||||
if issue.fixed_version && issue.fixed_version.project == project
|
||||
new_issue.fixed_version = self.versions.detect {|v| v.name == issue.fixed_version.name}
|
||||
|
||||
@@ -577,8 +577,11 @@ class Query < ActiveRecord::Base
|
||||
customized_class = queried_class.reflect_on_association(assoc.to_sym).klass.base_class rescue nil
|
||||
raise "Unknown #{queried_class.name} association #{assoc}" unless customized_class
|
||||
end
|
||||
"#{queried_table_name}.#{customized_key} #{not_in} IN (SELECT #{customized_class.table_name}.id FROM #{customized_class.table_name} LEFT OUTER JOIN #{db_table} ON #{db_table}.customized_type='#{customized_class}' AND #{db_table}.customized_id=#{customized_class.table_name}.id AND #{db_table}.custom_field_id=#{custom_field_id} WHERE " +
|
||||
sql_for_field(field, operator, value, db_table, db_field, true) + ')'
|
||||
where = sql_for_field(field, operator, value, db_table, db_field, true)
|
||||
if operator =~ /[<>]/
|
||||
where = "(#{where}) AND #{db_table}.#{db_field} <> ''"
|
||||
end
|
||||
"#{queried_table_name}.#{customized_key} #{not_in} IN (SELECT #{customized_class.table_name}.id FROM #{customized_class.table_name} LEFT OUTER JOIN #{db_table} ON #{db_table}.customized_type='#{customized_class}' AND #{db_table}.customized_id=#{customized_class.table_name}.id AND #{db_table}.custom_field_id=#{custom_field_id} WHERE #{where})"
|
||||
end
|
||||
|
||||
# Helper method to generate the WHERE sql for a +field+, +operator+ and a +value+
|
||||
|
||||
@@ -24,11 +24,15 @@ class TimeEntryActivity < Enumeration
|
||||
OptionName
|
||||
end
|
||||
|
||||
def objects
|
||||
TimeEntry.where(:activity_id => self_and_descendants(1).map(&:id))
|
||||
end
|
||||
|
||||
def objects_count
|
||||
time_entries.count
|
||||
objects.count
|
||||
end
|
||||
|
||||
def transfer_relations(to)
|
||||
time_entries.update_all("activity_id = #{to.id}")
|
||||
objects.update_all(:activity_id => to.id)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -56,4 +56,7 @@ class UserPreference < ActiveRecord::Base
|
||||
|
||||
def warn_on_leaving_unsaved; self[:warn_on_leaving_unsaved] || '1'; end
|
||||
def warn_on_leaving_unsaved=(value); self[:warn_on_leaving_unsaved]=value; end
|
||||
|
||||
def no_self_notified; (self[:no_self_notified] == true || self[:no_self_notified] == '1'); end
|
||||
def no_self_notified=(value); self[:no_self_notified]=value; end
|
||||
end
|
||||
|
||||
@@ -47,7 +47,8 @@ class Version < ActiveRecord::Base
|
||||
'wiki_page_title',
|
||||
'status',
|
||||
'sharing',
|
||||
'custom_field_values'
|
||||
'custom_field_values',
|
||||
'custom_fields'
|
||||
|
||||
# Returns true if +user+ or current user is allowed to view the version
|
||||
def visible?(user=User.current)
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<p><em><%=h @document.category.name %><br />
|
||||
<%= format_date @document.created_on %></em></p>
|
||||
<div class="wiki">
|
||||
<%= textilizable @document.description, :attachments => @document.attachments %>
|
||||
<%= textilizable @document, :description, :attachments => @document.attachments %>
|
||||
</div>
|
||||
|
||||
<h3><%= l(:label_attachment_plural) %></h3>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<div class="box">
|
||||
<p><strong><%= l(:text_enumeration_destroy_question, @enumeration.objects_count) %></strong></p>
|
||||
<p><label for='reassign_to_id'><%= l(:text_enumeration_category_reassign_to) %></label>
|
||||
<%= select_tag 'reassign_to_id', (content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---") + options_from_collection_for_select(@enumerations, 'id', 'name')) %></p>
|
||||
<%= select_tag 'reassign_to_id', (content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---", :value => '') + options_from_collection_for_select(@enumerations, 'id', 'name')) %></p>
|
||||
</div>
|
||||
|
||||
<%= submit_tag l(:button_apply) %>
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
<% if @journal.private_notes? %>
|
||||
(<%= l(:field_private_notes) %>)
|
||||
<% end %>
|
||||
<%= l(:text_issue_updated, :id => "##{@issue.id}", :author => h(@journal.user)) %>
|
||||
|
||||
<ul>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<%= l(:text_issue_updated, :id => "##{@issue.id}", :author => @journal.user) %>
|
||||
<%= "(#{l(:field_private_notes)}) " if @journal.private_notes? -%><%= l(:text_issue_updated, :id => "##{@issue.id}", :author => @journal.user) %>
|
||||
|
||||
<% details_to_strings(@journal.details, true).each do |string| -%>
|
||||
<%= string %>
|
||||
|
||||
@@ -3,7 +3,7 @@ var operatorLabels = <%= raw_json Query.operators_labels %>;
|
||||
var operatorByType = <%= raw_json Query.operators_by_filter_type %>;
|
||||
var availableFilters = <%= raw_json query.available_filters_as_json %>;
|
||||
var labelDayPlural = <%= raw_json l(:label_day_plural) %>;
|
||||
var allProjects = <%= raw query.all_projects_values.to_json %>;
|
||||
var allProjects = <%= raw_json query.all_projects_values %>;
|
||||
$(document).ready(function(){
|
||||
initFilters();
|
||||
<% query.filters.each do |field, options| %>
|
||||
|
||||
@@ -27,7 +27,8 @@
|
||||
|
||||
<div id="csv-export-options" style="display:none;">
|
||||
<h3 class="title"><%= l(:label_export_options, :export_format => 'CSV') %></h3>
|
||||
<%= form_tag(params.merge({:format => 'csv',:page=>nil}), :method => :get, :id => 'csv-export-form') do %>
|
||||
<%= form_tag(params.slice(:project_id, :issue_id).merge(:format => 'csv', :page=>nil), :method => :get, :id => 'csv-export-form') do %>
|
||||
<%= query_hidden_tags @query %>
|
||||
<p>
|
||||
<label><%= radio_button_tag 'columns', '', true %> <%= l(:description_selected_columns) %></label><br />
|
||||
<label><%= radio_button_tag 'columns', 'all' %> <%= l(:description_all_columns) %></label>
|
||||
|
||||
@@ -19,9 +19,10 @@
|
||||
end %>
|
||||
<p><em class="info"><%= l(:text_user_mail_option) %></em></p>
|
||||
<% end %>
|
||||
|
||||
<%= fields_for :pref, @user.pref do |pref_fields| %>
|
||||
<p>
|
||||
<label>
|
||||
<%= l(:label_user_mail_no_self_notified) %>
|
||||
<%= check_box_tag 'no_self_notified', 1, @user.pref[:no_self_notified] %>
|
||||
</label>
|
||||
<%= pref_fields.check_box :no_self_notified %>
|
||||
<label for="pref_no_self_notified"><%= l(:label_user_mail_no_self_notified) %></label>
|
||||
</p>
|
||||
<% end %>
|
||||
|
||||
@@ -50,8 +50,8 @@ ar:
|
||||
one: "حوالي ساعة"
|
||||
other: "ساعات %{count}حوالي "
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "%{count} ساعة"
|
||||
other: "%{count} ساعات"
|
||||
x_days:
|
||||
one: "يوم"
|
||||
other: "%{count} أيام"
|
||||
|
||||
@@ -109,8 +109,8 @@ az:
|
||||
many: "təxminən %{count} saat"
|
||||
other: "təxminən %{count} saat"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 saat"
|
||||
other: "%{count} saat"
|
||||
x_days:
|
||||
one: "%{count} gün"
|
||||
few: "%{count} gün"
|
||||
|
||||
@@ -51,8 +51,8 @@ bg:
|
||||
one: "около 1 час"
|
||||
other: "около %{count} часа"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 час"
|
||||
other: "%{count} часа"
|
||||
x_days:
|
||||
one: "1 ден"
|
||||
other: "%{count} дена"
|
||||
|
||||
@@ -49,8 +49,8 @@ bs:
|
||||
one: "oko 1 sahat"
|
||||
other: "oko %{count} sahata"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 sahat"
|
||||
other: "%{count} sahata"
|
||||
x_days:
|
||||
one: "1 dan"
|
||||
other: "%{count} dana"
|
||||
|
||||
@@ -53,8 +53,8 @@ ca:
|
||||
one: "aproximadament 1 hora"
|
||||
other: "aproximadament %{count} hores"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 hora"
|
||||
other: "%{count} hores"
|
||||
x_days:
|
||||
one: "1 dia"
|
||||
other: "%{count} dies"
|
||||
|
||||
@@ -55,8 +55,8 @@ cs:
|
||||
one: "asi 1 hodina"
|
||||
other: "asi %{count} hodin"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 hodina"
|
||||
other: "%{count} hodin"
|
||||
x_days:
|
||||
one: "1 den"
|
||||
other: "%{count} dnů"
|
||||
|
||||
@@ -52,8 +52,8 @@ da:
|
||||
one: "cirka en time"
|
||||
other: "cirka %{count} timer"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 time"
|
||||
other: "%{count} timer"
|
||||
x_days:
|
||||
one: "en dag"
|
||||
other: "%{count} dage"
|
||||
|
||||
@@ -53,8 +53,8 @@ de:
|
||||
one: 'etwa 1 Stunde'
|
||||
other: 'etwa %{count} Stunden'
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 Stunde"
|
||||
other: "%{count} Stunden"
|
||||
x_days:
|
||||
one: '1 Tag'
|
||||
other: '%{count} Tagen'
|
||||
|
||||
@@ -52,8 +52,8 @@ el:
|
||||
one: "περίπου 1 ώρα"
|
||||
other: "περίπου %{count} ώρες"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 ώρα"
|
||||
other: "%{count} ώρες"
|
||||
x_days:
|
||||
one: "1 ημέρα"
|
||||
other: "%{count} ημέρες"
|
||||
|
||||
@@ -80,8 +80,8 @@ es:
|
||||
one: "alrededor de 1 hora"
|
||||
other: "alrededor de %{count} horas"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 hora"
|
||||
other: "%{count} horas"
|
||||
x_days:
|
||||
one: "1 día"
|
||||
other: "%{count} días"
|
||||
|
||||
@@ -67,8 +67,8 @@ et:
|
||||
one: "umbes tund"
|
||||
other: "umbes %{count} tundi"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 tund"
|
||||
other: "%{count} tundi"
|
||||
x_days:
|
||||
one: "1 päev"
|
||||
other: "%{count} päeva"
|
||||
|
||||
@@ -53,8 +53,8 @@ eu:
|
||||
one: "ordu 1 inguru"
|
||||
other: "%{count} ordu inguru"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "ordu 1"
|
||||
other: "%{count} ordu"
|
||||
x_days:
|
||||
one: "egun 1"
|
||||
other: "%{count} egun"
|
||||
|
||||
@@ -50,8 +50,8 @@ fa:
|
||||
one: "نزدیک 1 ساعت"
|
||||
other: "نزدیک %{count} ساعت"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 ساعت"
|
||||
other: "%{count} ساعت"
|
||||
x_days:
|
||||
one: "1 روز"
|
||||
other: "%{count} روز"
|
||||
|
||||
@@ -95,8 +95,8 @@ fi:
|
||||
one: "noin tunti"
|
||||
other: "noin %{count} tuntia"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 tunti"
|
||||
other: "%{count} tuntia"
|
||||
x_days:
|
||||
one: "päivä"
|
||||
other: "%{count} päivää"
|
||||
|
||||
@@ -91,8 +91,8 @@ gl:
|
||||
one: 'aproximadamente unha hora'
|
||||
other: '%{count} horas'
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 hora"
|
||||
other: "%{count} horas"
|
||||
x_days:
|
||||
one: '1 día'
|
||||
other: '%{count} días'
|
||||
|
||||
@@ -56,8 +56,8 @@ he:
|
||||
one: 'בערך שעה אחת'
|
||||
other: 'בערך %{count} שעות'
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 שעה"
|
||||
other: "%{count} שעות"
|
||||
x_days:
|
||||
one: 'יום אחד'
|
||||
other: '%{count} ימים'
|
||||
|
||||
@@ -49,8 +49,8 @@ hr:
|
||||
one: "oko sat vremena"
|
||||
other: "oko %{count} sati"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 sata"
|
||||
other: "%{count} sati"
|
||||
x_days:
|
||||
one: "1 dan"
|
||||
other: "%{count} dana"
|
||||
|
||||
@@ -51,8 +51,8 @@
|
||||
one: 'csaknem 1 órája'
|
||||
other: 'csaknem %{count} órája'
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 óra"
|
||||
other: "%{count} óra"
|
||||
x_days:
|
||||
one: '1 napja'
|
||||
other: '%{count} napja'
|
||||
|
||||
@@ -47,8 +47,8 @@ id:
|
||||
one: "sekitar sejam"
|
||||
other: "sekitar %{count} jam"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 jam"
|
||||
other: "%{count} jam"
|
||||
x_days:
|
||||
one: "sehari"
|
||||
other: "%{count} hari"
|
||||
|
||||
@@ -55,8 +55,8 @@ it:
|
||||
one: "circa un'ora"
|
||||
other: "circa %{count} ore"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 ora"
|
||||
other: "%{count} ore"
|
||||
x_days:
|
||||
one: "1 giorno"
|
||||
other: "%{count} giorni"
|
||||
@@ -1001,90 +1001,87 @@ it:
|
||||
button_export: Esporta
|
||||
label_export_options: "%{export_format} opzioni per l'export"
|
||||
error_attachment_too_big: Questo file non può essere caricato in quanto la sua dimensione supera la massima consentita (%{max_size})
|
||||
notice_failed_to_save_time_entries: "Failed to save %{count} time entrie(s) on %{total} selected: %{ids}."
|
||||
notice_failed_to_save_time_entries: "Non ho potuto salvare %{count} registrazioni di tempo impiegato su %{total} selezionate: %{ids}."
|
||||
label_x_issues:
|
||||
zero: 0 segnalazione
|
||||
one: 1 segnalazione
|
||||
other: "%{count} segnalazioni"
|
||||
label_repository_new: New repository
|
||||
field_repository_is_default: Main repository
|
||||
label_copy_attachments: Copy attachments
|
||||
label_repository_new: Nuovo repository
|
||||
field_repository_is_default: Repository principale
|
||||
label_copy_attachments: Copia allegati
|
||||
label_item_position: "%{position}/%{count}"
|
||||
label_completed_versions: Completed versions
|
||||
text_project_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
|
||||
field_multiple: Multiple values
|
||||
text_project_identifier_info: Consentiti solo lettere minuscole (a-z), numeri, trattini e trattini bassi.<br />Una volta salvato, l'identificatore non può essere modificato.
|
||||
field_multiple: Valori multipli
|
||||
setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed
|
||||
text_issue_conflict_resolution_add_notes: Add my notes and discard my other changes
|
||||
text_issue_conflict_resolution_overwrite: Apply my changes anyway (previous notes will be kept but some changes may be overwritten)
|
||||
notice_issue_update_conflict: The issue has been updated by an other user while you were editing it.
|
||||
text_issue_conflict_resolution_cancel: Discard all my changes and redisplay %{link}
|
||||
permission_manage_related_issues: Manage related issues
|
||||
field_auth_source_ldap_filter: LDAP filter
|
||||
label_search_for_watchers: Search for watchers to add
|
||||
notice_account_deleted: Your account has been permanently deleted.
|
||||
setting_unsubscribe: Allow users to delete their own account
|
||||
button_delete_my_account: Delete my account
|
||||
text_account_destroy_confirmation: |-
|
||||
Are you sure you want to proceed?
|
||||
Your account will be permanently deleted, with no way to reactivate it.
|
||||
error_session_expired: Your session has expired. Please login again.
|
||||
text_session_expiration_settings: "Warning: changing these settings may expire the current sessions including yours."
|
||||
setting_session_lifetime: Session maximum lifetime
|
||||
setting_session_timeout: Session inactivity timeout
|
||||
label_session_expiration: Session expiration
|
||||
permission_close_project: Close / reopen the project
|
||||
label_show_closed_projects: View closed projects
|
||||
button_close: Close
|
||||
button_reopen: Reopen
|
||||
project_status_active: active
|
||||
project_status_closed: closed
|
||||
project_status_archived: archived
|
||||
text_project_closed: This project is closed and read-only.
|
||||
notice_user_successful_create: User %{id} created.
|
||||
field_core_fields: Standard fields
|
||||
field_timeout: Timeout (in seconds)
|
||||
setting_thumbnails_enabled: Display attachment thumbnails
|
||||
setting_thumbnails_size: Thumbnails size (in pixels)
|
||||
label_status_transitions: Status transitions
|
||||
label_fields_permissions: Fields permissions
|
||||
label_readonly: Read-only
|
||||
label_required: Required
|
||||
text_repository_identifier_info: Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.
|
||||
text_issue_conflict_resolution_add_notes: Aggiunge le mie note e non salvare le mie ulteriori modifiche
|
||||
text_issue_conflict_resolution_overwrite: Applica comunque le mie modifiche (le note precedenti verranno mantenute ma alcuni cambiamenti potrebbero essere sovrascritti)
|
||||
notice_issue_update_conflict: La segnalazione è stata aggiornata da un altro utente mentre la stavi editando.
|
||||
text_issue_conflict_resolution_cancel: Cancella ogni modifica e rivisualizza %{link}
|
||||
permission_manage_related_issues: Gestisci relative segnalazioni
|
||||
field_auth_source_ldap_filter: Filtro LDAP
|
||||
label_search_for_watchers: Cerca osservatori da aggiungere
|
||||
notice_account_deleted: Il tuo account sarà definitivamente rimosso.
|
||||
setting_unsubscribe: Consentire agli utenti di cancellare il proprio account
|
||||
button_delete_my_account: Cancella il mio account
|
||||
text_account_destroy_confirmation: "Sei sicuro di voler procedere?\nIl tuo account sarà definitivamente cancellato, senza alcuna possibilità di ripristino."
|
||||
error_session_expired: "La tua sessione è scaduta. Effettua nuovamente il login."
|
||||
text_session_expiration_settings: "Attenzione: la modifica di queste impostazioni può far scadere le sessioni correnti, compresa la tua."
|
||||
setting_session_lifetime: Massima durata di una sessione
|
||||
setting_session_timeout: Timeout di inattività di una sessione
|
||||
label_session_expiration: Scadenza sessione
|
||||
permission_close_project: Chiusura / riapertura progetto
|
||||
label_show_closed_projects: Vedi progetti chiusi
|
||||
button_close: Chiudi
|
||||
button_reopen: Riapri
|
||||
project_status_active: attivo
|
||||
project_status_closed: chiuso
|
||||
project_status_archived: archiviato
|
||||
text_project_closed: Questo progetto è chiuso e in sola lettura.
|
||||
notice_user_successful_create: Creato utente %{id}.
|
||||
field_core_fields: Campi standard
|
||||
field_timeout: Timeout (in secondi)
|
||||
setting_thumbnails_enabled: Mostra miniature degli allegati
|
||||
setting_thumbnails_size: Dimensioni delle miniature (in pixels)
|
||||
label_status_transitions: Transizioni di stato
|
||||
label_fields_permissions: Permessi sui campi
|
||||
label_readonly: Sola lettura
|
||||
label_required: Richiesto
|
||||
text_repository_identifier_info: Consentiti solo lettere minuscole (a-z), numeri, trattini e trattini bassi.<br />Una volta salvato, ll'identificatore non può essere modificato.
|
||||
field_board_parent: Parent forum
|
||||
label_attribute_of_project: Project's %{name}
|
||||
label_attribute_of_author: Author's %{name}
|
||||
label_attribute_of_assigned_to: Assignee's %{name}
|
||||
label_attribute_of_assigned_to: Assegnatari %{name}
|
||||
label_attribute_of_fixed_version: Target version's %{name}
|
||||
label_copy_subtasks: Copy subtasks
|
||||
label_copied_to: copied to
|
||||
label_copied_from: copied from
|
||||
label_any_issues_in_project: any issues in project
|
||||
label_any_issues_not_in_project: any issues not in project
|
||||
field_private_notes: Private notes
|
||||
permission_view_private_notes: View private notes
|
||||
permission_set_notes_private: Set notes as private
|
||||
label_no_issues_in_project: no issues in project
|
||||
label_copy_subtasks: Copia sottoattività
|
||||
label_copied_to: copia a
|
||||
label_copied_from: copia da
|
||||
label_any_issues_in_project: ogni segnalazione del progetto
|
||||
label_any_issues_not_in_project: ogni segnalazione non nel progetto
|
||||
field_private_notes: Note private
|
||||
permission_view_private_notes: Visualizza note private
|
||||
permission_set_notes_private: Imposta note come private
|
||||
label_no_issues_in_project: progetto privo di segnalazioni
|
||||
label_any: tutti
|
||||
label_last_n_weeks: last %{count} weeks
|
||||
setting_cross_project_subtasks: Allow cross-project subtasks
|
||||
label_last_n_weeks: ultime %{count} settimane
|
||||
setting_cross_project_subtasks: Consenti sottoattività cross-project
|
||||
label_cross_project_descendants: Con sottoprogetti
|
||||
label_cross_project_tree: Con progetto padre
|
||||
label_cross_project_hierarchy: Con gerarchia progetto
|
||||
label_cross_project_system: Con tutti i progetti
|
||||
button_hide: Hide
|
||||
setting_non_working_week_days: Non-working days
|
||||
label_in_the_next_days: in the next
|
||||
label_in_the_past_days: in the past
|
||||
label_attribute_of_user: User's %{name}
|
||||
text_turning_multiple_off: If you disable multiple values, multiple values will be
|
||||
removed in order to preserve only one value per item.
|
||||
label_attribute_of_issue: Issue's %{name}
|
||||
permission_add_documents: Add documents
|
||||
permission_edit_documents: Edit documents
|
||||
permission_delete_documents: Delete documents
|
||||
button_hide: Nascondi
|
||||
setting_non_working_week_days: Giorni non lavorativi
|
||||
label_in_the_next_days: nei prossimi
|
||||
label_in_the_past_days: nei passati
|
||||
label_attribute_of_user: Utente %{name}
|
||||
text_turning_multiple_off: Disabilitando valori multipli, i valori multipli verranno rimossi, in modo da mantenere un solo valore per item.
|
||||
label_attribute_of_issue: Segnalazione %{name}
|
||||
permission_add_documents: Aggiungi documenti
|
||||
permission_edit_documents: Edita documenti
|
||||
permission_delete_documents: Cancella documenti
|
||||
label_gantt_progress_line: Progress line
|
||||
setting_jsonp_enabled: Enable JSONP support
|
||||
field_inherit_members: Inherit members
|
||||
field_closed_on: Closed
|
||||
setting_default_projects_tracker_ids: Default trackers for new projects
|
||||
setting_jsonp_enabled: Abilita supporto a JSONP
|
||||
field_inherit_members: Eredita membri
|
||||
field_closed_on: Chiuso
|
||||
setting_default_projects_tracker_ids: Trackers di default per nuovi progetti
|
||||
label_total_time: Totale
|
||||
|
||||
@@ -50,8 +50,8 @@ ko:
|
||||
one: "약 한시간"
|
||||
other: "약 %{count}시간"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 시간"
|
||||
other: "%{count} 시간"
|
||||
x_days:
|
||||
one: "하루"
|
||||
other: "%{count}일"
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
# Lithuanian translations for Ruby on Rails
|
||||
# by Laurynas Butkus (laurynas.butkus@gmail.com)
|
||||
# Redmine translation by Gediminas Muižis gediminas.muizis@gmail.com
|
||||
# and Sergej Jegorov sergej.jegorov@gmail.com
|
||||
# and Gytis Gurklys gytis.gurklys@gmail.com
|
||||
# and Sergej Jegorov sergej.jegorov@gmail.com
|
||||
# and Gytis Gurklys gytis.gurklys@gmail.com
|
||||
# and Andrius Kriučkovas andrius.kriuckovas@gmail.com
|
||||
|
||||
lt:
|
||||
direction: ltr
|
||||
date:
|
||||
@@ -228,8 +230,8 @@ lt:
|
||||
notice_default_data_loaded: Numatytoji konfiguracija sėkmingai užkrauta.
|
||||
notice_unable_delete_version: Neįmanoma panaikinti versiją.
|
||||
notice_unable_delete_time_entry: Neįmano ištrinti laiko žurnalo įrašą.
|
||||
notice_issue_done_ratios_updated: Issue done ratios updated.
|
||||
notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})
|
||||
notice_issue_done_ratios_updated: Problemos baigtumo rodikliai atnaujinti.
|
||||
notice_gantt_chart_truncated: Grafikas buvo sutrumpintas, kadangi jis viršija maksimalų (%{max}) leistinų atvaizduoti elementų kiekį
|
||||
notice_issue_successful_create: Darbas %{id} sukurtas.
|
||||
|
||||
error_can_t_load_default_data: "Numatytoji konfiguracija negali būti užkrauta: %{value}"
|
||||
@@ -241,16 +243,16 @@ lt:
|
||||
error_no_tracker_in_project: 'Joks pėdsekys nesusietas su šiuo projektu. Prašom patikrinti Projekto nustatymus.'
|
||||
error_no_default_issue_status: Nenustatyta numatytoji darbų būsena. Prašome patikrinti konfigūravimą ("Administravimas -> Darbų būsenos").
|
||||
error_can_not_delete_custom_field: Negalima ištrinti kliento lauko
|
||||
error_can_not_delete_tracker: "This tracker contains issues and cannot be deleted."
|
||||
error_can_not_remove_role: "This role is in use and cannot be deleted."
|
||||
error_can_not_delete_tracker: "Šis pėdsekys turi įrašus ir todėl negali būti ištrintas."
|
||||
error_can_not_remove_role: "Ši rolė yra naudojama ir negali būti ištrinta."
|
||||
error_can_not_reopen_issue_on_closed_version: Uždarytai versijai priskirtas darbas negali būti atnaujintas.
|
||||
error_can_not_archive_project: Šio projekto negalima suarchyvuoti
|
||||
error_issue_done_ratios_not_updated: "Issue done ratios not updated."
|
||||
error_workflow_copy_source: 'Please select a source tracker or role'
|
||||
error_workflow_copy_target: 'Please select target tracker(s) and role(s)'
|
||||
error_issue_done_ratios_not_updated: "Įrašo baigtumo rodikliai nebuvo atnaujinti. "
|
||||
error_workflow_copy_source: 'Prašome pasirinkti pirminį šaltinio seklį arba rolę'
|
||||
error_workflow_copy_target: 'Prašome pasirinkti galutinį paskirties seklį(-ius) arba rolę(-s)'
|
||||
error_unable_delete_issue_status: 'Negalima ištrinti darbo statuso'
|
||||
error_unable_to_connect: Negalima prisijungti (%{value})
|
||||
error_attachment_too_big: "This file cannot be uploaded because it exceeds the maximum allowed file size (%{max_size})"
|
||||
error_attachment_too_big: "Ši byla negali būti įkelta, nes viršija maksimalią (%{max_size}) leistiną bylos apimtį"
|
||||
warning_attachments_not_saved: "%{count} byla(ų) negali būti išsaugota."
|
||||
|
||||
mail_subject_lost_password: "Jūsų %{value} slaptažodis"
|
||||
@@ -431,7 +433,7 @@ lt:
|
||||
setting_cache_formatted_text: Paslėpti formatuotą tekstą
|
||||
setting_default_notification_option: Numatytosios pranešimų nuostatos
|
||||
setting_commit_logtime_enabled: Įjungti laiko registravimą
|
||||
setting_commit_logtime_activity_id: Activity for logged time
|
||||
setting_commit_logtime_activity_id: Laiko įrašų veikla
|
||||
setting_gantt_items_limit: Maksimalus rodmenų skaičius rodomas Gantt'o grafike
|
||||
setting_issue_group_assignment: Leisti darbo priskirimą grupėms
|
||||
setting_default_issue_start_date_to_creation_date: Naudoti dabartinę datą kaip naujų darbų pradžios datą
|
||||
@@ -877,8 +879,8 @@ lt:
|
||||
label_issues_visibility_public: Visi vieši darbai
|
||||
label_issues_visibility_own: Darbai, sukurti vartotojo arba jam priskirti
|
||||
label_git_report_last_commit: Nurodyti paskutinį failų ir katalogų pakeitimą
|
||||
label_parent_revision: Parent
|
||||
label_child_revision: Child
|
||||
label_parent_revision: Pirminė revizija
|
||||
label_child_revision: Sekanti revizija
|
||||
label_export_options: "%{export_format} eksportavimo nustatymai"
|
||||
|
||||
button_login: Registruotis
|
||||
@@ -991,20 +993,19 @@ lt:
|
||||
text_enumeration_destroy_question: "%{count} objektai(ų) priskirti šiai reikšmei."
|
||||
text_enumeration_category_reassign_to: 'Priskirti juos šiai reikšmei:'
|
||||
text_email_delivery_not_configured: "El.pašto siuntimas nesukonfigūruotas, ir perspėjimai neaktyvus.\nSukonfigūruokite savo SMTP serverį byloje config/configuration.yml ir perleiskite programą norėdami pritaikyti pakeitimus."
|
||||
text_repository_usernames_mapping: "Select or update the Redmine user mapped to each username found in the repository log.\nUsers with the same Redmine and repository username or email are automatically mapped."
|
||||
text_repository_usernames_mapping: "Parinkite ar atnaujinkite Redmine vartotoją, kuris paminėtas saugyklos log'e.\nVartotojai, turintys tą patį Redmine ir saugyklos vardą ar el.paštą yra automatiškai surišti."
|
||||
text_diff_truncated: "... Šis diff'as nukarpytas, nes jis viršijo maksimalų rodomų eilučių skaičių."
|
||||
text_custom_field_possible_values_info: 'Po vieną eilutę kiekvienai reikšmei'
|
||||
text_wiki_page_destroy_question: "This page has %{descendants} child page(s) and descendant(s). What do you want to do?"
|
||||
text_wiki_page_destroy_question: "Šis puslapis turi %{descendants} susijusių arba išvestinių puslapių. Ką norėtumėte daryti?"
|
||||
text_wiki_page_nullify_children: Laikyti child puslapius kaip pagrindinius puslapius
|
||||
text_wiki_page_destroy_children: "Pašalinti child puslapius ir jų palikuonis"
|
||||
text_wiki_page_reassign_children: "Priskirkite iš naujo 'child' puslapius šiam pagrindiniam puslapiui"
|
||||
text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?"
|
||||
text_own_membership_delete_confirmation: "Jūs esate pasiruošęs panaikinti dalį arba visus leidimus ir po šio pakeitimo galite prarasti šio projekto redagavimo galimybę. \n Ar jūs esate įsitikinęs ir tęsti?"
|
||||
text_zoom_in: Priartinti
|
||||
text_zoom_out: Nutolinti
|
||||
text_warn_on_leaving_unsaved: "Dabartinis puslapis turi neišsaugoto teksto, kuris bus prarastas, jeigu paliksite šį puslapį."
|
||||
text_scm_path_encoding_note: "Numatytasis: UTF-8"
|
||||
text_git_repository_note: Repository is bare and local (e.g. /gitrepo, c:\gitrepo)
|
||||
text_git_repository_note: Saugykla (repository) yra plika ir vietinė (pvz. /gitrepo, c:\gitrepo)
|
||||
text_mercurial_repository_note: Vietinė saugykla (e.g. /hgrepo, c:\hgrepo)
|
||||
text_scm_command: Komanda
|
||||
text_scm_command_version: Versija
|
||||
@@ -1069,7 +1070,7 @@ lt:
|
||||
label_completed_versions: Užbaigtos versijos
|
||||
text_project_identifier_info: Leidžiamos tik mažosios raidės (a-z), skaitmenys, brūkšneliai ir pabraukimo simboliai.<br />Kartą išsaugojus pakeitimai negalimi
|
||||
field_multiple: Keletas reikšmių
|
||||
setting_commit_cross_project_ref: Allow issues of all the other projects to be referenced and fixed
|
||||
setting_commit_cross_project_ref: Leisti visų kitų projektų įrašus susieti nuorodomis ir sutaisyti
|
||||
text_issue_conflict_resolution_add_notes: Išsaugoti mano žinutę ir atmesti likusius mano pataisymus
|
||||
text_issue_conflict_resolution_overwrite: Išsaugoti mano pakeitimus (ankstesnių pakeitimų žinutės bus išsaugotos, tačiau kai kurie pakeitimai bus perrašyti)
|
||||
notice_issue_update_conflict: Darbas buvo pakoreguotas kito vartotojo kol jūs atlikote pakeitimus.
|
||||
@@ -1131,18 +1132,17 @@ lt:
|
||||
setting_non_working_week_days: Nedarbo dienos
|
||||
label_in_the_next_days: per ateinančias
|
||||
label_in_the_past_days: per paskutines
|
||||
label_attribute_of_user: User's %{name}
|
||||
text_turning_multiple_off: If you disable multiple values, multiple values will be
|
||||
removed in order to preserve only one value per item.
|
||||
label_attribute_of_issue: Issue's %{name}
|
||||
permission_add_documents: Add documents
|
||||
permission_edit_documents: Edit documents
|
||||
permission_delete_documents: Delete documents
|
||||
label_gantt_progress_line: Progress line
|
||||
setting_jsonp_enabled: Enable JSONP support
|
||||
field_inherit_members: Inherit members
|
||||
field_closed_on: Closed
|
||||
setting_default_projects_tracker_ids: Default trackers for new projects
|
||||
label_attribute_of_user: Vartotojo %{name}
|
||||
text_turning_multiple_off: Jei jūs išjungsite kelių reikšmių pasirinkimą, visos išvardintos reikšmės bus pašalintos ir palikta tik viena reikšmė kiekvienam laukui.
|
||||
label_attribute_of_issue: Įrašai %{name}
|
||||
permission_add_documents: Pridėti dokumentus
|
||||
permission_edit_documents: Redaguoti dokumentus
|
||||
permission_delete_documents: Trinti dokumentus
|
||||
label_gantt_progress_line: Progreso linija
|
||||
setting_jsonp_enabled: Įgalinti JSONP palaikymą
|
||||
field_inherit_members: Paveldėti narius
|
||||
field_closed_on: Uždarytas
|
||||
setting_default_projects_tracker_ids: Sekliai pagal nutylėjimą naujiems projektams
|
||||
label_total_time: Iš viso
|
||||
text_scm_config: You can configure your SCM commands in config/configuration.yml. Please restart the application after editing it.
|
||||
text_scm_command_not_available: SCM command is not available. Please check settings on the administration panel.
|
||||
text_scm_config: Jūs galite pakeisti SCM komandas byloje config/configuration.yml. Prašome perkrauti programą po redagavimo, idant įgalinti pakeitimus.
|
||||
text_scm_command_not_available: SCM komanda nepasiekiama. Patikrinkite administravimo skydelio nustatymus.
|
||||
|
||||
@@ -46,8 +46,8 @@ lv:
|
||||
one: "aptuveni 1 stunda"
|
||||
other: "aptuveni %{count} stundas"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 stunda"
|
||||
other: "%{count} stundas"
|
||||
x_days:
|
||||
one: "1 diena"
|
||||
other: "%{count} dienas"
|
||||
@@ -775,7 +775,7 @@ lv:
|
||||
button_cancel: Atcelt
|
||||
button_activate: Aktivizēt
|
||||
button_sort: Kārtot
|
||||
button_log_time: Ilgs laiks
|
||||
button_log_time: Reģistrēt laiku
|
||||
button_rollback: Atjaunot uz šo versiju
|
||||
button_watch: Vērot
|
||||
button_unwatch: Nevērot
|
||||
|
||||
@@ -50,8 +50,8 @@ mk:
|
||||
one: "околу 1 час"
|
||||
other: "околу %{count} часа"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 час"
|
||||
other: "%{count} часа"
|
||||
x_days:
|
||||
one: "1 ден"
|
||||
other: "%{count} дена"
|
||||
|
||||
@@ -51,8 +51,8 @@ mn:
|
||||
one: "1 цаг орчим"
|
||||
other: "ойролцоогоор %{count} цаг"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 цаг"
|
||||
other: "%{count} цаг"
|
||||
x_days:
|
||||
one: "1 өдөр"
|
||||
other: "%{count} өдөр"
|
||||
|
||||
@@ -50,7 +50,7 @@ nl:
|
||||
other: "ongeveer %{count} uren"
|
||||
x_hours:
|
||||
one: "1 uur"
|
||||
other: "%{count} hours"
|
||||
other: "%{count} uren"
|
||||
x_days:
|
||||
one: "1 dag"
|
||||
other: "%{count} dagen"
|
||||
@@ -343,9 +343,9 @@ nl:
|
||||
one: 1 open
|
||||
other: "%{count} open"
|
||||
label_x_closed_issues_abbr:
|
||||
zero: 0 closed
|
||||
one: 1 closed
|
||||
other: "%{count} closed"
|
||||
zero: 0 gesloten
|
||||
one: 1 gesloten
|
||||
other: "%{count} gesloten"
|
||||
label_comment: Commentaar
|
||||
label_comment_add: Voeg commentaar toe
|
||||
label_comment_added: Commentaar toegevoegd
|
||||
@@ -1022,7 +1022,7 @@ nl:
|
||||
text_project_closed: Dit project is gesloten en op alleen-lezen
|
||||
notice_user_successful_create: Gebruiker %{id} aangemaakt.
|
||||
field_core_fields: Standaard verleden
|
||||
field_timeout: Timeout (in seconds)
|
||||
field_timeout: Timeout (in seconden)
|
||||
setting_thumbnails_enabled: Geef bijlage miniaturen weer
|
||||
setting_thumbnails_size: Grootte miniaturen (in pixels)
|
||||
label_status_transitions: Status transitie
|
||||
@@ -1036,36 +1036,35 @@ nl:
|
||||
label_attribute_of_assigned_to: Toegewezen %{name}
|
||||
label_attribute_of_fixed_version: Target versions %{name}
|
||||
label_copy_subtasks: Kopieer subtaken
|
||||
label_copied_to: copied to
|
||||
label_copied_from: copied from
|
||||
label_copied_to: gekopieerd naar
|
||||
label_copied_from: gekopieerd van
|
||||
label_any_issues_in_project: any issues in project
|
||||
label_any_issues_not_in_project: any issues not in project
|
||||
field_private_notes: Private notes
|
||||
permission_view_private_notes: View private notes
|
||||
permission_set_notes_private: Set notes as private
|
||||
label_no_issues_in_project: no issues in project
|
||||
field_private_notes: Privé notities
|
||||
permission_view_private_notes: Bekijk privé notities
|
||||
permission_set_notes_private: Maak notities privé
|
||||
label_no_issues_in_project: geen issues in project
|
||||
label_any: alle
|
||||
label_last_n_weeks: last %{count} weeks
|
||||
setting_cross_project_subtasks: Allow cross-project subtasks
|
||||
label_last_n_weeks: afgelopen %{count} weken
|
||||
setting_cross_project_subtasks: Sta subtaken in andere projecten toe
|
||||
label_cross_project_descendants: Met subprojecten
|
||||
label_cross_project_tree: Met project boom
|
||||
label_cross_project_hierarchy: Met project hiërarchie
|
||||
label_cross_project_system: Met alle projecten
|
||||
button_hide: Hide
|
||||
setting_non_working_week_days: Non-working days
|
||||
label_in_the_next_days: in the next
|
||||
label_in_the_past_days: in the past
|
||||
button_hide: Verberg
|
||||
setting_non_working_week_days: Niet-werkdagen
|
||||
label_in_the_next_days: in de volgende
|
||||
label_in_the_past_days: in de afgelopen
|
||||
label_attribute_of_user: User's %{name}
|
||||
text_turning_multiple_off: If you disable multiple values, multiple values will be
|
||||
removed in order to preserve only one value per item.
|
||||
text_turning_multiple_off: Bij het uitschakelen van meerdere waardes zal er maar een waarde bewaard blijven.
|
||||
label_attribute_of_issue: Issue's %{name}
|
||||
permission_add_documents: Add documents
|
||||
permission_edit_documents: Edit documents
|
||||
permission_delete_documents: Delete documents
|
||||
label_gantt_progress_line: Progress line
|
||||
setting_jsonp_enabled: Enable JSONP support
|
||||
field_inherit_members: Inherit members
|
||||
field_closed_on: Closed
|
||||
setting_default_projects_tracker_ids: Default trackers for new projects
|
||||
permission_add_documents: Voeg documenten toe
|
||||
permission_edit_documents: Bewerk documenten
|
||||
permission_delete_documents: Verwijder documenten
|
||||
label_gantt_progress_line: Voortgangslijn
|
||||
setting_jsonp_enabled: Schakel JSONP support in
|
||||
field_inherit_members: Neem leden over
|
||||
field_closed_on: Gesloten
|
||||
setting_default_projects_tracker_ids: Standaard trackers voor nieuwe projecten
|
||||
label_total_time: Totaal
|
||||
setting_emails_header: Email header
|
||||
|
||||
@@ -44,8 +44,8 @@
|
||||
one: "rundt 1 time"
|
||||
other: "rundt %{count} timer"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 time"
|
||||
other: "%{count} timer"
|
||||
x_days:
|
||||
one: "1 dag"
|
||||
other: "%{count} dager"
|
||||
|
||||
@@ -82,8 +82,8 @@ pl:
|
||||
one: "około godziny"
|
||||
other: "około %{count} godzin"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 godzina"
|
||||
other: "%{count} godzin"
|
||||
x_days:
|
||||
one: "1 dzień"
|
||||
other: "%{count} dni"
|
||||
@@ -772,7 +772,7 @@ pl:
|
||||
text_default_administrator_account_changed: Zmieniono domyślne hasło administratora
|
||||
text_destroy_time_entries: Usuń wpisy dziennika
|
||||
text_destroy_time_entries_question: Przepracowano %{hours} godzin przy zagadnieniu, które chcesz usunąć. Co chcesz zrobić?
|
||||
text_email_delivery_not_configured: "Dostarczanie poczty elektronicznej nie zostało skonfigurowane, więc powiadamianie jest nieaktywne.\nSkonfiguruj serwer SMTP w config/email.yml a następnie zrestartuj aplikację i uaktywnij to."
|
||||
text_email_delivery_not_configured: "Dostarczanie poczty elektronicznej nie zostało skonfigurowane, więc powiadamianie jest nieaktywne.\nSkonfiguruj serwer SMTP w config/configuration.yml a następnie zrestartuj aplikację i uaktywnij to."
|
||||
text_enumeration_category_reassign_to: 'Zmień przypisanie na tą wartość:'
|
||||
text_enumeration_destroy_question: "%{count} obiektów jest przypisanych do tej wartości."
|
||||
text_file_repository_writable: Zapisywalne repozytorium plików
|
||||
|
||||
@@ -1105,5 +1105,5 @@ pt-BR:
|
||||
setting_jsonp_enabled: Ativar suporte JSONP
|
||||
field_inherit_members: Herdar membros
|
||||
field_closed_on: Fechado
|
||||
setting_default_projects_tracker_ids: Default trackers for new projects
|
||||
setting_default_projects_tracker_ids: Tipos padrões para novos projeto
|
||||
label_total_time: Total
|
||||
|
||||
@@ -45,8 +45,8 @@ ro:
|
||||
one: "aproximativ o oră"
|
||||
other: "aproximativ %{count} ore"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 oră"
|
||||
other: "%{count} ore"
|
||||
x_days:
|
||||
one: "o zi"
|
||||
other: "%{count} zile"
|
||||
|
||||
@@ -46,8 +46,8 @@ sk:
|
||||
one: "okolo 1 hodiny"
|
||||
other: "okolo %{count} hodín"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 hodina"
|
||||
other: "%{count} hodín"
|
||||
x_days:
|
||||
one: "1 deň"
|
||||
other: "%{count} dní"
|
||||
|
||||
@@ -50,8 +50,8 @@ sl:
|
||||
one: "okrog 1. ure"
|
||||
other: "okrog %{count} ur"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 ura"
|
||||
other: "%{count} ur"
|
||||
x_days:
|
||||
one: "1 dan"
|
||||
other: "%{count} dni"
|
||||
|
||||
@@ -50,8 +50,8 @@ sq:
|
||||
one: "about 1 hour"
|
||||
other: "about %{count} hours"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 ore"
|
||||
other: "%{count} ore"
|
||||
x_days:
|
||||
one: "1 day"
|
||||
other: "%{count} days"
|
||||
|
||||
@@ -53,8 +53,8 @@ sr-YU:
|
||||
one: "približno jedan sat"
|
||||
other: "približno %{count} sati"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 sat"
|
||||
other: "%{count} sati"
|
||||
x_days:
|
||||
one: "jedan dan"
|
||||
other: "%{count} dana"
|
||||
|
||||
@@ -51,8 +51,8 @@ sr:
|
||||
one: "приближно један сат"
|
||||
other: "приближно %{count} сати"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 сат"
|
||||
other: "%{count} сати"
|
||||
x_days:
|
||||
one: "један дан"
|
||||
other: "%{count} дана"
|
||||
|
||||
@@ -272,6 +272,7 @@ sv:
|
||||
field_author: Författare
|
||||
field_created_on: Skapad
|
||||
field_updated_on: Uppdaterad
|
||||
field_closed_on: Stängd
|
||||
field_field_format: Format
|
||||
field_is_for_all: För alla projekt
|
||||
field_possible_values: Möjliga värden
|
||||
@@ -372,6 +373,7 @@ sv:
|
||||
field_timeout: "Timeout (i sekunder)"
|
||||
field_board_parent: Förälderforum
|
||||
field_private_notes: Privata anteckningar
|
||||
field_inherit_members: Ärv medlemmar
|
||||
|
||||
setting_app_title: Applikationsrubrik
|
||||
setting_app_subtitle: Applikationsunderrubrik
|
||||
@@ -440,6 +442,8 @@ sv:
|
||||
setting_thumbnails_enabled: Visa miniatyrbilder av bilagor
|
||||
setting_thumbnails_size: Storlek på miniatyrbilder (i pixlar)
|
||||
setting_non_working_week_days: Lediga dagar
|
||||
setting_jsonp_enabled: Aktivera JSONP-stöd
|
||||
setting_default_projects_tracker_ids: Standardärendetyper för nya projekt
|
||||
|
||||
permission_add_project: Skapa projekt
|
||||
permission_add_subprojects: Skapa underprojekt
|
||||
@@ -657,6 +661,7 @@ sv:
|
||||
one: 1 ärende
|
||||
other: "%{count} ärenden"
|
||||
label_total: Total
|
||||
label_total_time: Total tid
|
||||
label_permissions: Behörigheter
|
||||
label_current_status: Nuvarande status
|
||||
label_new_statuses_allowed: Nya tillåtna statusvärden
|
||||
@@ -1120,8 +1125,3 @@ sv:
|
||||
description_date_from: Ange startdatum
|
||||
description_date_to: Ange slutdatum
|
||||
text_repository_identifier_info: 'Endast gemener (a-z), siffror, streck och understreck är tillåtna.<br />När identifieraren sparats kan den inte ändras.'
|
||||
setting_jsonp_enabled: Enable JSONP support
|
||||
field_inherit_members: Inherit members
|
||||
field_closed_on: Closed
|
||||
setting_default_projects_tracker_ids: Default trackers for new projects
|
||||
label_total_time: Total
|
||||
|
||||
@@ -56,8 +56,8 @@ tr:
|
||||
one: 'yaklaşık 1 saat'
|
||||
other: 'yaklaşık %{count} saat'
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 saat"
|
||||
other: "%{count} saat"
|
||||
x_days:
|
||||
one: '1 gün'
|
||||
other: '%{count} gün'
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
"zh-TW":
|
||||
direction: ltr
|
||||
jquery:
|
||||
locale: "zh-TW"
|
||||
date:
|
||||
formats:
|
||||
# Use the strftime parameters for formats.
|
||||
@@ -121,8 +123,8 @@
|
||||
one: "約 1 小時"
|
||||
other: "約 %{count} 小時"
|
||||
x_hours:
|
||||
one: "1 hour"
|
||||
other: "%{count} hours"
|
||||
one: "1 小時"
|
||||
other: "%{count} 小時"
|
||||
x_days:
|
||||
one: "1 天"
|
||||
other: "%{count} 天"
|
||||
@@ -483,6 +485,7 @@
|
||||
setting_thumbnails_size: "縮圖大小 (單位: 像素 pixels)"
|
||||
setting_non_working_week_days: 非工作日
|
||||
setting_jsonp_enabled: 啟用 JSONP 支援
|
||||
setting_default_projects_tracker_ids: 新專案預設使用的追蹤標籤
|
||||
|
||||
permission_add_project: 建立專案
|
||||
permission_add_subprojects: 建立子專案
|
||||
@@ -1165,5 +1168,4 @@
|
||||
description_date_from: 輸入起始日期
|
||||
description_date_to: 輸入結束日期
|
||||
text_repository_identifier_info: '僅允許使用小寫英文字母 (a-z), 阿拉伯數字, 虛線與底線。<br />一旦儲存之後, 代碼便無法再次被更改。'
|
||||
setting_default_projects_tracker_ids: Default trackers for new projects
|
||||
label_total_time: 總計
|
||||
|
||||
@@ -99,9 +99,11 @@ RedmineApp::Application.routes.draw do
|
||||
match 'copy', :via => [:get, :post]
|
||||
end
|
||||
|
||||
resources :memberships, :shallow => true, :controller => 'members', :only => [:index, :show, :new, :create, :update, :destroy] do
|
||||
collection do
|
||||
get 'autocomplete'
|
||||
shallow do
|
||||
resources :memberships, :controller => 'members', :only => [:index, :show, :new, :create, :update, :destroy] do
|
||||
collection do
|
||||
get 'autocomplete'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -134,15 +136,19 @@ RedmineApp::Application.routes.draw do
|
||||
get 'report', :on => :collection
|
||||
end
|
||||
resources :queries, :only => [:new, :create]
|
||||
resources :issue_categories, :shallow => true
|
||||
shallow do
|
||||
resources :issue_categories
|
||||
end
|
||||
resources :documents, :except => [:show, :edit, :update, :destroy]
|
||||
resources :boards
|
||||
resources :repositories, :shallow => true, :except => [:index, :show] do
|
||||
member do
|
||||
match 'committers', :via => [:get, :post]
|
||||
shallow do
|
||||
resources :repositories, :except => [:index, :show] do
|
||||
member do
|
||||
match 'committers', :via => [:get, :post]
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
match 'wiki/index', :controller => 'wiki', :action => 'index', :via => :get
|
||||
resources :wiki, :except => [:index, :new, :create], :as => 'wiki_page' do
|
||||
member do
|
||||
@@ -176,7 +182,9 @@ RedmineApp::Application.routes.draw do
|
||||
get 'report'
|
||||
end
|
||||
end
|
||||
resources :relations, :shallow => true, :controller => 'issue_relations', :only => [:index, :show, :create, :destroy]
|
||||
shallow do
|
||||
resources :relations, :controller => 'issue_relations', :only => [:index, :show, :create, :destroy]
|
||||
end
|
||||
end
|
||||
match '/issues', :controller => 'issues', :action => 'destroy', :via => :delete
|
||||
|
||||
|
||||
@@ -4,6 +4,53 @@ Redmine - project management software
|
||||
Copyright (C) 2006-2013 Jean-Philippe Lang
|
||||
http://www.redmine.org/
|
||||
|
||||
== 2013-07-14 v2.3.2
|
||||
|
||||
* Defect #9996: configuration.yml in documentation , but redmine ask me to create email.yml
|
||||
* Defect #13692: warning: already initialized constant on Ruby 1.8.7
|
||||
* Defect #13783: Internal error on time tracking activity enumeration deletion
|
||||
* Defect #13821: "obj" parameter is not defined for macros used in description of documents
|
||||
* Defect #13850: Unable to set custom fields for versions using the REST API
|
||||
* Defect #13910: Values of custom fields are not kept in issues when copying a project
|
||||
* Defect #13950: Duplicate Lithuanian "error_attachment_too_big" translation keys
|
||||
* Defect #14015: Ruby hangs when adding a subtask
|
||||
* Defect #14020: Locking and unlocking a user resets the email notification checkbox
|
||||
* Defect #14023: Can't delete relation when Redmine runs in a subpath
|
||||
* Defect #14051: Filtering issues with custom field in date format with NULL(empty) value
|
||||
* Defect #14178: PDF API broken in version 2.3.1
|
||||
* Defect #14186: Project name is not properly escaped in issue filters JSON
|
||||
* Defect #14242: Project auto generation fails when projects created in the same time
|
||||
* Defect #14245: Gem::InstallError: nokogiri requires Ruby version >= 1.9.2.
|
||||
* Defect #14346: Latvian translation for "Log time"
|
||||
* Feature #12888: Adding markings to emails generated by Private comments
|
||||
* Feature #14419: Include RUBY_PATCHLEVEL and RUBY_RELEASE_DATE in info.rb
|
||||
* Patch #14005: Swedish Translation for 2.3-stable
|
||||
* Patch #14101: Receive IMAP by uid's
|
||||
* Patch #14103: Disconnect and logout from IMAP after mail receive
|
||||
* Patch #14145: German translation of x_hours
|
||||
* Patch #14182: pt-BR translation for 2.3-stable
|
||||
* Patch #14196: Italian translation for 2.3-stable
|
||||
* Patch #14221: Translation of x_hours for many languages
|
||||
|
||||
== 2013-05-01 v2.3.1
|
||||
|
||||
* Defect #12650: Lost text after selection in issue list with IE
|
||||
* Defect #12684: Hotkey for Issue-Edit doesn't work as expected
|
||||
* Defect #13405: Commit link title is escaped twice when using "commit:" prefix
|
||||
* Defect #13541: Can't access SCM when log/production.scm.stderr.log is not writable
|
||||
* Defect #13579: Datepicker uses Simplified Chinese in Traditional Chinese locale
|
||||
* Defect #13584: Missing Portuguese jQuery UI date picker
|
||||
* Defect #13586: Circular loop testing prevents precedes/follows relation between subtasks
|
||||
* Defect #13618: CSV export of spent time ignores filters and columns selection
|
||||
* Defect #13630: PDF export generates the issue id twice
|
||||
* Defect #13644: Diff - Internal Error
|
||||
* Defect #13712: Fix email rake tasks to also support no_account_notice and default_group options
|
||||
* Defect #13811: Broken javascript in IE7 ; recurrence of #12195
|
||||
* Defect #13823: Trailing comma in javascript files
|
||||
* Patch #13531: Traditional Chinese translation for 2.3-stable
|
||||
* Patch #13552: Dutch translations for 2.3-stable
|
||||
* Patch #13678: Lithuanian translation for 2.3-stable
|
||||
|
||||
== 2013-03-19 v2.3.0
|
||||
|
||||
* Defect #3107: Issue with two digit year on Logtime
|
||||
|
||||
@@ -7,7 +7,7 @@ http://www.redmine.org/
|
||||
|
||||
== Requirements
|
||||
|
||||
* Ruby 1.8.7, 1.9.2 or 1.9.3
|
||||
* Ruby 1.8.7, 1.9.2, 1.9.3 or 2.0.0
|
||||
* RubyGems
|
||||
* Bundler >= 1.0.21
|
||||
|
||||
@@ -15,6 +15,7 @@ http://www.redmine.org/
|
||||
* MySQL (tested with MySQL 5.1)
|
||||
* PostgreSQL (tested with PostgreSQL 9.1)
|
||||
* SQLite3 (tested with SQLite 3.7)
|
||||
* SQLServer (tested with SQLServer 2012)
|
||||
|
||||
Optional:
|
||||
* SCM binaries (e.g. svn, git...), for repository browsing (must be available in PATH)
|
||||
@@ -39,6 +40,12 @@ Optional:
|
||||
of the rmagick gem using:
|
||||
bundle install --without development test rmagick
|
||||
|
||||
Only the gems that are needed by the adapters you've specified in your database
|
||||
configuration file are actually installed (eg. if your config/database.yml
|
||||
uses the 'mysql2' adapter, then only the mysql2 gem will be installed). Don't
|
||||
forget to re-run `bundle install` when you change config/database.yml for using
|
||||
other database adapters.
|
||||
|
||||
If you need to load some gems that are not required by Redmine core (eg. fcgi),
|
||||
you can create a file named Gemfile.local at the root of your redmine directory.
|
||||
It will be loaded automatically when running `bundle install`.
|
||||
|
||||
@@ -380,7 +380,7 @@ module Redmine
|
||||
col_width
|
||||
end
|
||||
|
||||
def render_table_header(pdf, query, col_width, row_height, col_id_width, table_width)
|
||||
def render_table_header(pdf, query, col_width, row_height, table_width)
|
||||
# headers
|
||||
pdf.SetFontStyle('B',8)
|
||||
pdf.SetFillColor(230, 230, 230)
|
||||
@@ -389,13 +389,12 @@ module Redmine
|
||||
base_x = pdf.GetX
|
||||
base_y = pdf.GetY
|
||||
max_height = issues_to_pdf_write_cells(pdf, query.inline_columns, col_width, row_height, true)
|
||||
pdf.Rect(base_x, base_y, table_width + col_id_width, max_height, 'FD');
|
||||
pdf.Rect(base_x, base_y, table_width, max_height, 'FD');
|
||||
pdf.SetXY(base_x, base_y);
|
||||
|
||||
# write the cells on page
|
||||
pdf.RDMCell(col_id_width, row_height, "#", "T", 0, 'C', 1)
|
||||
issues_to_pdf_write_cells(pdf, query.inline_columns, col_width, row_height, true)
|
||||
issues_to_pdf_draw_borders(pdf, base_x, base_y, base_y + max_height, col_id_width, col_width)
|
||||
issues_to_pdf_draw_borders(pdf, base_x, base_y, base_y + max_height, 0, col_width)
|
||||
pdf.SetY(base_y + max_height);
|
||||
|
||||
# rows
|
||||
@@ -417,22 +416,22 @@ module Redmine
|
||||
# Landscape A4 = 210 x 297 mm
|
||||
page_height = 210
|
||||
page_width = 297
|
||||
left_margin = 10
|
||||
right_margin = 10
|
||||
bottom_margin = 20
|
||||
col_id_width = 10
|
||||
row_height = 4
|
||||
|
||||
# column widths
|
||||
table_width = page_width - right_margin - 10 # fixed left margin
|
||||
table_width = page_width - right_margin - left_margin
|
||||
col_width = []
|
||||
unless query.inline_columns.empty?
|
||||
col_width = calc_col_width(issues, query, table_width - col_id_width, pdf)
|
||||
col_width = calc_col_width(issues, query, table_width, pdf)
|
||||
table_width = col_width.inject(0) {|s,v| s += v}
|
||||
end
|
||||
|
||||
# use full width if the description is displayed
|
||||
# use full width if the description is displayed
|
||||
if table_width > 0 && query.has_column?(:description)
|
||||
col_width = col_width.map {|w| w = w * (page_width - right_margin - 10 - col_id_width) / table_width}
|
||||
col_width = col_width.map {|w| w * (page_width - right_margin - left_margin) / table_width}
|
||||
table_width = col_width.inject(0) {|s,v| s += v}
|
||||
end
|
||||
|
||||
@@ -440,7 +439,7 @@ module Redmine
|
||||
pdf.SetFontStyle('B',11)
|
||||
pdf.RDMCell(190,10, title)
|
||||
pdf.Ln
|
||||
render_table_header(pdf, query, col_width, row_height, col_id_width, table_width)
|
||||
render_table_header(pdf, query, col_width, row_height, table_width)
|
||||
previous_group = false
|
||||
issue_list(issues) do |issue, level|
|
||||
if query.grouped? &&
|
||||
@@ -449,7 +448,7 @@ module Redmine
|
||||
group_label = group.blank? ? 'None' : group.to_s.dup
|
||||
group_label << " (#{query.issue_count_by_group[group]})"
|
||||
pdf.Bookmark group_label, 0, -1
|
||||
pdf.RDMCell(table_width + col_id_width, row_height * 2, group_label, 1, 1, 'L')
|
||||
pdf.RDMCell(table_width, row_height * 2, group_label, 1, 1, 'L')
|
||||
pdf.SetFontStyle('',8)
|
||||
previous_group = group
|
||||
end
|
||||
@@ -468,15 +467,14 @@ module Redmine
|
||||
space_left = page_height - base_y - bottom_margin
|
||||
if max_height > space_left
|
||||
pdf.AddPage("L")
|
||||
render_table_header(pdf, query, col_width, row_height, col_id_width, table_width)
|
||||
render_table_header(pdf, query, col_width, row_height, table_width)
|
||||
base_x = pdf.GetX
|
||||
base_y = pdf.GetY
|
||||
end
|
||||
|
||||
# write the cells on page
|
||||
pdf.RDMCell(col_id_width, row_height, issue.id.to_s, "T", 0, 'C', 1)
|
||||
issues_to_pdf_write_cells(pdf, col_values, col_width, row_height)
|
||||
issues_to_pdf_draw_borders(pdf, base_x, base_y, base_y + max_height, col_id_width, col_width)
|
||||
issues_to_pdf_draw_borders(pdf, base_x, base_y, base_y + max_height, 0, col_width)
|
||||
pdf.SetY(base_y + max_height);
|
||||
|
||||
if query.has_column?(:description) && issue.description?
|
||||
@@ -513,9 +511,11 @@ module Redmine
|
||||
end
|
||||
|
||||
# Draw lines to close the row (MultiCell border drawing in not uniform)
|
||||
#
|
||||
# parameter "col_id_width" is not used. it is kept for compatibility.
|
||||
def issues_to_pdf_draw_borders(pdf, top_x, top_y, lower_y,
|
||||
id_width, col_widths)
|
||||
col_x = top_x + id_width
|
||||
col_id_width, col_widths)
|
||||
col_x = top_x
|
||||
pdf.Line(col_x, top_y, col_x, lower_y) # id right border
|
||||
col_widths.each do |width|
|
||||
col_x += width
|
||||
|
||||
@@ -675,7 +675,7 @@ module Redmine
|
||||
start_date + (end_date - start_date + 1) * (progress / 100.0)
|
||||
end
|
||||
|
||||
# Sorts a collection of issues by start_date, due_date, id for gantt rendering
|
||||
# TODO: Sorts a collection of issues by start_date, due_date, id for gantt rendering
|
||||
def sort_issues!(issues)
|
||||
issues.sort! { |a, b| gantt_issue_compare(a, b) }
|
||||
end
|
||||
|
||||
@@ -29,25 +29,27 @@ module Redmine
|
||||
imap = Net::IMAP.new(host, port, ssl)
|
||||
imap.login(imap_options[:username], imap_options[:password]) unless imap_options[:username].nil?
|
||||
imap.select(folder)
|
||||
imap.search(['NOT', 'SEEN']).each do |message_id|
|
||||
msg = imap.fetch(message_id,'RFC822')[0].attr['RFC822']
|
||||
logger.debug "Receiving message #{message_id}" if logger && logger.debug?
|
||||
imap.uid_search(['NOT', 'SEEN']).each do |uid|
|
||||
msg = imap.uid_fetch(uid,'RFC822')[0].attr['RFC822']
|
||||
logger.debug "Receiving message #{uid}" if logger && logger.debug?
|
||||
if MailHandler.receive(msg, options)
|
||||
logger.debug "Message #{message_id} successfully received" if logger && logger.debug?
|
||||
logger.debug "Message #{uid} successfully received" if logger && logger.debug?
|
||||
if imap_options[:move_on_success]
|
||||
imap.copy(message_id, imap_options[:move_on_success])
|
||||
imap.uid_copy(uid, imap_options[:move_on_success])
|
||||
end
|
||||
imap.store(message_id, "+FLAGS", [:Seen, :Deleted])
|
||||
imap.uid_store(uid, "+FLAGS", [:Seen, :Deleted])
|
||||
else
|
||||
logger.debug "Message #{message_id} can not be processed" if logger && logger.debug?
|
||||
imap.store(message_id, "+FLAGS", [:Seen])
|
||||
logger.debug "Message #{uid} can not be processed" if logger && logger.debug?
|
||||
imap.uid_store(uid, "+FLAGS", [:Seen])
|
||||
if imap_options[:move_on_failure]
|
||||
imap.copy(message_id, imap_options[:move_on_failure])
|
||||
imap.store(message_id, "+FLAGS", [:Deleted])
|
||||
imap.uid_copy(uid, imap_options[:move_on_failure])
|
||||
imap.uid_store(uid, "+FLAGS", [:Deleted])
|
||||
end
|
||||
end
|
||||
end
|
||||
imap.expunge
|
||||
imap.logout
|
||||
imap.disconnect
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
@@ -10,16 +10,16 @@ module Redmine
|
||||
s = "Environment:\n"
|
||||
s << [
|
||||
["Redmine version", Redmine::VERSION],
|
||||
["Ruby version", "#{RUBY_VERSION} (#{RUBY_PLATFORM})"],
|
||||
["Ruby version", "#{RUBY_VERSION}-p#{RUBY_PATCHLEVEL} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"],
|
||||
["Rails version", Rails::VERSION::STRING],
|
||||
["Environment", Rails.env],
|
||||
["Database adapter", ActiveRecord::Base.connection.adapter_name]
|
||||
].map {|info| " %-40s %s" % info}.join("\n")
|
||||
].map {|info| " %-30s %s" % info}.join("\n")
|
||||
s << "\nRedmine plugins:\n"
|
||||
|
||||
plugins = Redmine::Plugin.all
|
||||
if plugins.any?
|
||||
s << plugins.map {|plugin| " %-40s %s" % [plugin.id.to_s, plugin.version.to_s]}.join("\n")
|
||||
s << plugins.map {|plugin| " %-30s %s" % [plugin.id.to_s, plugin.version.to_s]}.join("\n")
|
||||
else
|
||||
s << " no plugin installed"
|
||||
end
|
||||
|
||||
@@ -219,18 +219,39 @@ module Redmine
|
||||
end
|
||||
|
||||
# Path to the file where scm stderr output is logged
|
||||
# Returns nil if the log file is not writable
|
||||
def self.stderr_log_file
|
||||
@stderr_log_path ||=
|
||||
Redmine::Configuration['scm_stderr_log_file'].presence ||
|
||||
Rails.root.join("log/#{Rails.env}.scm.stderr.log").to_s
|
||||
if @stderr_log_file.nil?
|
||||
writable = false
|
||||
path = Redmine::Configuration['scm_stderr_log_file'].presence
|
||||
path ||= Rails.root.join("log/#{Rails.env}.scm.stderr.log").to_s
|
||||
if File.exists?(path)
|
||||
if File.file?(path) && File.writable?(path)
|
||||
writable = true
|
||||
else
|
||||
logger.warn("SCM log file (#{path}) is not writable")
|
||||
end
|
||||
else
|
||||
begin
|
||||
File.open(path, "w") {}
|
||||
writable = true
|
||||
rescue => e
|
||||
logger.warn("SCM log file (#{path}) cannot be created: #{e.message}")
|
||||
end
|
||||
end
|
||||
@stderr_log_file = writable ? path : false
|
||||
end
|
||||
@stderr_log_file || nil
|
||||
end
|
||||
|
||||
def self.shellout(cmd, options = {}, &block)
|
||||
if logger && logger.debug?
|
||||
logger.debug "Shelling out: #{strip_credential(cmd)}"
|
||||
# Capture stderr in a log file
|
||||
if stderr_log_file
|
||||
cmd = "#{cmd} 2>>#{shell_quote(stderr_log_file)}"
|
||||
end
|
||||
end
|
||||
# Capture stderr in a log file
|
||||
cmd = "#{cmd} 2>>#{shell_quote(stderr_log_file)}"
|
||||
begin
|
||||
mode = "r+"
|
||||
IO.popen(cmd, mode) do |io|
|
||||
|
||||
@@ -33,7 +33,6 @@ module Redmine
|
||||
|
||||
module CodeRay
|
||||
require 'coderay'
|
||||
require 'coderay/helpers/file_type'
|
||||
|
||||
class << self
|
||||
# Highlights +text+ as the content of +filename+
|
||||
|
||||
@@ -199,15 +199,19 @@ module Redmine
|
||||
while starting < max && line_left[starting] == line_right[starting]
|
||||
starting += 1
|
||||
end
|
||||
while line_left[starting].ord.between?(128, 191) && starting > 0
|
||||
starting -= 1
|
||||
if (! "".respond_to?(:force_encoding)) && starting < line_left.size
|
||||
while line_left[starting].ord.between?(128, 191) && starting > 0
|
||||
starting -= 1
|
||||
end
|
||||
end
|
||||
ending = -1
|
||||
while ending >= -(max - starting) && line_left[ending] == line_right[ending]
|
||||
ending -= 1
|
||||
end
|
||||
while line_left[ending].ord.between?(128, 191) && ending > -1
|
||||
ending -= 1
|
||||
if (! "".respond_to?(:force_encoding)) && ending > (-1 * line_left.size)
|
||||
while line_left[ending].ord.between?(128, 191) && ending > -1
|
||||
ending -= 1
|
||||
end
|
||||
end
|
||||
unless starting == 0 && ending == -1
|
||||
[starting, ending]
|
||||
|
||||
@@ -4,7 +4,7 @@ module Redmine
|
||||
module VERSION #:nodoc:
|
||||
MAJOR = 2
|
||||
MINOR = 3
|
||||
TINY = 0
|
||||
TINY = 2
|
||||
|
||||
# Branch values:
|
||||
# * official release: nil
|
||||
|
||||
@@ -29,6 +29,8 @@ General options:
|
||||
create: create a user account
|
||||
no_permission_check=1 disable permission checking when receiving
|
||||
the email
|
||||
no_account_notice=1 disable new user account notification
|
||||
default_group=foo,bar adds created user to foo and bar groups
|
||||
|
||||
Issue attributes control options:
|
||||
project=PROJECT identifier of the target project
|
||||
@@ -58,6 +60,8 @@ END_DESC
|
||||
options[:allow_override] = ENV['allow_override'] if ENV['allow_override']
|
||||
options[:unknown_user] = ENV['unknown_user'] if ENV['unknown_user']
|
||||
options[:no_permission_check] = ENV['no_permission_check'] if ENV['no_permission_check']
|
||||
options[:no_account_notice] = ENV['no_account_notice'] if ENV['no_account_notice']
|
||||
options[:default_group] = ENV['default_group'] if ENV['default_group']
|
||||
|
||||
MailHandler.receive(STDIN.read, options)
|
||||
end
|
||||
@@ -73,6 +77,8 @@ General options:
|
||||
create: create a user account
|
||||
no_permission_check=1 disable permission checking when receiving
|
||||
the email
|
||||
no_account_notice=1 disable new user account notification
|
||||
default_group=foo,bar adds created user to foo and bar groups
|
||||
|
||||
Available IMAP options:
|
||||
host=HOST IMAP server host (default: 127.0.0.1)
|
||||
@@ -129,6 +135,8 @@ END_DESC
|
||||
options[:allow_override] = ENV['allow_override'] if ENV['allow_override']
|
||||
options[:unknown_user] = ENV['unknown_user'] if ENV['unknown_user']
|
||||
options[:no_permission_check] = ENV['no_permission_check'] if ENV['no_permission_check']
|
||||
options[:no_account_notice] = ENV['no_account_notice'] if ENV['no_account_notice']
|
||||
options[:default_group] = ENV['default_group'] if ENV['default_group']
|
||||
|
||||
Redmine::IMAP.check(imap_options, options)
|
||||
end
|
||||
@@ -162,6 +170,8 @@ END_DESC
|
||||
options[:allow_override] = ENV['allow_override'] if ENV['allow_override']
|
||||
options[:unknown_user] = ENV['unknown_user'] if ENV['unknown_user']
|
||||
options[:no_permission_check] = ENV['no_permission_check'] if ENV['no_permission_check']
|
||||
options[:no_account_notice] = ENV['no_account_notice'] if ENV['no_account_notice']
|
||||
options[:default_group] = ENV['default_group'] if ENV['default_group']
|
||||
|
||||
Redmine::POP3.check(pop_options, options)
|
||||
end
|
||||
|
||||
@@ -14,12 +14,12 @@ function toggleCheckboxesBySelector(selector) {
|
||||
$(selector).each(function(index) {
|
||||
if (!$(this).is(':checked')) { all_checked = false; }
|
||||
});
|
||||
$(selector).attr('checked', !all_checked)
|
||||
$(selector).attr('checked', !all_checked);
|
||||
}
|
||||
|
||||
function showAndScrollTo(id, focus) {
|
||||
$('#'+id).show();
|
||||
if (focus!=null) {
|
||||
if (focus !== null) {
|
||||
$('#'+focus).focus();
|
||||
}
|
||||
$('html, body').animate({scrollTop: $('#'+id).offset().top}, 100);
|
||||
@@ -131,10 +131,10 @@ function buildFilterRow(field, operator, values) {
|
||||
select = tr.find('td.operator select');
|
||||
for (i=0;i<operators.length;i++){
|
||||
var option = $('<option>').val(operators[i]).text(operatorLabels[operators[i]]);
|
||||
if (operators[i] == operator) {option.attr('selected', true)};
|
||||
if (operators[i] == operator) { option.attr('selected', true); }
|
||||
select.append(option);
|
||||
}
|
||||
select.change(function(){toggleOperator(field)});
|
||||
select.change(function(){ toggleOperator(field); });
|
||||
|
||||
switch (filterOptions['type']){
|
||||
case "list":
|
||||
@@ -146,7 +146,7 @@ function buildFilterRow(field, operator, values) {
|
||||
' <span class="toggle-multiselect"> </span></span>'
|
||||
);
|
||||
select = tr.find('td.values select');
|
||||
if (values.length > 1) {select.attr('multiple', true)};
|
||||
if (values.length > 1) { select.attr('multiple', true); }
|
||||
for (i=0;i<filterValues.length;i++){
|
||||
var filterValue = filterValues[i];
|
||||
var option = $('<option>');
|
||||
@@ -189,7 +189,7 @@ function buildFilterRow(field, operator, values) {
|
||||
var filterValue = allProjects[i];
|
||||
var option = $('<option>');
|
||||
option.val(filterValue[1]).text(filterValue[0]);
|
||||
if (values[0] == filterValue[1]) {option.attr('selected', true)};
|
||||
if (values[0] == filterValue[1]) { option.attr('selected', true); }
|
||||
select.append(option);
|
||||
}
|
||||
case "integer":
|
||||
@@ -352,7 +352,7 @@ function setPredecessorFieldsVisibility() {
|
||||
|
||||
function showModal(id, width) {
|
||||
var el = $('#'+id).first();
|
||||
if (el.length == 0 || el.is(':visible')) {return;}
|
||||
if (el.length === 0 || el.is(':visible')) {return;}
|
||||
var title = el.find('h3.title').text();
|
||||
el.dialog({
|
||||
width: width,
|
||||
@@ -462,7 +462,7 @@ function observeAutocompleteField(fieldId, url, options) {
|
||||
source: url,
|
||||
minLength: 2,
|
||||
search: function(){$('#'+fieldId).addClass('ajax-loading');},
|
||||
response: function(){$('#'+fieldId).removeClass('ajax-loading');},
|
||||
response: function(){$('#'+fieldId).removeClass('ajax-loading');}
|
||||
}, options));
|
||||
$('#'+fieldId).addClass('autocomplete');
|
||||
});
|
||||
@@ -546,13 +546,13 @@ function warnLeavingUnsaved(message) {
|
||||
});
|
||||
if (warn) {return warnLeavingUnsavedMessage;}
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
function setupAjaxIndicator() {
|
||||
|
||||
$('#ajax-indicator').bind('ajaxSend', function(event, xhr, settings) {
|
||||
|
||||
if ($('.ajax-loading').length == 0 && settings.contentType != 'application/octet-stream') {
|
||||
if ($('.ajax-loading').length === 0 && settings.contentType != 'application/octet-stream') {
|
||||
$('#ajax-indicator').show();
|
||||
}
|
||||
});
|
||||
|
||||
@@ -186,7 +186,7 @@ function contextMenuCheckSelectionBox(tr, checked) {
|
||||
function contextMenuClearDocumentSelection() {
|
||||
// TODO
|
||||
if (document.selection) {
|
||||
document.selection.clear(); // IE
|
||||
document.selection.empty(); // IE
|
||||
} else {
|
||||
window.getSelection().removeAllRanges();
|
||||
}
|
||||
|
||||
@@ -93,7 +93,7 @@ function drawRelations() {
|
||||
.attr({stroke: "none",
|
||||
fill: color,
|
||||
"stroke-linecap": "butt",
|
||||
"stroke-linejoin": "miter",
|
||||
"stroke-linejoin": "miter"
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
22
public/javascripts/i18n/jquery.ui.datepicker-pt.js
vendored
Normal file
22
public/javascripts/i18n/jquery.ui.datepicker-pt.js
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
/* Portuguese initialisation for the jQuery UI date picker plugin. */
|
||||
jQuery(function($){
|
||||
$.datepicker.regional['pt'] = {
|
||||
closeText: 'Fechar',
|
||||
prevText: '<Anterior',
|
||||
nextText: 'Seguinte',
|
||||
currentText: 'Hoje',
|
||||
monthNames: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho',
|
||||
'Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'],
|
||||
monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun',
|
||||
'Jul','Ago','Set','Out','Nov','Dez'],
|
||||
dayNames: ['Domingo','Segunda-feira','Terça-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sábado'],
|
||||
dayNamesShort: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'],
|
||||
dayNamesMin: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'],
|
||||
weekHeader: 'Sem',
|
||||
dateFormat: 'dd/mm/yy',
|
||||
firstDay: 0,
|
||||
isRTL: false,
|
||||
showMonthAfterYear: false,
|
||||
yearSuffix: ''};
|
||||
$.datepicker.setDefaults($.datepicker.regional['pt']);
|
||||
});
|
||||
@@ -9,8 +9,8 @@ jsToolBar.strings['Heading 2'] = 'Heading 2';
|
||||
jsToolBar.strings['Heading 3'] = 'Heading 3';
|
||||
jsToolBar.strings['Unordered list'] = 'Nenumeruotas sąrašas';
|
||||
jsToolBar.strings['Ordered list'] = 'Numeruotas sąrašas';
|
||||
jsToolBar.strings['Quote'] = 'Quote';
|
||||
jsToolBar.strings['Unquote'] = 'Remove Quote';
|
||||
jsToolBar.strings['Quote'] = 'Cituoti';
|
||||
jsToolBar.strings['Unquote'] = 'Pašalinti citavimą';
|
||||
jsToolBar.strings['Preformatted text'] = 'Preformatuotas tekstas';
|
||||
jsToolBar.strings['Wiki link'] = 'Nuoroda į Wiki puslapį';
|
||||
jsToolBar.strings['Image'] = 'Paveikslas';
|
||||
|
||||
@@ -43,7 +43,7 @@ function drawRevisionGraph(holder, commits_hash, graph_space) {
|
||||
revisionGraph.circle(x, y, 3)
|
||||
.attr({
|
||||
fill: colors[commit.space],
|
||||
stroke: 'none',
|
||||
stroke: 'none'
|
||||
}).toFront();
|
||||
// paths to parents
|
||||
$.each(commit.parent_scmids, function(index, parent_scmid) {
|
||||
|
||||
3
test/fixtures/changesets.yml
vendored
3
test/fixtures/changesets.yml
vendored
@@ -3,8 +3,9 @@ changesets_001:
|
||||
commit_date: 2007-04-11
|
||||
committed_on: 2007-04-11 15:14:44 +02:00
|
||||
revision: 1
|
||||
scmid: 691322a8eb01e11fd7
|
||||
id: 100
|
||||
comments: My very first commit
|
||||
comments: 'My very first commit do not escaping #<>&'
|
||||
repository_id: 10
|
||||
committer: dlopper
|
||||
user_id: 3
|
||||
|
||||
7
test/fixtures/diffs/issue-13644-1.diff
vendored
Normal file
7
test/fixtures/diffs/issue-13644-1.diff
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
--- a.txt 2013-04-05 14:19:39.000000000 +0900
|
||||
+++ b.txt 2013-04-05 14:19:51.000000000 +0900
|
||||
@@ -1,3 +1,3 @@
|
||||
aaaa
|
||||
-日本
|
||||
+日本語
|
||||
bbbb
|
||||
7
test/fixtures/diffs/issue-13644-2.diff
vendored
Normal file
7
test/fixtures/diffs/issue-13644-2.diff
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
--- a.txt 2013-04-05 14:19:39.000000000 +0900
|
||||
+++ b.txt 2013-04-05 14:19:51.000000000 +0900
|
||||
@@ -1,3 +1,3 @@
|
||||
aaaa
|
||||
-日本
|
||||
+にっぽん日本
|
||||
bbbb
|
||||
@@ -83,7 +83,7 @@ class AdminControllerTest < ActionController::TestCase
|
||||
|
||||
def test_test_email
|
||||
user = User.find(1)
|
||||
user.pref[:no_self_notified] = '1'
|
||||
user.pref.no_self_notified = '1'
|
||||
user.pref.save!
|
||||
ActionMailer::Base.deliveries.clear
|
||||
|
||||
|
||||
@@ -126,4 +126,11 @@ class EnumerationsControllerTest < ActionController::TestCase
|
||||
# check that the issue was reassign
|
||||
assert_equal 6, issue.reload.priority_id
|
||||
end
|
||||
|
||||
def test_destroy_enumeration_in_use_with_blank_reassignment
|
||||
assert_no_difference 'IssuePriority.count' do
|
||||
delete :destroy, :id => 4, :reassign_to_id => ''
|
||||
end
|
||||
assert_response :success
|
||||
end
|
||||
end
|
||||
|
||||
@@ -548,6 +548,46 @@ class TimelogControllerTest < ActionController::TestCase
|
||||
assert assigns(:items).first.is_a?(TimeEntry)
|
||||
end
|
||||
|
||||
def test_index_at_project_level_should_include_csv_export_dialog
|
||||
get :index, :project_id => 'ecookbook',
|
||||
:f => ['spent_on'],
|
||||
:op => {'spent_on' => '>='},
|
||||
:v => {'spent_on' => ['2007-04-01']},
|
||||
:c => ['spent_on', 'user']
|
||||
assert_response :success
|
||||
|
||||
assert_select '#csv-export-options' do
|
||||
assert_select 'form[action=?][method=get]', '/projects/ecookbook/time_entries.csv' do
|
||||
# filter
|
||||
assert_select 'input[name=?][value=?]', 'f[]', 'spent_on'
|
||||
assert_select 'input[name=?][value=?]', 'op[spent_on]', '>='
|
||||
assert_select 'input[name=?][value=?]', 'v[spent_on][]', '2007-04-01'
|
||||
# columns
|
||||
assert_select 'input[name=?][value=?]', 'c[]', 'spent_on'
|
||||
assert_select 'input[name=?][value=?]', 'c[]', 'user'
|
||||
assert_select 'input[name=?]', 'c[]', 2
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def test_index_cross_project_should_include_csv_export_dialog
|
||||
get :index
|
||||
assert_response :success
|
||||
|
||||
assert_select '#csv-export-options' do
|
||||
assert_select 'form[action=?][method=get]', '/time_entries.csv'
|
||||
end
|
||||
end
|
||||
|
||||
def test_index_at_issue_level_should_include_csv_export_dialog
|
||||
get :index, :project_id => 'ecookbook', :issue_id => 3
|
||||
assert_response :success
|
||||
|
||||
assert_select '#csv-export-options' do
|
||||
assert_select 'form[action=?][method=get]', '/projects/ecookbook/issues/3/time_entries.csv'
|
||||
end
|
||||
end
|
||||
|
||||
def test_index_csv_all_projects
|
||||
Setting.date_format = '%m/%d/%Y'
|
||||
get :index, :format => 'csv'
|
||||
|
||||
@@ -325,6 +325,18 @@ class UsersControllerTest < ActionController::TestCase
|
||||
assert_equal [1, 2], u.notified_projects_ids.sort
|
||||
end
|
||||
|
||||
def test_update_status_should_not_update_attributes
|
||||
user = User.find(2)
|
||||
user.pref[:no_self_notified] = '1'
|
||||
user.pref.save
|
||||
|
||||
put :update, :id => 2, :user => {:status => 3}
|
||||
assert_response 302
|
||||
user = User.find(2)
|
||||
assert_equal 3, user.status
|
||||
assert_equal '1', user.pref[:no_self_notified]
|
||||
end
|
||||
|
||||
def test_destroy
|
||||
assert_difference 'User.count', -1 do
|
||||
delete :destroy, :id => 2
|
||||
|
||||
@@ -82,6 +82,29 @@ class Redmine::ApiTest::VersionsTest < Redmine::ApiTest::Base
|
||||
assert_tag 'version', :child => {:tag => 'id', :content => version.id.to_s}
|
||||
end
|
||||
|
||||
should "create the version with custom fields" do
|
||||
field = VersionCustomField.generate!
|
||||
|
||||
assert_difference 'Version.count' do
|
||||
post '/projects/1/versions.xml', {
|
||||
:version => {
|
||||
:name => 'API test',
|
||||
:custom_fields => [
|
||||
{'id' => field.id.to_s, 'value' => 'Some value'}
|
||||
]
|
||||
}
|
||||
}, credentials('jsmith')
|
||||
end
|
||||
|
||||
version = Version.first(:order => 'id DESC')
|
||||
assert_equal 'API test', version.name
|
||||
assert_equal 'Some value', version.custom_field_value(field)
|
||||
|
||||
assert_response :created
|
||||
assert_equal 'application/xml', @response.content_type
|
||||
assert_select 'version>custom_fields>custom_field[id=?]>value', field.id.to_s, 'Some value'
|
||||
end
|
||||
|
||||
context "with failure" do
|
||||
should "return the errors" do
|
||||
assert_no_difference('Version.count') do
|
||||
|
||||
@@ -85,6 +85,26 @@ class LayoutTest < ActionController::IntegrationTest
|
||||
get '/issues'
|
||||
assert_not_include "/javascripts/i18n/jquery.ui.datepicker", response.body
|
||||
end
|
||||
|
||||
with_settings :default_language => 'zh' do
|
||||
get '/issues'
|
||||
assert_include "/javascripts/i18n/jquery.ui.datepicker-zh-CN.js", response.body
|
||||
end
|
||||
|
||||
with_settings :default_language => 'zh-TW' do
|
||||
get '/issues'
|
||||
assert_include "/javascripts/i18n/jquery.ui.datepicker-zh-TW.js", response.body
|
||||
end
|
||||
|
||||
with_settings :default_language => 'pt' do
|
||||
get '/issues'
|
||||
assert_include "/javascripts/i18n/jquery.ui.datepicker-pt.js", response.body
|
||||
end
|
||||
|
||||
with_settings :default_language => 'pt-BR' do
|
||||
get '/issues'
|
||||
assert_include "/javascripts/i18n/jquery.ui.datepicker-pt-BR.js", response.body
|
||||
end
|
||||
end
|
||||
|
||||
def test_search_field_outside_project_should_link_to_global_search
|
||||
|
||||
@@ -107,10 +107,11 @@ module ObjectHelpers
|
||||
def TimeEntry.generate!(attributes={})
|
||||
entry = TimeEntry.new(attributes)
|
||||
entry.user ||= User.find(2)
|
||||
entry.issue ||= Issue.find(1)
|
||||
entry.issue ||= Issue.find(1) unless entry.project
|
||||
entry.project ||= entry.issue.project
|
||||
entry.activity ||= TimeEntryActivity.first
|
||||
entry.spent_on ||= Date.today
|
||||
entry.hours ||= 1.0
|
||||
entry.save!
|
||||
entry
|
||||
end
|
||||
@@ -147,4 +148,15 @@ module ObjectHelpers
|
||||
attachment.save!
|
||||
attachment
|
||||
end
|
||||
|
||||
def CustomField.generate!(attributes={})
|
||||
@generated_custom_field_name ||= 'Custom field 0'
|
||||
@generated_custom_field_name.succ!
|
||||
field = new(attributes)
|
||||
field.name = @generated_custom_field_name.dup if field.name.blank?
|
||||
field.field_format = 'string' if field.field_format.blank?
|
||||
yield field if block_given?
|
||||
field.save!
|
||||
field
|
||||
end
|
||||
end
|
||||
|
||||
@@ -264,11 +264,15 @@ RAW
|
||||
note_link = link_to('#3', {:controller => 'issues', :action => 'show', :id => 3, :anchor => 'note-14'},
|
||||
:class => Issue.find(3).css_classes, :title => 'Error 281 when updating a recipe (New)')
|
||||
|
||||
changeset_link = link_to('r1', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 1},
|
||||
:class => 'changeset', :title => 'My very first commit')
|
||||
changeset_link2 = link_to('r2', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 2},
|
||||
revision_link = link_to('r1', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 1},
|
||||
:class => 'changeset', :title => 'My very first commit do not escaping #<>&')
|
||||
revision_link2 = link_to('r2', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 2},
|
||||
:class => 'changeset', :title => 'This commit fixes #1, #2 and references #1 & #3')
|
||||
|
||||
changeset_link2 = link_to('691322a8eb01e11fd7',
|
||||
{:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 1},
|
||||
:class => 'changeset', :title => 'My very first commit do not escaping #<>&')
|
||||
|
||||
document_link = link_to('Test document', {:controller => 'documents', :action => 'show', :id => 1},
|
||||
:class => 'document')
|
||||
|
||||
@@ -304,10 +308,11 @@ RAW
|
||||
# should not ignore leading zero
|
||||
'#03' => '#03',
|
||||
# changesets
|
||||
'r1' => changeset_link,
|
||||
'r1.' => "#{changeset_link}.",
|
||||
'r1, r2' => "#{changeset_link}, #{changeset_link2}",
|
||||
'r1,r2' => "#{changeset_link},#{changeset_link2}",
|
||||
'r1' => revision_link,
|
||||
'r1.' => "#{revision_link}.",
|
||||
'r1, r2' => "#{revision_link}, #{revision_link2}",
|
||||
'r1,r2' => "#{revision_link},#{revision_link2}",
|
||||
'commit:691322a8eb01e11fd7' => changeset_link2,
|
||||
# documents
|
||||
'document#1' => document_link,
|
||||
'document:"Test document"' => document_link,
|
||||
@@ -1205,4 +1210,14 @@ RAW
|
||||
def test_javascript_include_tag_for_plugin_should_pick_the_plugin_javascript
|
||||
assert_match 'src="/plugin_assets/foo/javascripts/scripts.js"', javascript_include_tag("scripts", :plugin => :foo)
|
||||
end
|
||||
|
||||
def test_raw_json_should_escape_closing_tags
|
||||
s = raw_json(["<foo>bar</foo>"])
|
||||
assert_equal '["<foo>bar<\/foo>"]', s
|
||||
end
|
||||
|
||||
def test_raw_json_should_be_html_safe
|
||||
s = raw_json(["foo"])
|
||||
assert s.html_safe?
|
||||
end
|
||||
end
|
||||
|
||||
@@ -137,6 +137,19 @@ class IssueRelationTest < ActiveSupport::TestCase
|
||||
assert_include 'This relation would create a circular dependency', r.errors.full_messages
|
||||
end
|
||||
|
||||
def test_subtasks_should_allow_precedes_relation
|
||||
parent = Issue.generate!
|
||||
child1 = Issue.generate!(:parent_issue_id => parent.id)
|
||||
child2 = Issue.generate!(:parent_issue_id => parent.id)
|
||||
|
||||
r = IssueRelation.new(
|
||||
:issue_from => child1, :issue_to => child2,
|
||||
:relation_type => IssueRelation::TYPE_PRECEDES
|
||||
)
|
||||
assert r.valid?
|
||||
assert r.save
|
||||
end
|
||||
|
||||
def test_validates_circular_dependency_on_reverse_relations
|
||||
IssueRelation.delete_all
|
||||
assert IssueRelation.create!(
|
||||
|
||||
@@ -1792,6 +1792,136 @@ class IssueTest < ActiveSupport::TestCase
|
||||
assert_equal [2, 3, 8], Issue.find(1).all_dependent_issues.collect(&:id).sort
|
||||
end
|
||||
|
||||
def test_all_dependent_issues_with_subtask
|
||||
IssueRelation.delete_all
|
||||
|
||||
project = Project.generate!(:name => "testproject")
|
||||
|
||||
parentIssue = Issue.generate!(:project => project)
|
||||
childIssue1 = Issue.generate!(:project => project, :parent_issue_id => parentIssue.id)
|
||||
childIssue2 = Issue.generate!(:project => project, :parent_issue_id => parentIssue.id)
|
||||
|
||||
assert_equal [childIssue1.id, childIssue2.id].sort, parentIssue.all_dependent_issues.collect(&:id).uniq.sort
|
||||
end
|
||||
|
||||
def test_all_dependent_issues_does_not_include_self
|
||||
IssueRelation.delete_all
|
||||
|
||||
project = Project.generate!(:name => "testproject")
|
||||
|
||||
parentIssue = Issue.generate!(:project => project)
|
||||
childIssue = Issue.generate!(:project => project, :parent_issue_id => parentIssue.id)
|
||||
|
||||
assert_equal [childIssue.id], parentIssue.all_dependent_issues.collect(&:id)
|
||||
end
|
||||
|
||||
def test_all_dependent_issues_with_parenttask_and_sibling
|
||||
IssueRelation.delete_all
|
||||
|
||||
project = Project.generate!(:name => "testproject")
|
||||
|
||||
parentIssue = Issue.generate!(:project => project)
|
||||
childIssue1 = Issue.generate!(:project => project, :parent_issue_id => parentIssue.id)
|
||||
childIssue2 = Issue.generate!(:project => project, :parent_issue_id => parentIssue.id)
|
||||
|
||||
assert_equal [parentIssue.id].sort, childIssue1.all_dependent_issues.collect(&:id)
|
||||
end
|
||||
|
||||
def test_all_dependent_issues_with_relation_to_leaf_in_other_tree
|
||||
IssueRelation.delete_all
|
||||
|
||||
project = Project.generate!(:name => "testproject")
|
||||
|
||||
parentIssue1 = Issue.generate!(:project => project)
|
||||
childIssue1_1 = Issue.generate!(:project => project, :parent_issue_id => parentIssue1.id)
|
||||
childIssue1_2 = Issue.generate!(:project => project, :parent_issue_id => parentIssue1.id)
|
||||
|
||||
parentIssue2 = Issue.generate!(:project => project)
|
||||
childIssue2_1 = Issue.generate!(:project => project, :parent_issue_id => parentIssue2.id)
|
||||
childIssue2_2 = Issue.generate!(:project => project, :parent_issue_id => parentIssue2.id)
|
||||
|
||||
|
||||
assert IssueRelation.create(:issue_from => parentIssue1,
|
||||
:issue_to => childIssue2_2,
|
||||
:relation_type => IssueRelation::TYPE_BLOCKS)
|
||||
|
||||
assert_equal [childIssue1_1.id, childIssue1_2.id, parentIssue2.id, childIssue2_2.id].sort,
|
||||
parentIssue1.all_dependent_issues.collect(&:id).uniq.sort
|
||||
end
|
||||
|
||||
def test_all_dependent_issues_with_relation_to_parent_in_other_tree
|
||||
IssueRelation.delete_all
|
||||
|
||||
project = Project.generate!(:name => "testproject")
|
||||
|
||||
parentIssue1 = Issue.generate!(:project => project)
|
||||
childIssue1_1 = Issue.generate!(:project => project, :parent_issue_id => parentIssue1.id)
|
||||
childIssue1_2 = Issue.generate!(:project => project, :parent_issue_id => parentIssue1.id)
|
||||
|
||||
parentIssue2 = Issue.generate!(:project => project)
|
||||
childIssue2_1 = Issue.generate!(:project => project, :parent_issue_id => parentIssue2.id)
|
||||
childIssue2_2 = Issue.generate!(:project => project, :parent_issue_id => parentIssue2.id)
|
||||
|
||||
|
||||
assert IssueRelation.create(:issue_from => parentIssue1,
|
||||
:issue_to => parentIssue2,
|
||||
:relation_type => IssueRelation::TYPE_BLOCKS)
|
||||
|
||||
assert_equal [childIssue1_1.id, childIssue1_2.id, parentIssue2.id, childIssue2_1.id, childIssue2_2.id].sort,
|
||||
parentIssue1.all_dependent_issues.collect(&:id).uniq.sort
|
||||
end
|
||||
|
||||
def test_all_dependent_issues_with_transitive_relation
|
||||
IssueRelation.delete_all
|
||||
|
||||
project = Project.generate!(:name => "testproject")
|
||||
|
||||
parentIssue1 = Issue.generate!(:project => project)
|
||||
childIssue1_1 = Issue.generate!(:project => project, :parent_issue_id => parentIssue1.id)
|
||||
|
||||
parentIssue2 = Issue.generate!(:project => project)
|
||||
childIssue2_1 = Issue.generate!(:project => project, :parent_issue_id => parentIssue2.id)
|
||||
|
||||
independentIssue = Issue.generate!(:project => project)
|
||||
|
||||
assert IssueRelation.create(:issue_from => parentIssue1,
|
||||
:issue_to => childIssue2_1,
|
||||
:relation_type => IssueRelation::TYPE_RELATES)
|
||||
|
||||
assert IssueRelation.create(:issue_from => childIssue2_1,
|
||||
:issue_to => independentIssue,
|
||||
:relation_type => IssueRelation::TYPE_RELATES)
|
||||
|
||||
assert_equal [childIssue1_1.id, parentIssue2.id, childIssue2_1.id, independentIssue.id].sort,
|
||||
parentIssue1.all_dependent_issues.collect(&:id).uniq.sort
|
||||
end
|
||||
|
||||
def test_all_dependent_issues_with_transitive_relation2
|
||||
IssueRelation.delete_all
|
||||
|
||||
project = Project.generate!(:name => "testproject")
|
||||
|
||||
parentIssue1 = Issue.generate!(:project => project)
|
||||
childIssue1_1 = Issue.generate!(:project => project, :parent_issue_id => parentIssue1.id)
|
||||
|
||||
parentIssue2 = Issue.generate!(:project => project)
|
||||
childIssue2_1 = Issue.generate!(:project => project, :parent_issue_id => parentIssue2.id)
|
||||
|
||||
independentIssue = Issue.generate!(:project => project)
|
||||
|
||||
assert IssueRelation.create(:issue_from => parentIssue1,
|
||||
:issue_to => independentIssue,
|
||||
:relation_type => IssueRelation::TYPE_RELATES)
|
||||
|
||||
assert IssueRelation.create(:issue_from => independentIssue,
|
||||
:issue_to => childIssue2_1,
|
||||
:relation_type => IssueRelation::TYPE_RELATES)
|
||||
|
||||
assert_equal [childIssue1_1.id, parentIssue2.id, childIssue2_1.id, independentIssue.id].sort,
|
||||
parentIssue1.all_dependent_issues.collect(&:id).uniq.sort
|
||||
|
||||
end
|
||||
|
||||
def test_all_dependent_issues_with_persistent_circular_dependency
|
||||
IssueRelation.delete_all
|
||||
assert IssueRelation.create!(:issue_from => Issue.find(1),
|
||||
|
||||
@@ -244,6 +244,70 @@ DIFF
|
||||
end
|
||||
end
|
||||
|
||||
def test_offset_range_ascii_1
|
||||
raw = <<-DIFF
|
||||
--- a.txt 2013-04-05 14:19:39.000000000 +0900
|
||||
+++ b.txt 2013-04-05 14:19:51.000000000 +0900
|
||||
@@ -1,3 +1,3 @@
|
||||
aaaa
|
||||
-abc
|
||||
+abcd
|
||||
bbbb
|
||||
DIFF
|
||||
diff = Redmine::UnifiedDiff.new(raw, :type => 'sbs')
|
||||
assert_equal 1, diff.size
|
||||
assert_equal 3, diff.first.size
|
||||
assert_equal "abc<span></span>", diff.first[1].html_line_left
|
||||
assert_equal "abc<span>d</span>", diff.first[1].html_line_right
|
||||
end
|
||||
|
||||
def test_offset_range_ascii_2
|
||||
raw = <<-DIFF
|
||||
--- a.txt 2013-04-05 14:19:39.000000000 +0900
|
||||
+++ b.txt 2013-04-05 14:19:51.000000000 +0900
|
||||
@@ -1,3 +1,3 @@
|
||||
aaaa
|
||||
-abc
|
||||
+zabc
|
||||
bbbb
|
||||
DIFF
|
||||
diff = Redmine::UnifiedDiff.new(raw, :type => 'sbs')
|
||||
assert_equal 1, diff.size
|
||||
assert_equal 3, diff.first.size
|
||||
assert_equal "<span></span>abc", diff.first[1].html_line_left
|
||||
assert_equal "<span>z</span>abc", diff.first[1].html_line_right
|
||||
end
|
||||
|
||||
def test_offset_range_japanese_1
|
||||
ja1 = "\xe6\x97\xa5\xe6\x9c\xac<span></span>"
|
||||
ja1.force_encoding('UTF-8') if ja1.respond_to?(:force_encoding)
|
||||
ja2 = "\xe6\x97\xa5\xe6\x9c\xac<span>\xe8\xaa\x9e</span>"
|
||||
ja2.force_encoding('UTF-8') if ja2.respond_to?(:force_encoding)
|
||||
with_settings :repositories_encodings => '' do
|
||||
diff = Redmine::UnifiedDiff.new(
|
||||
read_diff_fixture('issue-13644-1.diff'), :type => 'sbs')
|
||||
assert_equal 1, diff.size
|
||||
assert_equal 3, diff.first.size
|
||||
assert_equal ja1, diff.first[1].html_line_left
|
||||
assert_equal ja2, diff.first[1].html_line_right
|
||||
end
|
||||
end
|
||||
|
||||
def test_offset_range_japanese_2
|
||||
ja1 = "<span></span>\xe6\x97\xa5\xe6\x9c\xac"
|
||||
ja1.force_encoding('UTF-8') if ja1.respond_to?(:force_encoding)
|
||||
ja2 = "<span>\xe3\x81\xab\xe3\x81\xa3\xe3\x81\xbd\xe3\x82\x93</span>\xe6\x97\xa5\xe6\x9c\xac"
|
||||
ja2.force_encoding('UTF-8') if ja2.respond_to?(:force_encoding)
|
||||
with_settings :repositories_encodings => '' do
|
||||
diff = Redmine::UnifiedDiff.new(
|
||||
read_diff_fixture('issue-13644-2.diff'), :type => 'sbs')
|
||||
assert_equal 1, diff.size
|
||||
assert_equal 3, diff.first.size
|
||||
assert_equal ja1, diff.first[1].html_line_left
|
||||
assert_equal ja2, diff.first[1].html_line_right
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def read_diff_fixture(filename)
|
||||
|
||||
@@ -215,14 +215,14 @@ class MailerTest < ActiveSupport::TestCase
|
||||
# Remove members except news author
|
||||
news.project.memberships.each {|m| m.destroy unless m.user == user}
|
||||
|
||||
user.pref[:no_self_notified] = false
|
||||
user.pref.no_self_notified = false
|
||||
user.pref.save
|
||||
User.current = user
|
||||
Mailer.news_added(news.reload).deliver
|
||||
assert_equal 1, last_email.bcc.size
|
||||
|
||||
# nobody to notify
|
||||
user.pref[:no_self_notified] = true
|
||||
user.pref.no_self_notified = true
|
||||
user.pref.save
|
||||
User.current = user
|
||||
ActionMailer::Base.deliveries.clear
|
||||
@@ -296,7 +296,7 @@ class MailerTest < ActiveSupport::TestCase
|
||||
issue = Issue.find(1)
|
||||
user = User.find(9)
|
||||
# minimal email notification options
|
||||
user.pref[:no_self_notified] = '1'
|
||||
user.pref.no_self_notified = '1'
|
||||
user.pref.save
|
||||
user.mail_notification = false
|
||||
user.save
|
||||
@@ -361,6 +361,17 @@ class MailerTest < ActiveSupport::TestCase
|
||||
assert_not_include 'someone@foo.bar', ActionMailer::Base.deliveries.last.bcc.sort
|
||||
end
|
||||
|
||||
def test_issue_edit_should_mark_private_notes
|
||||
journal = Journal.find(2)
|
||||
journal.private_notes = true
|
||||
journal.save!
|
||||
|
||||
with_settings :default_language => 'en' do
|
||||
Mailer.issue_edit(journal).deliver
|
||||
end
|
||||
assert_mail_body_match '(Private notes)', last_email
|
||||
end
|
||||
|
||||
def test_document_added
|
||||
document = Document.find(1)
|
||||
valid_languages.each do |lang|
|
||||
|
||||
@@ -69,6 +69,19 @@ class ProjectCopyTest < ActiveSupport::TestCase
|
||||
assert_equal "Closed", copied_issue.status.name
|
||||
end
|
||||
|
||||
test "#copy should copy issues custom values" do
|
||||
field = IssueCustomField.generate!(:is_for_all => true, :trackers => Tracker.all)
|
||||
issue = Issue.generate!(:project => @source_project, :subject => 'Custom field copy')
|
||||
issue.custom_field_values = {field.id => 'custom'}
|
||||
issue.save!
|
||||
assert_equal 'custom', issue.reload.custom_field_value(field)
|
||||
|
||||
assert @project.copy(@source_project)
|
||||
copy = @project.issues.find_by_subject('Custom field copy')
|
||||
assert copy
|
||||
assert_equal 'custom', copy.reload.custom_field_value(field)
|
||||
end
|
||||
|
||||
test "#copy should copy issues assigned to a locked version" do
|
||||
User.current = User.find(1)
|
||||
assigned_version = Version.generate!(:name => "Assigned Issues")
|
||||
|
||||
@@ -337,6 +337,20 @@ class QueryTest < ActiveSupport::TestCase
|
||||
find_issues_with_query(query)
|
||||
end
|
||||
|
||||
def test_operator_lesser_than_on_date_custom_field
|
||||
f = IssueCustomField.create!(:name => 'filter', :field_format => 'date', :is_filter => true, :is_for_all => true)
|
||||
CustomValue.create!(:custom_field => f, :customized => Issue.find(1), :value => '2013-04-11')
|
||||
CustomValue.create!(:custom_field => f, :customized => Issue.find(2), :value => '2013-05-14')
|
||||
CustomValue.create!(:custom_field => f, :customized => Issue.find(3), :value => '')
|
||||
|
||||
query = IssueQuery.new(:project => Project.find(1), :name => '_')
|
||||
query.add_filter("cf_#{f.id}", '<=', ['2013-05-01'])
|
||||
issue_ids = find_issues_with_query(query).map(&:id)
|
||||
assert_include 1, issue_ids
|
||||
assert_not_include 2, issue_ids
|
||||
assert_not_include 3, issue_ids
|
||||
end
|
||||
|
||||
def test_operator_between
|
||||
query = IssueQuery.new(:project => Project.find(1), :name => '_')
|
||||
query.add_filter('done_ratio', '><', ['30', '40'])
|
||||
|
||||
@@ -84,5 +84,33 @@ class TimeEntryActivityTest < ActiveSupport::TestCase
|
||||
e.reload
|
||||
assert_equal "0", e.custom_value_for(field).value
|
||||
end
|
||||
end
|
||||
|
||||
def test_system_activity_with_child_in_use_should_be_in_use
|
||||
project = Project.generate!
|
||||
system_activity = TimeEntryActivity.create!(:name => 'Activity')
|
||||
project_activity = TimeEntryActivity.create!(:name => 'Activity', :project => project, :parent_id => system_activity.id)
|
||||
|
||||
TimeEntry.generate!(:project => project, :activity => project_activity)
|
||||
|
||||
assert project_activity.in_use?
|
||||
assert system_activity.in_use?
|
||||
end
|
||||
|
||||
def test_destroying_a_system_activity_should_reassign_children_activities
|
||||
project = Project.generate!
|
||||
system_activity = TimeEntryActivity.create!(:name => 'Activity')
|
||||
project_activity = TimeEntryActivity.create!(:name => 'Activity', :project => project, :parent_id => system_activity.id)
|
||||
|
||||
entries = [
|
||||
TimeEntry.generate!(:project => project, :activity => system_activity),
|
||||
TimeEntry.generate!(:project => project, :activity => project_activity)
|
||||
]
|
||||
|
||||
assert_difference 'TimeEntryActivity.count', -2 do
|
||||
assert_nothing_raised do
|
||||
assert system_activity.destroy(TimeEntryActivity.find_by_name('Development'))
|
||||
end
|
||||
end
|
||||
assert entries.all? {|entry| entry.reload.activity.name == 'Development'}
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user