Initial commit from redmine-4.1.1.tar.gz
parents
Showing
Too many changes to show.
To preserve performance only 1000 of 1000+ files are displayed.
.gitignore
0 → 100644
CONTRIBUTING.md
0 → 100644
Gemfile
0 → 100644
source 'https://rubygems.org' | ||
ruby '>= 2.3.0', '< 2.7.0' if Bundler::VERSION >= '1.12.0' | ||
gem "bundler", ">= 1.5.0" | ||
gem 'rails', '5.2.4.2' | ||
gem 'sprockets', '~> 3.7.2' if RUBY_VERSION < '2.5' | ||
gem "rouge", "~> 3.12.0" | ||
gem "request_store", "~> 1.4.1" | ||
gem "mini_mime", "~> 1.0.1" | ||
gem "actionpack-xml_parser" | ||
gem "roadie-rails", (RUBY_VERSION < "2.5" ? "~> 1.3.0" : "~> 2.1.0") | ||
gem "mimemagic" | ||
gem "mail", "~> 2.7.1" | ||
gem "csv", "~> 3.1.1" | ||
gem "nokogiri", "~> 1.10.0" | ||
gem "i18n", "~> 1.6.0" | ||
gem "rbpdf", "~> 1.20.0" | ||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
gem 'tzinfo-data', platforms: [:mingw, :x64_mingw, :mswin] | ||
# Optional gem for LDAP authentication | ||
group :ldap do | ||
gem "net-ldap", "~> 0.16.0" | ||
end | ||
# Optional gem for OpenID authentication | ||
group :openid do | ||
gem "ruby-openid", "~> 2.9.2", :require => "openid" | ||
gem "rack-openid" | ||
end | ||
# Optional gem for exporting the gantt to a PNG file | ||
group :minimagick do | ||
gem "mini_magick", "~> 4.9.5" | ||
end | ||
# Optional Markdown support, not for JRuby | ||
group :markdown do | ||
gem "redcarpet", "~> 3.5.0" | ||
end | ||
# Include database gems for the adapters found in the database | ||
# configuration file | ||
require 'erb' | ||
require 'yaml' | ||
database_file = File.join(File.dirname(__FILE__), "config/database.yml") | ||
if File.exist?(database_file) | ||
database_config = YAML::load(ERB.new(IO.read(database_file)).result) | ||
adapters = database_config.values.map {|c| c['adapter']}.compact.uniq | ||
if adapters.any? | ||
adapters.each do |adapter| | ||
case adapter | ||
when 'mysql2' | ||
gem "mysql2", "~> 0.5.0", :platforms => [:mri, :mingw, :x64_mingw] | ||
when /postgresql/ | ||
gem "pg", "~> 1.1.4", :platforms => [:mri, :mingw, :x64_mingw] | ||
when /sqlite3/ | ||
gem "sqlite3", "~> 1.4.0", :platforms => [:mri, :mingw, :x64_mingw] | ||
when /sqlserver/ | ||
gem "tiny_tds", "~> 2.1.2", :platforms => [:mri, :mingw, :x64_mingw] | ||
gem "activerecord-sqlserver-adapter", "~> 5.2.1", :platforms => [:mri, :mingw, :x64_mingw] | ||
else | ||
warn("Unknown database adapter `#{adapter}` found in config/database.yml, use Gemfile.local to load your own database gems") | ||
end | ||
end | ||
else | ||
warn("No adapter found in config/database.yml, please configure it first") | ||
end | ||
else | ||
warn("Please configure your config/database.yml first") | ||
end | ||
group :development do | ||
gem "yard" | ||
end | ||
group :test do | ||
gem "rails-dom-testing" | ||
gem 'mocha', '>= 1.4.0' | ||
gem "simplecov", "~> 0.17.0", :require => false | ||
gem "ffi", platforms: [:mingw, :x64_mingw, :mswin] | ||
# For running system tests | ||
gem 'puma', '~> 3.7' | ||
gem "capybara", (RUBY_VERSION < "2.4" ? "~> 3.15.1" : "~> 3.25.0") | ||
gem "selenium-webdriver" | ||
# RuboCop | ||
gem 'rubocop', '~> 0.76.0' | ||
gem 'rubocop-performance', '~> 1.5.0' | ||
gem 'rubocop-rails', '~> 2.3.0' | ||
end | ||
local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local") | ||
if File.exists?(local_gemfile) | ||
eval_gemfile local_gemfile | ||
end | ||
# Load plugins' Gemfiles | ||
Dir.glob File.expand_path("../plugins/*/{Gemfile,PluginGemfile}", __FILE__) do |file| | ||
eval_gemfile file | ||
end |
README.rdoc
0 → 100644
Rakefile
0 → 100755
app/controllers/account_controller.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/controllers/activities_controller.rb
0 → 100644
app/controllers/admin_controller.rb
0 → 100644
app/controllers/application_controller.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/controllers/attachments_controller.rb
0 → 100644
app/controllers/auth_sources_controller.rb
0 → 100644
app/controllers/auto_completes_controller.rb
0 → 100644
app/controllers/boards_controller.rb
0 → 100644
app/controllers/calendars_controller.rb
0 → 100644
app/controllers/comments_controller.rb
0 → 100644
app/controllers/context_menus_controller.rb
0 → 100644
app/controllers/custom_fields_controller.rb
0 → 100644
app/controllers/documents_controller.rb
0 → 100644
app/controllers/enumerations_controller.rb
0 → 100644
app/controllers/files_controller.rb
0 → 100644
app/controllers/gantts_controller.rb
0 → 100644
app/controllers/groups_controller.rb
0 → 100644
app/controllers/imports_controller.rb
0 → 100644
app/controllers/issue_statuses_controller.rb
0 → 100644
app/controllers/issues_controller.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/controllers/journals_controller.rb
0 → 100644
app/controllers/mail_handler_controller.rb
0 → 100644
app/controllers/members_controller.rb
0 → 100644
app/controllers/messages_controller.rb
0 → 100644
app/controllers/my_controller.rb
0 → 100644
app/controllers/news_controller.rb
0 → 100644
app/controllers/previews_controller.rb
0 → 100644
app/controllers/projects_controller.rb
0 → 100644
app/controllers/queries_controller.rb
0 → 100644
app/controllers/reports_controller.rb
0 → 100644
app/controllers/repositories_controller.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/controllers/roles_controller.rb
0 → 100644
app/controllers/search_controller.rb
0 → 100644
app/controllers/settings_controller.rb
0 → 100644
app/controllers/sys_controller.rb
0 → 100644
app/controllers/timelog_controller.rb
0 → 100644
app/controllers/trackers_controller.rb
0 → 100644
app/controllers/users_controller.rb
0 → 100644
app/controllers/versions_controller.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/controllers/watchers_controller.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/controllers/welcome_controller.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/controllers/wiki_controller.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/controllers/wikis_controller.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/controllers/workflows_controller.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/account_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/activities_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/admin_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/application_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/attachments_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/auth_sources_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/avatars_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/boards_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/calendars_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/context_menus_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/custom_fields_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/documents_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/email_addresses_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/enumerations_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/gantt_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/groups_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/imports_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/issue_categories_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/issue_relations_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/issue_statuses_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/issues_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/journals_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/mail_handler_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/members_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/messages_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/my_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/news_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/principal_memberships_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/projects_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/projects_queries_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/queries_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/reports_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/repositories_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/roles_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/routes_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/search_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/settings_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/sort_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/timelog_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/trackers_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/users_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/versions_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/watchers_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/welcome_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/wiki_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/helpers/workflows_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/attachment.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/auth_source.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/auth_source_ldap.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/board.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/change.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/changeset.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/comment.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/custom_field.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/custom_field_enumeration.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/custom_field_value.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/custom_value.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/document.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/document_category.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/document_category_custom_field.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/document_custom_field.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/email_address.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/enabled_module.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/enumeration.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/group.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/group_anonymous.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/group_builtin.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/group_custom_field.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/group_non_member.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/import.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/import_item.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/issue.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/issue_category.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/issue_custom_field.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/issue_import.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/issue_priority.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/issue_priority_custom_field.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/issue_query.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/issue_relation.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/issue_status.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/journal.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/journal_detail.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/mail_handler.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/mailer.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/member.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/member_role.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/message.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/news.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/principal.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/project.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/project_custom_field.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/project_query.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/query.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/repository.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/repository/bazaar.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/repository/cvs.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/repository/filesystem.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/repository/git.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/repository/mercurial.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/repository/subversion.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/role.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/setting.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/time_entry.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/time_entry_activity.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/models/time_entry_custom_field.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/time_entry_import.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/time_entry_query.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/token.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/tracker.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/user.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/user_custom_field.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/user_preference.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/version.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/version_custom_field.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/watcher.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/wiki.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/wiki_content.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/wiki_content_version.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/wiki_page.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/wiki_redirect.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/workflow_permission.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/workflow_rule.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/models/workflow_transition.rb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/account/login.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/account/logout.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/account/lost_password.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/account/password_recovery.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/account/register.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/activities/_activities.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/activities/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/admin/_menu.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/admin/_no_data.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/admin/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/admin/info.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/admin/plugins.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/admin/projects.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/attachments/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/attachments/_links.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/attachments/destroy.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/attachments/diff.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/attachments/edit_all.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/attachments/file.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/attachments/image.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/attachments/other.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/attachments/show.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/attachments/upload.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/attachments/upload.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/auth_sources/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/auth_sources/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/auth_sources/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/auth_sources/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/boards/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/boards/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/boards/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/boards/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/boards/show.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/calendars/show.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/common/_calendar.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/common/_diff.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/common/_file.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/common/_image.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/common/_markup.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/common/_no_preview.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/common/_other.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/common/_preview.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/common/_tabs.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/common/error.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/common/error_messages.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/common/feed.atom.builder
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/context_menus/issues.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/custom_fields/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/custom_fields/_index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/custom_fields/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/custom_fields/index.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/custom_fields/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/custom_fields/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/custom_fields/new.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/custom_fields/select_type.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/documents/_document.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/documents/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/documents/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/documents/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/documents/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/documents/show.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/email_addresses/_index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/email_addresses/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/email_addresses/index.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/enumerations/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/enumerations/destroy.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/enumerations/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/enumerations/index.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/enumerations/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/enumerations/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/files/index.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/files/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/files/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/gantts/show.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/groups/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/groups/_general.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/groups/_memberships.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/groups/_new_users_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/groups/_new_users_modal.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/groups/_users.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/groups/add_users.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/groups/destroy_membership.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/groups/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/groups/edit_membership.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/groups/index.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/groups/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/groups/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/groups/new_users.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/groups/new_users.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/groups/remove_user.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/groups/show.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/groups/show.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/imports/_issues_mapping.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/imports/_issues_mapping.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/imports/_issues_sidebar.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/imports/mapping.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/imports/mapping.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/imports/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/imports/run.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/imports/run.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/imports/settings.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/imports/show.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issue_categories/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/issue_categories/create.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issue_categories/destroy.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issue_categories/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issue_categories/index.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issue_categories/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issue_categories/new.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issue_categories/show.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issue_relations/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issue_relations/create.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issue_relations/destroy.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issue_relations/index.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issue_relations/show.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issue_statuses/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issue_statuses/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issue_statuses/index.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issue_statuses/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issue_statuses/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/_action_menu.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/_action_menu_edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/_attributes.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/_conflict.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/_edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/issues/_list.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/_relations.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/_sidebar.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/issues/_watchers_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/bulk_edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/bulk_edit.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/destroy.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/edit.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/index.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/index.pdf.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/new.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/show.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/show.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/show.pdf.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/tabs/_changesets.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/tabs/_history.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/issues/tabs/_time_entries.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/journals/_notes_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/journals/diff.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/journals/edit.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/journals/index.builder
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/journals/new.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/journals/update.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/layouts/_file.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/layouts/admin.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/layouts/base.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/layouts/mailer.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/layouts/mailer.text.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mail_handler/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/_issue.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/_issue.text.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/account_activated.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/account_activated.text.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/mailer/attachments_added.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/attachments_added.text.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/document_added.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/document_added.text.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/issue_add.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/issue_add.text.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/issue_edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/issue_edit.text.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/lost_password.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/lost_password.text.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/message_posted.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/message_posted.text.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/news_added.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/news_added.text.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/news_comment_added.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/news_comment_added.text.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/register.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/register.text.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/reminder.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/reminder.text.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/mailer/settings_updated.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/settings_updated.text.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/test_email.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/test_email.text.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/wiki_content_added.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/mailer/wiki_content_added.text.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/members/_edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/members/_new_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/members/_new_modal.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/members/autocomplete.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/members/create.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/members/destroy.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/members/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/members/edit.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/members/index.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/members/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/members/new.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/members/show.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/members/update.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/messages/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/messages/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/messages/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/messages/quote.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/messages/show.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/my/_sidebar.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/my/account.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/my/account.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/my/add_block.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/my/blocks/_activity.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/my/blocks/_calendar.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/my/blocks/_documents.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/my/blocks/_issues.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/my/blocks/_news.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/my/blocks/_timelog.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/my/destroy.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/my/page.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/my/password.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/my/remove_block.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/my/show_api_key.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/my/show_api_key.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/my/update_page.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/news/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/news/_news.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/news/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/news/index.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/news/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/news/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/news/show.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/news/show.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/principal_memberships/edit.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/principal_memberships/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/principal_memberships/new.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/projects/_board.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/projects/_edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/projects/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/projects/_list.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/projects/_members_box.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/projects/_sidebar.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/projects/autocomplete.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/projects/bookmark.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/projects/copy.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/projects/destroy.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/projects/index.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/projects/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/projects/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/projects/settings.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/projects/settings/_boards.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/projects/settings/_issues.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/projects/show.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/projects/show.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/queries/_columns.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/queries/_filters.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/queries/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/queries/_query_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/queries/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/queries/index.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/queries/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/queries/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/reports/_details.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/reports/_simple.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/reports/issue_report.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/repositories/_breadcrumbs.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/repositories/_changeset.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/repositories/_dir_list.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/repositories/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/repositories/_navigation.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/repositories/_revisions.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/repositories/annotate.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/repositories/changes.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/repositories/committers.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/repositories/diff.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/repositories/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/repositories/entry.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/repositories/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/repositories/new.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/repositories/revision.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/repositories/revisions.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/repositories/show.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/repositories/stats.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/roles/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/roles/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/roles/index.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/roles/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/roles/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/roles/permissions.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/roles/show.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/search/index.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/search/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/settings/_api.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/settings/_attachments.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/settings/_authentication.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/settings/_display.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/settings/_general.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/settings/_issues.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/settings/_mail_handler.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/settings/_notifications.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/settings/_projects.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/settings/_repositories.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/settings/_timelog.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/settings/_users.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/settings/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/settings/plugin.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/sudo_mode/_new_modal.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/sudo_mode/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/sudo_mode/new.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/timelog/_date_range.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/timelog/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/timelog/_list.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/timelog/_report_criteria.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/timelog/_sidebar.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/timelog/bulk_edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/timelog/bulk_edit.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/timelog/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/timelog/edit.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/timelog/index.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/timelog/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/timelog/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/timelog/new.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/timelog/report.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/timelog/show.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/trackers/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/trackers/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/trackers/fields.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/trackers/index.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/trackers/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/trackers/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/users/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/users/_general.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/users/_groups.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/users/_mail_notifications.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/users/_memberships.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/users/_preferences.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/users/destroy_membership.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/users/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/users/edit_membership.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/users/index.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/users/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/users/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/users/show.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/users/show.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/versions/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/versions/_issue_counts.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/versions/_new_modal.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/versions/_overview.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/versions/create.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/versions/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/versions/index.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/versions/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/versions/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/versions/new.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/versions/show.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/versions/show.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/versions/status_by.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/watchers/_new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/watchers/_set_watcher.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/watchers/_watchers.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/watchers/append.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
app/views/watchers/create.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/watchers/destroy.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/watchers/new.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/welcome/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/welcome/robots.text.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/_content.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/_new_modal.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/_sidebar.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/annotate.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/date_index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/destroy.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/diff.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/export.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/export.pdf.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/export_multiple.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/history.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/index.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/new.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/new.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/rename.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/show.api.rsb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/show.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wiki/show.pdf.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wikis/destroy.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/wikis/edit.js.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/workflows/_action_menu.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/workflows/_form.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/workflows/copy.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/workflows/edit.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/workflows/index.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
app/views/workflows/permissions.html.erb
0 → 100644
This diff is collapsed.
Click to expand it.
appveyor.yml
0 → 100644
This diff is collapsed.
Click to expand it.
bin/about
0 → 100755
This diff is collapsed.
Click to expand it.
bin/bundle
0 → 100755
This diff is collapsed.
Click to expand it.
bin/changelog.rb
0 → 100644
This diff is collapsed.
Click to expand it.
bin/rails
0 → 100755
This diff is collapsed.
Click to expand it.
bin/rake
0 → 100755
This diff is collapsed.
Click to expand it.
config.ru
0 → 100644
This diff is collapsed.
Click to expand it.
config/additional_environment.rb.example
0 → 100644
This diff is collapsed.
Click to expand it.
config/application.rb
0 → 100644
This diff is collapsed.
Click to expand it.
config/boot.rb
0 → 100644
This diff is collapsed.
Click to expand it.
config/configuration.yml.example
0 → 100644
This diff is collapsed.
Click to expand it.
config/database.yml.example
0 → 100644
This diff is collapsed.
Click to expand it.
config/environment.rb
0 → 100644
This diff is collapsed.
Click to expand it.
config/environments/development.rb
0 → 100644
This diff is collapsed.
Click to expand it.
config/environments/production.rb
0 → 100644
This diff is collapsed.
Click to expand it.
config/environments/test.rb
0 → 100644
This diff is collapsed.
Click to expand it.
config/environments/test_pgsql.rb
0 → 100644
This diff is collapsed.
Click to expand it.
config/environments/test_sqlite3.rb
0 → 100644
This diff is collapsed.
Click to expand it.
config/initializers/00-core_plugins.rb
0 → 100644
This diff is collapsed.
Click to expand it.
config/initializers/10-patches.rb
0 → 100644
This diff is collapsed.
Click to expand it.
config/initializers/20-mime_types.rb
0 → 100644
This diff is collapsed.
Click to expand it.
config/initializers/30-redmine.rb
0 → 100644
This diff is collapsed.
Click to expand it.
config/initializers/backtrace_silencers.rb
0 → 100644
This diff is collapsed.
Click to expand it.
config/initializers/inflections.rb
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/ar.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/az.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/bg.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/bs.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/ca.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/cs.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/da.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/de.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/el.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/en-GB.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/en.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/es-PA.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/es.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/et.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/eu.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/fa.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/fi.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/fr.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/gl.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/he.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/hr.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/hu.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/id.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/it.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/ja.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/ko.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/lt.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/lv.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/mk.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/mn.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/nl.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/no.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/pl.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/pt-BR.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/pt.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/ro.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/ru.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/sk.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/sl.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/sq.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/sr-YU.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/sr.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/sv.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/th.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/tr.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/uk.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/vi.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/zh-TW.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/locales/zh.yml
0 → 100644
This diff is collapsed.
Click to expand it.
config/routes.rb
0 → 100644
This diff is collapsed.
Click to expand it.
config/settings.yml
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/001_setup.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/002_issue_move.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/003_issue_add_note.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/004_export_pdf.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/005_issue_start_date.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/006_calendar_and_activity.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/007_create_journals.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/008_create_user_preferences.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/009_add_hide_mail_pref.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/010_create_comments.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/011_add_news_comments_count.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/012_add_comments_permissions.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/013_create_queries.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/014_add_queries_permissions.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/015_create_repositories.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/017_create_settings.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/019_add_issue_status_position.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/020_add_role_position.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/021_add_tracker_position.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/022_serialize_possibles_values.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/023_add_tracker_is_in_roadmap.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/024_add_roadmap_permission.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/025_add_search_permission.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/027_create_wikis.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/028_create_wiki_pages.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/029_create_wiki_contents.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/031_add_repository_root_url.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/032_create_time_entries.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/033_add_timelog_permissions.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/034_create_changesets.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/035_create_changes.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/036_add_changeset_commit_date.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/037_add_project_identifier.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/038_add_custom_field_is_filter.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/039_create_watchers.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/040_create_changesets_issues.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/041_rename_comment_to_comments.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/042_create_issue_relations.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/043_add_relations_permissions.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/045_create_boards.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/046_create_messages.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/047_add_boards_permissions.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/051_add_project_status.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/052_add_changes_revision.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/053_add_changes_branch.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/054_add_changesets_scmid.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/055_add_repositories_type.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/059_add_roles_assignable.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/061_add_roles_builtin.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/062_insert_builtin_roles.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/063_add_roles_permissions.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/064_drop_permissions.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/065_add_settings_updated_on.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/067_create_wiki_redirects.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/068_create_enabled_modules.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/069_add_issues_estimated_hours.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/071_add_queries_column_names.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/072_add_enumerations_position.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/074_add_auth_sources_tls.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/076_allow_null_position.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/078_add_custom_fields_position.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/080_add_users_type.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/081_create_projects_trackers.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/082_add_messages_locked.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/083_add_messages_sticky.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/090_change_versions_name_limit.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/093_add_wiki_pages_protected.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/095_add_wiki_pages_parent_id.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/100_add_changesets_user_id.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/102_add_custom_fields_editable.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/103_set_custom_fields_editable.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/104_add_projects_lft_and_rgt.rb
0 → 100644
This diff is collapsed.
Click to expand it.
db/migrate/105_build_projects_tree.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/108_add_identity_url_to_users.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/20110223180944_add_users_salt.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
db/migrate/20150730122707_create_imports.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
doc/CHANGELOG
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
doc/COPYING
0 → 100644
This diff is collapsed.
Click to expand it.
doc/INSTALL
0 → 100644
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to comment