diff --git a/www/redmine/Makefile b/www/redmine/Makefile index e285d9e..5c2cf08 100644 --- a/www/redmine/Makefile +++ b/www/redmine/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= redmine -PORTVERSION= 2.6.9 -PORTREVISION= 2 +PORTVERSION= 3.2.2 CATEGORIES= www MASTER_SITES= http://www.redmine.org/releases/ @@ -13,21 +12,21 @@ COMMENT= Flexible project management web application LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/doc/COPYING -RUN_DEPENDS= rubygem-builder>=3.0.0:devel/rubygem-builder \ - rubygem-bundler>=0:sysutils/rubygem-bundler \ - rubygem-coderay>=1.0.9:textproc/rubygem-coderay \ - rubygem-i18n>=0.7.0:devel/rubygem-i18n \ +RUN_DEPENDS= rubygem-bundler>=1.5.0:${PORTSDIR}/sysutils/rubygem-bundler \ + rubygem-rails4>=4.2.5:www/rubygem-rails4 \ rubygem-jquery-rails>=3.1.4:www/rubygem-jquery-rails \ + rubygem-coderay>=1.1.0:textproc/rubygem-coderay \ + rubygem-builder>=3.0.4:devel/rubygem-builder \ + rubygem-request_store>=1.0.5:devel/rubygem-request_store \ rubygem-mime-types>=0:misc/rubygem-mime-types \ - rubygem-net-ldap>=0.3.1:net/rubygem-net-ldap \ - rubygem-rack-openid>=0:www/rubygem-rack-openid \ - rubygem-ruby-openid>=2.3.0:net/rubygem-ruby-openid \ - rubygem-rails>=3.2.22:www/rubygem-rails \ + rubygem-protected_attributes>=0:devel/rubygem-protected_attributes \ + rubygem-actionpack-action_caching>=0:devel/rubygem-actionpack-action_caching \ + rubygem-actionpack-xml_parser>=0:textproc/rubygem-actionpack-xml_parser \ + rubygem-roadie-rails>=0:mail/rubygem-roadie-rails \ + rubygem-rbpdf>=1.19.0:print/rubygem-rbpdf \ rubygem-rake>=0:devel/rubygem-rake \ - rubygem-rbpdf>=0:print/rubygem-rbpdf \ - rubygem-redcarpet>=3.3.2:textproc/rubygem-redcarpet \ - rubygem-request_store>=1.1.0:devel/rubygem-request_store \ - rubygem-rubytree>=0:devel/rubygem-rubytree + rubygem-ruby-openid>=2.3.0:net/rubygem-ruby-openid \ + rubygem-rack-openid>=0:www/rubygem-rack-openid NO_ARCH= yes NO_BUILD= yes @@ -39,22 +38,25 @@ GROUPS= ${WWWGRP} PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} SUB_LIST= RUBY_NAME=${RUBY_NAME} -OPTIONS_DEFINE= MYSQL MYSQL2 POSTGRESQL RMAGIC -OPTIONS_DEFAULT=MYSQL2 RMAGIC THIN +OPTIONS_DEFINE= MYSQL POSTGRESQL LDAP MARKDOWN RMAGIC +OPTIONS_DEFAULT=MYSQL MARKDOWN RMAGIC THIN OPTIONS_SINGLE= WWWSERVER OPTIONS_SINGLE_WWWSERVER= THIN PASSENGER OPTIONS_SUB= yes -POSTGRESQL_DESC=Enable PostgreSQL support +POSTGRESQL_DESC= Enable PostgreSQL support +LDAP_DESC= Enable LDAP Authentification +MARKDOWN_DESC= Enable Markdown support RMAGIC_DESC= Enable Gantt charts support THIN_DESC= Use Thin WEB server PASSENGER_DESC= Use Apache/Nginx WEB server -MYSQL2_DESC= MySQL database support (via mysql2 rubygem) -NO_OPTIONS_SORT=yes +MYSQL_DESC= MySQL database support (via mysql2 rubygem) +NO_OPTIONS_SORT= yes -MYSQL_RUN_DEPENDS= rubygem-mysql>=2.8.1:databases/rubygem-mysql -MYSQL2_RUN_DEPENDS= rubygem-mysql2>=0:databases/rubygem-mysql2 +MYSQL_RUN_DEPENDS= rubygem-mysql2>=0.3.11:databases/rubygem-mysql2 +LDAP_RUN_DEPENDS= rubygem-net-ldap>=0.3.1:net/rubygem-net-ldap PASSENGER_RUN_DEPENDS= passenger-config:www/rubygem-passenger -POSTGRESQL_RUN_DEPENDS= rubygem-pg>=0:databases/rubygem-pg +POSTGRESQL_RUN_DEPENDS= rubygem-pg>=0.18.1:databases/rubygem-pg +MARKDOWN_RUN_DEPENDS= rubygem-redcarpet>=3.3.2:textproc/rubygem-redcarpet RMAGIC_RUN_DEPENDS= rubygem-rmagick>=2.13.4:graphics/rubygem-rmagick THIN_RUN_DEPENDS= thin:www/rubygem-thin THIN_SUB_LIST= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} @@ -63,9 +65,11 @@ THIN_VARS= USE_RC_SUBR=redmine post-extract: @${RM} ${WRKSRC}/.hgignore ${WRKSRC}/.travis.yml @${MV} ${WRKSRC}/config/settings.yml ${WRKSRC}/config/settings.yml.sample + @${MV} ${WRKSRC}/config/database.yml.example ${WRKSRC}/config/database.yml.sample + @${TOUCH} ${WRKSRC}/log/development.log post-patch: - @${FIND} ${WRKSRC} -name '*.bak' -o -name '*.orig' -delete + @${FIND} ${WRKSRC} -name '*.bak' -delete pre-install: ${MKDIR} ${WRKSRC}/public/plugin_assets @@ -76,6 +80,21 @@ do-install: ${MKDIR} ${STAGEDIR}${WWWDIR}/bundler.d cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} +do-install-MYSQL-on: + ${CP} ${FILESDIR}/mysql.rb ${STAGEDIR}${WWWDIR}/bundler.d + +do-install-POSTGRESQL-on: + ${CP} ${FILESDIR}/pg.rb ${STAGEDIR}${WWWDIR}/bundler.d + +do-install-LDAP-on: + ${CP} ${FILESDIR}/ldap.rb ${STAGEDIR}${WWWDIR}/bundler.d + +do-install-OPENID-on: + ${CP} ${FILESDIR}/openid.rb ${STAGEDIR}${WWWDIR}/bundler.d + +do-install-MARKDOWN-on: + ${CP} ${FILESDIR}/markdown.rb ${STAGEDIR}${WWWDIR}/bundler.d + do-install-RMAGIC-on: ${CP} ${FILESDIR}/rmagic.rb ${STAGEDIR}${WWWDIR}/bundler.d diff --git a/www/redmine/distinfo b/www/redmine/distinfo index 0ec2d29..0655a12 100644 --- a/www/redmine/distinfo +++ b/www/redmine/distinfo @@ -1,2 +1,3 @@ -SHA256 (redmine-2.6.9.tar.gz) = 15cafc3983e0520c3ecc6105ef33031f55b1dc2b21270d092938562b47362d4c -SIZE (redmine-2.6.9.tar.gz) = 2127454 +TIMESTAMP = 1464786515 +SHA256 (redmine-3.2.2.tar.gz) = a22396602c2871b162d9f530c8171b0fd5f73d2f4b98c47dc48c5e3f880186cc +SIZE (redmine-3.2.2.tar.gz) = 2311215 diff --git a/www/redmine/files/ldap.rb b/www/redmine/files/ldap.rb new file mode 100644 index 0000000..e5f4b22 --- /dev/null +++ b/www/redmine/files/ldap.rb @@ -0,0 +1 @@ +gem "net-ldap", ">= 0.12.0" diff --git a/www/redmine/files/markdown.rb b/www/redmine/files/markdown.rb new file mode 100644 index 0000000..c86871c --- /dev/null +++ b/www/redmine/files/markdown.rb @@ -0,0 +1 @@ +gem "redcarpet", ">= 3.3.2" diff --git a/www/redmine/files/mysql.rb b/www/redmine/files/mysql.rb new file mode 100644 index 0000000..818abca --- /dev/null +++ b/www/redmine/files/mysql.rb @@ -0,0 +1 @@ +gem "mysql2", "~> 0.3.11" diff --git a/www/redmine/files/patch-Gemfile b/www/redmine/files/patch-Gemfile index f996342..6169db2 100644 --- a/www/redmine/files/patch-Gemfile +++ b/www/redmine/files/patch-Gemfile @@ -1,30 +1,28 @@ ---- Gemfile.orig 2015-12-05 08:47:22 UTC +--- Gemfile.orig 2016-05-05 18:39:09 UTC +++ Gemfile -@@ -1,37 +1,29 @@ - source 'https://rubygems.org' +@@ -4,11 +4,11 @@ if Gem::Version.new(Bundler::VERSION) < + abort "Redmine requires Bundler 1.5.0 or higher (you're using #{Bundler::VERSION}).\nPlease update with 'gem update bundler'." + end --gem "rails", "3.2.22" -+gem "rails", "~> 3.2" - gem "rack-cache", "1.2" if RUBY_VERSION < "1.9.3" +-gem "rails", "4.2.5.2" ++gem "rails", ">= 4.2.5.2" gem "jquery-rails", "~> 3.1.4" gem "coderay", "~> 1.1.0" - gem "fastercsv", "~> 1.5.0", :platforms => [:mri_18, :mingw_18, :jruby] gem "builder", ">= 3.0.4" -gem "request_store", "1.0.5" +gem "request_store", ">= 1.0.5" - gem "mime-types" --gem "rbpdf", "~> 1.18.7" -+gem "rbpdf", ">= 1.18.7" - --gem "i18n", "~> 0.6.11" -+gem "i18n", ">= 0.6.11" - - # Optional gem for LDAP authentication - group :ldap do -- gem "net-ldap", "~> 0.3.1" -+ gem "net-ldap", ">= 0.3.1" - end + gem "mime-types", (RUBY_VERSION >= "2.0" ? "~> 3.0" : "~> 2.99") + gem "protected_attributes" + gem "actionpack-action_caching" +@@ -26,29 +26,12 @@ gem "rails-html-sanitizer", ">= 1.0.3" + gem 'tzinfo-data', platforms: [:mingw, :x64_mingw, :mswin, :jruby] + gem "rbpdf", "~> 1.19.0" +-# Optional gem for LDAP authentication +-group :ldap do +- gem "net-ldap", "~> 0.12.0" +-end +- # Optional gem for OpenID authentication group :openid do - gem "ruby-openid", "~> 2.3.0", :require => "openid" @@ -32,28 +30,22 @@ gem "rack-openid" end - platforms :mri, :mingw do +-platforms :mri, :mingw, :x64_mingw do - # Optional gem for exporting the gantt to a PNG file, not supported with jruby - group :rmagick do -- # RMagick 2 supports ruby 1.9 -- # RMagick 1 would be fine for ruby 1.8 but Bundler does not support -- # different requirements for the same gem on different platforms -- gem "rmagick", (RUBY_VERSION < "1.9" ? "2.13.3" : "~> 2.13.4") +- gem "rmagick", ">= 2.14.0" - end - - # Optional Markdown support, not for JRuby - group :markdown do - gem "redcarpet", (RUBY_VERSION < "1.9" ? "~> 2.3.0" : "~> 3.3.2") -@@ -62,7 +54,7 @@ if File.exist?(database_file) - gem "mysql", "~> 2.8.1", :platforms => [:mri, :mingw] - gem "activerecord-jdbcmysql-adapter", :platforms => :jruby - when /postgresql/ -- gem "pg", "~> 0.17.1", :platforms => [:mri, :mingw] -+ gem "pg", "~> 0.18.4", :platforms => [:mri, :mingw] - gem "activerecord-jdbcpostgresql-adapter", :platforms => :jruby - when /sqlite3/ - gem "sqlite3", :platforms => [:mri, :mingw] -@@ -82,23 +74,6 @@ else +- # Optional Markdown support, not for JRuby +- group :markdown do +- gem "redcarpet", "~> 3.3.2" +- end +-end +- + platforms :jruby do + # jruby-openssl is bundled with JRuby 1.7.0 + gem "jruby-openssl" if Object.const_defined?(:JRUBY_VERSION) && JRUBY_VERSION < '1.7.0' +@@ -92,21 +75,6 @@ else warn("Please configure your config/database.yml first") end @@ -64,22 +56,20 @@ - -group :test do - gem "minitest" -- gem "test-unit", "~> 3.0" -- gem "shoulda", "~> 3.3.2" -- gem "shoulda-matchers", "1.4.1" -- gem "mocha", "~> 1.0.0", :require => 'mocha/api' -- if RUBY_VERSION >= '1.9.3' -- gem "capybara" -- gem "selenium-webdriver" -- end +- gem "rails-dom-testing" +- gem "mocha" +- gem "simplecov", "~> 0.9.1", :require => false +- # For running UI tests +- gem "capybara" +- gem "selenium-webdriver" -end - local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local") if File.exists?(local_gemfile) - puts "Loading Gemfile.local ..." if $DEBUG # `ruby -d` or `bundle -v` -@@ -111,3 +86,7 @@ Dir.glob File.expand_path("../plugins/*/ - #TODO: switch to "eval_gemfile file" when bundler >= 1.2.0 will be required (rails 4) - instance_eval File.read(file), file + eval_gemfile local_gemfile +@@ -116,3 +84,7 @@ end + Dir.glob File.expand_path("../plugins/*/{Gemfile,PluginGemfile}", __FILE__) do |file| + eval_gemfile file end + +Dir["#{File.dirname(__FILE__)}/bundler.d/*.rb"].each do |bundle| diff --git a/www/redmine/files/pg.rb b/www/redmine/files/pg.rb new file mode 100644 index 0000000..ccd06db --- /dev/null +++ b/www/redmine/files/pg.rb @@ -0,0 +1 @@ +gem "pg", "~> 0.18.1" diff --git a/www/redmine/files/rmagic.rb b/www/redmine/files/rmagic.rb index f9849be..8b50a86 100644 --- a/www/redmine/files/rmagic.rb +++ b/www/redmine/files/rmagic.rb @@ -1 +1 @@ -gem "rmagick", ">= 2.13.4" +gem "rmagick", ">= 2.14.0" diff --git a/www/redmine/pkg-plist b/www/redmine/pkg-plist index 053d59e..c92bf50 100644 --- a/www/redmine/pkg-plist +++ b/www/redmine/pkg-plist @@ -18,12 +18,15 @@ %%WWWDIR%%/app/controllers/calendars_controller.rb %%WWWDIR%%/app/controllers/comments_controller.rb %%WWWDIR%%/app/controllers/context_menus_controller.rb +%%WWWDIR%%/app/controllers/custom_field_enumerations_controller.rb %%WWWDIR%%/app/controllers/custom_fields_controller.rb %%WWWDIR%%/app/controllers/documents_controller.rb +%%WWWDIR%%/app/controllers/email_addresses_controller.rb %%WWWDIR%%/app/controllers/enumerations_controller.rb %%WWWDIR%%/app/controllers/files_controller.rb %%WWWDIR%%/app/controllers/gantts_controller.rb %%WWWDIR%%/app/controllers/groups_controller.rb +%%WWWDIR%%/app/controllers/imports_controller.rb %%WWWDIR%%/app/controllers/issue_categories_controller.rb %%WWWDIR%%/app/controllers/issue_relations_controller.rb %%WWWDIR%%/app/controllers/issue_statuses_controller.rb @@ -35,6 +38,7 @@ %%WWWDIR%%/app/controllers/my_controller.rb %%WWWDIR%%/app/controllers/news_controller.rb %%WWWDIR%%/app/controllers/previews_controller.rb +%%WWWDIR%%/app/controllers/principal_memberships_controller.rb %%WWWDIR%%/app/controllers/project_enumerations_controller.rb %%WWWDIR%%/app/controllers/projects_controller.rb %%WWWDIR%%/app/controllers/queries_controller.rb @@ -64,9 +68,11 @@ %%WWWDIR%%/app/helpers/context_menus_helper.rb %%WWWDIR%%/app/helpers/custom_fields_helper.rb %%WWWDIR%%/app/helpers/documents_helper.rb +%%WWWDIR%%/app/helpers/email_addresses_helper.rb %%WWWDIR%%/app/helpers/enumerations_helper.rb %%WWWDIR%%/app/helpers/gantt_helper.rb %%WWWDIR%%/app/helpers/groups_helper.rb +%%WWWDIR%%/app/helpers/imports_helper.rb %%WWWDIR%%/app/helpers/issue_categories_helper.rb %%WWWDIR%%/app/helpers/issue_relations_helper.rb %%WWWDIR%%/app/helpers/issue_statuses_helper.rb @@ -77,6 +83,7 @@ %%WWWDIR%%/app/helpers/messages_helper.rb %%WWWDIR%%/app/helpers/my_helper.rb %%WWWDIR%%/app/helpers/news_helper.rb +%%WWWDIR%%/app/helpers/principal_memberships_helper.rb %%WWWDIR%%/app/helpers/projects_helper.rb %%WWWDIR%%/app/helpers/queries_helper.rb %%WWWDIR%%/app/helpers/reports_helper.rb @@ -102,11 +109,14 @@ %%WWWDIR%%/app/models/changeset.rb %%WWWDIR%%/app/models/comment.rb %%WWWDIR%%/app/models/custom_field.rb +%%WWWDIR%%/app/models/custom_field_enumeration.rb %%WWWDIR%%/app/models/custom_field_value.rb %%WWWDIR%%/app/models/custom_value.rb %%WWWDIR%%/app/models/document.rb %%WWWDIR%%/app/models/document_category.rb %%WWWDIR%%/app/models/document_category_custom_field.rb +%%WWWDIR%%/app/models/document_custom_field.rb +%%WWWDIR%%/app/models/email_address.rb %%WWWDIR%%/app/models/enabled_module.rb %%WWWDIR%%/app/models/enumeration.rb %%WWWDIR%%/app/models/group.rb @@ -114,9 +124,12 @@ %%WWWDIR%%/app/models/group_builtin.rb %%WWWDIR%%/app/models/group_custom_field.rb %%WWWDIR%%/app/models/group_non_member.rb +%%WWWDIR%%/app/models/import.rb +%%WWWDIR%%/app/models/import_item.rb %%WWWDIR%%/app/models/issue.rb %%WWWDIR%%/app/models/issue_category.rb %%WWWDIR%%/app/models/issue_custom_field.rb +%%WWWDIR%%/app/models/issue_import.rb %%WWWDIR%%/app/models/issue_priority.rb %%WWWDIR%%/app/models/issue_priority_custom_field.rb %%WWWDIR%%/app/models/issue_query.rb @@ -180,6 +193,7 @@ %%WWWDIR%%/app/views/attachments/_links.html.erb %%WWWDIR%%/app/views/attachments/destroy.js.erb %%WWWDIR%%/app/views/attachments/diff.html.erb +%%WWWDIR%%/app/views/attachments/edit.html.erb %%WWWDIR%%/app/views/attachments/file.html.erb %%WWWDIR%%/app/views/attachments/show.api.rsb %%WWWDIR%%/app/views/attachments/upload.api.rsb @@ -206,11 +220,15 @@ %%WWWDIR%%/app/views/common/feed.atom.builder %%WWWDIR%%/app/views/context_menus/issues.html.erb %%WWWDIR%%/app/views/context_menus/time_entries.html.erb +%%WWWDIR%%/app/views/custom_field_enumerations/create.js.erb +%%WWWDIR%%/app/views/custom_field_enumerations/destroy.html.erb +%%WWWDIR%%/app/views/custom_field_enumerations/index.html.erb %%WWWDIR%%/app/views/custom_fields/_form.html.erb %%WWWDIR%%/app/views/custom_fields/_index.html.erb %%WWWDIR%%/app/views/custom_fields/edit.html.erb %%WWWDIR%%/app/views/custom_fields/formats/_bool.html.erb %%WWWDIR%%/app/views/custom_fields/formats/_date.html.erb +%%WWWDIR%%/app/views/custom_fields/formats/_enumeration.erb %%WWWDIR%%/app/views/custom_fields/formats/_link.html.erb %%WWWDIR%%/app/views/custom_fields/formats/_list.html.erb %%WWWDIR%%/app/views/custom_fields/formats/_numeric.html.erb @@ -230,6 +248,9 @@ %%WWWDIR%%/app/views/documents/index.html.erb %%WWWDIR%%/app/views/documents/new.html.erb %%WWWDIR%%/app/views/documents/show.html.erb +%%WWWDIR%%/app/views/email_addresses/_index.html.erb +%%WWWDIR%%/app/views/email_addresses/index.html.erb +%%WWWDIR%%/app/views/email_addresses/index.js.erb %%WWWDIR%%/app/views/enumerations/_form.html.erb %%WWWDIR%%/app/views/enumerations/destroy.html.erb %%WWWDIR%%/app/views/enumerations/edit.html.erb @@ -242,6 +263,8 @@ %%WWWDIR%%/app/views/groups/_form.html.erb %%WWWDIR%%/app/views/groups/_general.html.erb %%WWWDIR%%/app/views/groups/_memberships.html.erb +%%WWWDIR%%/app/views/groups/_new_users_form.html.erb +%%WWWDIR%%/app/views/groups/_new_users_modal.html.erb %%WWWDIR%%/app/views/groups/_users.html.erb %%WWWDIR%%/app/views/groups/add_users.js.erb %%WWWDIR%%/app/views/groups/autocomplete_for_user.js.erb @@ -251,9 +274,19 @@ %%WWWDIR%%/app/views/groups/index.api.rsb %%WWWDIR%%/app/views/groups/index.html.erb %%WWWDIR%%/app/views/groups/new.html.erb +%%WWWDIR%%/app/views/groups/new_users.html.erb +%%WWWDIR%%/app/views/groups/new_users.js.erb %%WWWDIR%%/app/views/groups/remove_user.js.erb %%WWWDIR%%/app/views/groups/show.api.rsb %%WWWDIR%%/app/views/groups/show.html.erb +%%WWWDIR%%/app/views/imports/_fields_mapping.html.erb +%%WWWDIR%%/app/views/imports/mapping.html.erb +%%WWWDIR%%/app/views/imports/mapping.js.erb +%%WWWDIR%%/app/views/imports/new.html.erb +%%WWWDIR%%/app/views/imports/run.html.erb +%%WWWDIR%%/app/views/imports/run.js.erb +%%WWWDIR%%/app/views/imports/settings.html.erb +%%WWWDIR%%/app/views/imports/show.html.erb %%WWWDIR%%/app/views/issue_categories/_form.html.erb %%WWWDIR%%/app/views/issue_categories/_new_modal.html.erb %%WWWDIR%%/app/views/issue_categories/create.js.erb @@ -289,12 +322,15 @@ %%WWWDIR%%/app/views/issues/bulk_edit.js.erb %%WWWDIR%%/app/views/issues/destroy.html.erb %%WWWDIR%%/app/views/issues/edit.html.erb +%%WWWDIR%%/app/views/issues/edit.js.erb %%WWWDIR%%/app/views/issues/index.api.rsb %%WWWDIR%%/app/views/issues/index.html.erb +%%WWWDIR%%/app/views/issues/index.pdf.erb %%WWWDIR%%/app/views/issues/new.html.erb +%%WWWDIR%%/app/views/issues/new.js.erb %%WWWDIR%%/app/views/issues/show.api.rsb %%WWWDIR%%/app/views/issues/show.html.erb -%%WWWDIR%%/app/views/issues/update_form.js.erb +%%WWWDIR%%/app/views/issues/show.pdf.erb %%WWWDIR%%/app/views/journals/_notes_form.html.erb %%WWWDIR%%/app/views/journals/diff.html.erb %%WWWDIR%%/app/views/journals/edit.js.erb @@ -305,6 +341,7 @@ %%WWWDIR%%/app/views/layouts/base.html.erb %%WWWDIR%%/app/views/layouts/mailer.html.erb %%WWWDIR%%/app/views/layouts/mailer.text.erb +%%WWWDIR%%/app/views/mail_handler/new.html.erb %%WWWDIR%%/app/views/mailer/_issue.html.erb %%WWWDIR%%/app/views/mailer/_issue.text.erb %%WWWDIR%%/app/views/mailer/account_activated.html.erb @@ -339,10 +376,14 @@ %%WWWDIR%%/app/views/mailer/wiki_content_added.text.erb %%WWWDIR%%/app/views/mailer/wiki_content_updated.html.erb %%WWWDIR%%/app/views/mailer/wiki_content_updated.text.erb +%%WWWDIR%%/app/views/members/_new_form.html.erb +%%WWWDIR%%/app/views/members/_new_modal.html.erb %%WWWDIR%%/app/views/members/autocomplete.js.erb %%WWWDIR%%/app/views/members/create.js.erb %%WWWDIR%%/app/views/members/destroy.js.erb %%WWWDIR%%/app/views/members/index.api.rsb +%%WWWDIR%%/app/views/members/new.html.erb +%%WWWDIR%%/app/views/members/new.js.erb %%WWWDIR%%/app/views/members/show.api.rsb %%WWWDIR%%/app/views/members/update.js.erb %%WWWDIR%%/app/views/messages/_form.html.erb @@ -364,6 +405,8 @@ %%WWWDIR%%/app/views/my/page.html.erb %%WWWDIR%%/app/views/my/page_layout.html.erb %%WWWDIR%%/app/views/my/password.html.erb +%%WWWDIR%%/app/views/my/show_api_key.html.erb +%%WWWDIR%%/app/views/my/show_api_key.js.erb %%WWWDIR%%/app/views/news/_form.html.erb %%WWWDIR%%/app/views/news/_news.html.erb %%WWWDIR%%/app/views/news/edit.html.erb @@ -372,6 +415,14 @@ %%WWWDIR%%/app/views/news/new.html.erb %%WWWDIR%%/app/views/news/show.html.erb %%WWWDIR%%/app/views/previews/issue.html.erb +%%WWWDIR%%/app/views/principal_memberships/_index.html.erb +%%WWWDIR%%/app/views/principal_memberships/_new_form.html.erb +%%WWWDIR%%/app/views/principal_memberships/_new_modal.html.erb +%%WWWDIR%%/app/views/principal_memberships/create.js.erb +%%WWWDIR%%/app/views/principal_memberships/destroy.js.erb +%%WWWDIR%%/app/views/principal_memberships/new.html.erb +%%WWWDIR%%/app/views/principal_memberships/new.js.erb +%%WWWDIR%%/app/views/principal_memberships/update.js.erb %%WWWDIR%%/app/views/projects/_edit.html.erb %%WWWDIR%%/app/views/projects/_form.html.erb %%WWWDIR%%/app/views/projects/_members_box.html.erb @@ -380,7 +431,6 @@ %%WWWDIR%%/app/views/projects/destroy.html.erb %%WWWDIR%%/app/views/projects/index.api.rsb %%WWWDIR%%/app/views/projects/index.html.erb -%%WWWDIR%%/app/views/projects/list_members.html.erb %%WWWDIR%%/app/views/projects/new.html.erb %%WWWDIR%%/app/views/projects/settings.html.erb %%WWWDIR%%/app/views/projects/settings/_activities.html.erb @@ -435,6 +485,8 @@ %%WWWDIR%%/app/views/roles/permissions.html.erb %%WWWDIR%%/app/views/roles/show.api.rsb %%WWWDIR%%/app/views/search/index.html.erb +%%WWWDIR%%/app/views/settings/_api.html.erb +%%WWWDIR%%/app/views/settings/_attachments.html.erb %%WWWDIR%%/app/views/settings/_authentication.html.erb %%WWWDIR%%/app/views/settings/_display.html.erb %%WWWDIR%%/app/views/settings/_general.html.erb @@ -445,6 +497,9 @@ %%WWWDIR%%/app/views/settings/_repositories.html.erb %%WWWDIR%%/app/views/settings/edit.html.erb %%WWWDIR%%/app/views/settings/plugin.html.erb +%%WWWDIR%%/app/views/sudo_mode/_new_modal.html.erb +%%WWWDIR%%/app/views/sudo_mode/new.html.erb +%%WWWDIR%%/app/views/sudo_mode/new.js.erb %%WWWDIR%%/app/views/timelog/_date_range.html.erb %%WWWDIR%%/app/views/timelog/_form.html.erb %%WWWDIR%%/app/views/timelog/_list.html.erb @@ -454,6 +509,7 @@ %%WWWDIR%%/app/views/timelog/index.api.rsb %%WWWDIR%%/app/views/timelog/index.html.erb %%WWWDIR%%/app/views/timelog/new.html.erb +%%WWWDIR%%/app/views/timelog/new.js.erb %%WWWDIR%%/app/views/timelog/report.html.erb %%WWWDIR%%/app/views/timelog/show.api.rsb %%WWWDIR%%/app/views/trackers/_form.html.erb @@ -507,6 +563,7 @@ %%WWWDIR%%/app/views/wiki/diff.html.erb %%WWWDIR%%/app/views/wiki/edit.html.erb %%WWWDIR%%/app/views/wiki/export.html.erb +%%WWWDIR%%/app/views/wiki/export.pdf.erb %%WWWDIR%%/app/views/wiki/export_multiple.html.erb %%WWWDIR%%/app/views/wiki/history.html.erb %%WWWDIR%%/app/views/wiki/index.api.rsb @@ -514,6 +571,7 @@ %%WWWDIR%%/app/views/wiki/rename.html.erb %%WWWDIR%%/app/views/wiki/show.api.rsb %%WWWDIR%%/app/views/wiki/show.html.erb +%%WWWDIR%%/app/views/wiki/show.pdf.erb %%WWWDIR%%/app/views/wikis/destroy.html.erb %%WWWDIR%%/app/views/wikis/edit.js.erb %%WWWDIR%%/app/views/workflows/_action_menu.html.erb @@ -522,12 +580,17 @@ %%WWWDIR%%/app/views/workflows/edit.html.erb %%WWWDIR%%/app/views/workflows/index.html.erb %%WWWDIR%%/app/views/workflows/permissions.html.erb +%%WWWDIR%%/appveyor.yml +%%WWWDIR%%/bin/about +%%WWWDIR%%/bin/bundle +%%WWWDIR%%/bin/rails +%%WWWDIR%%/bin/rake %%WWWDIR%%/config.ru %%WWWDIR%%/config/additional_environment.rb.example %%WWWDIR%%/config/application.rb %%WWWDIR%%/config/boot.rb %%WWWDIR%%/config/configuration.yml.example -%%WWWDIR%%/config/database.yml.example +@sample %%WWWDIR%%/config/database.yml.sample %%WWWDIR%%/config/environment.rb %%WWWDIR%%/config/environments/development.rb %%WWWDIR%%/config/environments/production.rb @@ -551,6 +614,7 @@ %%WWWDIR%%/config/locales/el.yml %%WWWDIR%%/config/locales/en-GB.yml %%WWWDIR%%/config/locales/en.yml +%%WWWDIR%%/config/locales/es-PA.yml %%WWWDIR%%/config/locales/es.yml %%WWWDIR%%/config/locales/et.yml %%WWWDIR%%/config/locales/eu.yml @@ -588,7 +652,6 @@ %%WWWDIR%%/config/locales/vi.yml %%WWWDIR%%/config/locales/zh-TW.yml %%WWWDIR%%/config/locales/zh.yml -%%WWWDIR%%/config/preinitializer.rb %%WWWDIR%%/config/routes.rb %%WWWDIR%%/db/migrate/001_setup.rb %%WWWDIR%%/db/migrate/002_issue_move.rb @@ -827,6 +890,34 @@ %%WWWDIR%%/db/migrate/20140228130325_change_changesets_comments_limit.rb %%WWWDIR%%/db/migrate/20140903143914_add_password_changed_at_to_user.rb %%WWWDIR%%/db/migrate/20140920094058_insert_builtin_groups.rb +%%WWWDIR%%/db/migrate/20141029181752_add_trackers_default_status_id.rb +%%WWWDIR%%/db/migrate/20141029181824_remove_issue_statuses_is_default.rb +%%WWWDIR%%/db/migrate/20141109112308_add_roles_users_visibility.rb +%%WWWDIR%%/db/migrate/20141122124142_add_wiki_redirects_redirects_to_wiki_id.rb +%%WWWDIR%%/db/migrate/20150113194759_create_email_addresses.rb +%%WWWDIR%%/db/migrate/20150113211532_populate_email_addresses.rb +%%WWWDIR%%/db/migrate/20150113213922_remove_users_mail.rb +%%WWWDIR%%/db/migrate/20150113213955_add_email_addresses_user_id_index.rb +%%WWWDIR%%/db/migrate/20150208105930_replace_move_issues_permission.rb +%%WWWDIR%%/db/migrate/20150510083747_change_documents_title_limit.rb +%%WWWDIR%%/db/migrate/20150525103953_clear_estimated_hours_on_parent_issues.rb +%%WWWDIR%%/db/migrate/20150526183158_add_roles_time_entries_visibility.rb +%%WWWDIR%%/db/migrate/20150528084820_add_roles_all_roles_managed.rb +%%WWWDIR%%/db/migrate/20150528092912_create_roles_managed_roles.rb +%%WWWDIR%%/db/migrate/20150528093249_add_unique_index_on_roles_managed_roles.rb +%%WWWDIR%%/db/migrate/20150725112753_insert_allowed_statuses_for_new_issues.rb +%%WWWDIR%%/db/migrate/20150730122707_create_imports.rb +%%WWWDIR%%/db/migrate/20150730122735_create_import_items.rb +%%WWWDIR%%/db/migrate/20150921204850_change_time_entries_comments_limit_to_1024.rb +%%WWWDIR%%/db/migrate/20150921210243_change_wiki_contents_comments_limit_to_1024.rb +%%WWWDIR%%/db/migrate/20151020182334_change_attachments_filesize_limit_to_8.rb +%%WWWDIR%%/db/migrate/20151020182731_fix_comma_in_user_format_setting_value.rb +%%WWWDIR%%/db/migrate/20151021184614_change_issue_categories_name_limit_to_60.rb +%%WWWDIR%%/db/migrate/20151021185456_change_auth_sources_filter_to_text.rb +%%WWWDIR%%/db/migrate/20151021190616_change_user_preferences_hide_mail_default_to_true.rb +%%WWWDIR%%/db/migrate/20151024082034_add_tokens_updated_on.rb +%%WWWDIR%%/db/migrate/20151025072118_create_custom_field_enumerations.rb +%%WWWDIR%%/db/migrate/20151031095005_add_projects_default_version_id.rb %%WWWDIR%%/doc/CHANGELOG %%WWWDIR%%/doc/COPYING %%WWWDIR%%/doc/INSTALL @@ -931,47 +1022,6 @@ %%WWWDIR%%/lib/plugins/acts_as_versioned/test/versioned_test.rb %%WWWDIR%%/lib/plugins/acts_as_watchable/init.rb %%WWWDIR%%/lib/plugins/acts_as_watchable/lib/acts_as_watchable.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/.autotest -%%WWWDIR%%/lib/plugins/awesome_nested_set/.gitignore -%%WWWDIR%%/lib/plugins/awesome_nested_set/.travis.yml -%%WWWDIR%%/lib/plugins/awesome_nested_set/CHANGELOG -%%WWWDIR%%/lib/plugins/awesome_nested_set/CONTRIBUTING.md -%%WWWDIR%%/lib/plugins/awesome_nested_set/Gemfile -%%WWWDIR%%/lib/plugins/awesome_nested_set/MIT-LICENSE -%%WWWDIR%%/lib/plugins/awesome_nested_set/README.md -%%WWWDIR%%/lib/plugins/awesome_nested_set/Rakefile -%%WWWDIR%%/lib/plugins/awesome_nested_set/awesome_nested_set.gemspec -%%WWWDIR%%/lib/plugins/awesome_nested_set/gemfiles/Gemfile.rails-3.0.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/gemfiles/Gemfile.rails-3.1.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/gemfiles/Gemfile.rails-3.2.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/init.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/lib/awesome_nested_set.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/lib/awesome_nested_set/awesome_nested_set.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/lib/awesome_nested_set/columns.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/lib/awesome_nested_set/helper.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/lib/awesome_nested_set/iterator.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/lib/awesome_nested_set/model.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/lib/awesome_nested_set/model/movable.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/lib/awesome_nested_set/model/prunable.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/lib/awesome_nested_set/model/rebuildable.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/lib/awesome_nested_set/model/relatable.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/lib/awesome_nested_set/model/transactable.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/lib/awesome_nested_set/model/validatable.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/lib/awesome_nested_set/move.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/lib/awesome_nested_set/set_validator.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/lib/awesome_nested_set/tree.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/lib/awesome_nested_set/version.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/spec/awesome_nested_set/helper_spec.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/spec/awesome_nested_set_spec.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/spec/db/database.yml -%%WWWDIR%%/lib/plugins/awesome_nested_set/spec/db/schema.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/spec/fixtures/brokens.yml -%%WWWDIR%%/lib/plugins/awesome_nested_set/spec/fixtures/categories.yml -%%WWWDIR%%/lib/plugins/awesome_nested_set/spec/fixtures/departments.yml -%%WWWDIR%%/lib/plugins/awesome_nested_set/spec/fixtures/notes.yml -%%WWWDIR%%/lib/plugins/awesome_nested_set/spec/fixtures/things.yml -%%WWWDIR%%/lib/plugins/awesome_nested_set/spec/spec_helper.rb -%%WWWDIR%%/lib/plugins/awesome_nested_set/spec/support/models.rb %%WWWDIR%%/lib/plugins/gravatar/.gitignore %%WWWDIR%%/lib/plugins/gravatar/MIT-LICENSE %%WWWDIR%%/lib/plugins/gravatar/README.rdoc @@ -1017,19 +1067,28 @@ %%WWWDIR%%/lib/redmine/core_ext/string.rb %%WWWDIR%%/lib/redmine/core_ext/string/conversions.rb %%WWWDIR%%/lib/redmine/core_ext/string/inflections.rb +%%WWWDIR%%/lib/redmine/database.rb %%WWWDIR%%/lib/redmine/default_data/loader.rb +%%WWWDIR%%/lib/redmine/export/csv.rb %%WWWDIR%%/lib/redmine/export/pdf.rb +%%WWWDIR%%/lib/redmine/export/pdf/issues_pdf_helper.rb +%%WWWDIR%%/lib/redmine/export/pdf/wiki_pdf_helper.rb %%WWWDIR%%/lib/redmine/field_format.rb %%WWWDIR%%/lib/redmine/helpers/calendar.rb %%WWWDIR%%/lib/redmine/helpers/diff.rb %%WWWDIR%%/lib/redmine/helpers/gantt.rb %%WWWDIR%%/lib/redmine/helpers/time_report.rb %%WWWDIR%%/lib/redmine/hook.rb +%%WWWDIR%%/lib/redmine/hook/listener.rb +%%WWWDIR%%/lib/redmine/hook/view_listener.rb %%WWWDIR%%/lib/redmine/i18n.rb %%WWWDIR%%/lib/redmine/imap.rb %%WWWDIR%%/lib/redmine/info.rb %%WWWDIR%%/lib/redmine/menu_manager.rb %%WWWDIR%%/lib/redmine/mime_type.rb +%%WWWDIR%%/lib/redmine/nested_set/issue_nested_set.rb +%%WWWDIR%%/lib/redmine/nested_set/project_nested_set.rb +%%WWWDIR%%/lib/redmine/nested_set/traversing.rb %%WWWDIR%%/lib/redmine/notifiable.rb %%WWWDIR%%/lib/redmine/pagination.rb %%WWWDIR%%/lib/redmine/platform.rb @@ -1050,6 +1109,7 @@ %%WWWDIR%%/lib/redmine/scm/base.rb %%WWWDIR%%/lib/redmine/search.rb %%WWWDIR%%/lib/redmine/subclass_factory.rb +%%WWWDIR%%/lib/redmine/sudo_mode.rb %%WWWDIR%%/lib/redmine/syntax_highlighting.rb %%WWWDIR%%/lib/redmine/themes.rb %%WWWDIR%%/lib/redmine/thumbnail.rb @@ -1065,11 +1125,14 @@ %%WWWDIR%%/lib/redmine/views/my_page/block.rb %%WWWDIR%%/lib/redmine/views/other_formats_builder.rb %%WWWDIR%%/lib/redmine/wiki_formatting.rb +%%WWWDIR%%/lib/redmine/wiki_formatting/html_parser.rb %%WWWDIR%%/lib/redmine/wiki_formatting/macros.rb %%WWWDIR%%/lib/redmine/wiki_formatting/markdown/formatter.rb %%WWWDIR%%/lib/redmine/wiki_formatting/markdown/helper.rb +%%WWWDIR%%/lib/redmine/wiki_formatting/markdown/html_parser.rb %%WWWDIR%%/lib/redmine/wiki_formatting/textile/formatter.rb %%WWWDIR%%/lib/redmine/wiki_formatting/textile/helper.rb +%%WWWDIR%%/lib/redmine/wiki_formatting/textile/html_parser.rb %%WWWDIR%%/lib/tasks/ci.rake %%WWWDIR%%/lib/tasks/ciphering.rake %%WWWDIR%%/lib/tasks/deprecated.rake @@ -1092,102 +1155,202 @@ %%WWWDIR%%/public/500.html %%WWWDIR%%/public/dispatch.fcgi.example %%WWWDIR%%/public/favicon.ico -%%WWWDIR%%/public/help/ar/wiki_syntax.html -%%WWWDIR%%/public/help/ar/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/az/wiki_syntax.html -%%WWWDIR%%/public/help/az/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/bg/wiki_syntax.html -%%WWWDIR%%/public/help/bg/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/bs/wiki_syntax.html -%%WWWDIR%%/public/help/bs/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/ca/wiki_syntax.html -%%WWWDIR%%/public/help/ca/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/cs/wiki_syntax.html -%%WWWDIR%%/public/help/cs/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/da/wiki_syntax.html -%%WWWDIR%%/public/help/da/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/de/wiki_syntax.html -%%WWWDIR%%/public/help/de/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/el/wiki_syntax.html -%%WWWDIR%%/public/help/el/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/en-gb/wiki_syntax.html -%%WWWDIR%%/public/help/en-gb/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/en/wiki_syntax.html -%%WWWDIR%%/public/help/en/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/es/wiki_syntax.html -%%WWWDIR%%/public/help/es/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/et/wiki_syntax.html -%%WWWDIR%%/public/help/et/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/eu/wiki_syntax.html -%%WWWDIR%%/public/help/eu/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/fa/wiki_syntax.html -%%WWWDIR%%/public/help/fa/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/fi/wiki_syntax.html -%%WWWDIR%%/public/help/fi/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/fr/wiki_syntax.html -%%WWWDIR%%/public/help/fr/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/gl/wiki_syntax.html -%%WWWDIR%%/public/help/gl/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/he/wiki_syntax.html -%%WWWDIR%%/public/help/he/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/hr/wiki_syntax.html -%%WWWDIR%%/public/help/hr/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/hu/wiki_syntax.html -%%WWWDIR%%/public/help/hu/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/id/wiki_syntax.html -%%WWWDIR%%/public/help/id/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/it/wiki_syntax.html -%%WWWDIR%%/public/help/it/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/ja/wiki_syntax.html -%%WWWDIR%%/public/help/ja/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/ko/wiki_syntax.html -%%WWWDIR%%/public/help/ko/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/lt/wiki_syntax.html -%%WWWDIR%%/public/help/lt/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/lv/wiki_syntax.html -%%WWWDIR%%/public/help/lv/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/mk/wiki_syntax.html -%%WWWDIR%%/public/help/mk/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/mn/wiki_syntax.html -%%WWWDIR%%/public/help/mn/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/nl/wiki_syntax.html -%%WWWDIR%%/public/help/nl/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/no/wiki_syntax.html -%%WWWDIR%%/public/help/no/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/pl/wiki_syntax.html -%%WWWDIR%%/public/help/pl/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/pt-br/wiki_syntax.html -%%WWWDIR%%/public/help/pt-br/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/pt/wiki_syntax.html -%%WWWDIR%%/public/help/pt/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/ro/wiki_syntax.html -%%WWWDIR%%/public/help/ro/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/ru/wiki_syntax.html -%%WWWDIR%%/public/help/ru/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/sk/wiki_syntax.html -%%WWWDIR%%/public/help/sk/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/sl/wiki_syntax.html -%%WWWDIR%%/public/help/sl/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/sq/wiki_syntax.html -%%WWWDIR%%/public/help/sq/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/sr-yu/wiki_syntax.html -%%WWWDIR%%/public/help/sr-yu/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/sr/wiki_syntax.html -%%WWWDIR%%/public/help/sr/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/sv/wiki_syntax.html -%%WWWDIR%%/public/help/sv/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/th/wiki_syntax.html -%%WWWDIR%%/public/help/th/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/tr/wiki_syntax.html -%%WWWDIR%%/public/help/tr/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/uk/wiki_syntax.html -%%WWWDIR%%/public/help/uk/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/vi/wiki_syntax.html -%%WWWDIR%%/public/help/vi/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/zh-tw/wiki_syntax.html -%%WWWDIR%%/public/help/zh-tw/wiki_syntax_detailed.html -%%WWWDIR%%/public/help/zh/wiki_syntax.html -%%WWWDIR%%/public/help/zh/wiki_syntax_detailed.html +%%WWWDIR%%/public/help/ar/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/ar/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/ar/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/ar/wiki_syntax_textile.html +%%WWWDIR%%/public/help/az/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/az/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/az/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/az/wiki_syntax_textile.html +%%WWWDIR%%/public/help/bg/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/bg/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/bg/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/bg/wiki_syntax_textile.html +%%WWWDIR%%/public/help/bs/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/bs/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/bs/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/bs/wiki_syntax_textile.html +%%WWWDIR%%/public/help/ca/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/ca/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/ca/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/ca/wiki_syntax_textile.html +%%WWWDIR%%/public/help/cs/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/cs/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/cs/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/cs/wiki_syntax_textile.html +%%WWWDIR%%/public/help/da/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/da/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/da/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/da/wiki_syntax_textile.html +%%WWWDIR%%/public/help/de/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/de/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/de/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/de/wiki_syntax_textile.html +%%WWWDIR%%/public/help/el/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/el/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/el/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/el/wiki_syntax_textile.html +%%WWWDIR%%/public/help/en-gb/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/en-gb/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/en-gb/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/en-gb/wiki_syntax_textile.html +%%WWWDIR%%/public/help/en/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/en/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/en/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/en/wiki_syntax_textile.html +%%WWWDIR%%/public/help/es-pa/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/es-pa/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/es-pa/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/es-pa/wiki_syntax_textile.html +%%WWWDIR%%/public/help/es/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/es/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/es/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/es/wiki_syntax_textile.html +%%WWWDIR%%/public/help/et/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/et/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/et/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/et/wiki_syntax_textile.html +%%WWWDIR%%/public/help/eu/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/eu/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/eu/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/eu/wiki_syntax_textile.html +%%WWWDIR%%/public/help/fa/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/fa/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/fa/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/fa/wiki_syntax_textile.html +%%WWWDIR%%/public/help/fi/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/fi/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/fi/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/fi/wiki_syntax_textile.html +%%WWWDIR%%/public/help/fr/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/fr/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/fr/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/fr/wiki_syntax_textile.html +%%WWWDIR%%/public/help/gl/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/gl/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/gl/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/gl/wiki_syntax_textile.html +%%WWWDIR%%/public/help/he/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/he/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/he/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/he/wiki_syntax_textile.html +%%WWWDIR%%/public/help/hr/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/hr/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/hr/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/hr/wiki_syntax_textile.html +%%WWWDIR%%/public/help/hu/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/hu/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/hu/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/hu/wiki_syntax_textile.html +%%WWWDIR%%/public/help/id/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/id/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/id/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/id/wiki_syntax_textile.html +%%WWWDIR%%/public/help/it/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/it/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/it/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/it/wiki_syntax_textile.html +%%WWWDIR%%/public/help/ja/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/ja/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/ja/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/ja/wiki_syntax_textile.html +%%WWWDIR%%/public/help/ko/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/ko/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/ko/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/ko/wiki_syntax_textile.html +%%WWWDIR%%/public/help/lt/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/lt/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/lt/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/lt/wiki_syntax_textile.html +%%WWWDIR%%/public/help/lv/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/lv/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/lv/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/lv/wiki_syntax_textile.html +%%WWWDIR%%/public/help/mk/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/mk/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/mk/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/mk/wiki_syntax_textile.html +%%WWWDIR%%/public/help/mn/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/mn/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/mn/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/mn/wiki_syntax_textile.html +%%WWWDIR%%/public/help/nl/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/nl/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/nl/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/nl/wiki_syntax_textile.html +%%WWWDIR%%/public/help/no/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/no/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/no/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/no/wiki_syntax_textile.html +%%WWWDIR%%/public/help/pl/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/pl/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/pl/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/pl/wiki_syntax_textile.html +%%WWWDIR%%/public/help/pt-br/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/pt-br/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/pt-br/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/pt-br/wiki_syntax_textile.html +%%WWWDIR%%/public/help/pt/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/pt/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/pt/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/pt/wiki_syntax_textile.html +%%WWWDIR%%/public/help/ro/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/ro/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/ro/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/ro/wiki_syntax_textile.html +%%WWWDIR%%/public/help/ru/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/ru/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/ru/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/ru/wiki_syntax_textile.html +%%WWWDIR%%/public/help/sk/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/sk/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/sk/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/sk/wiki_syntax_textile.html +%%WWWDIR%%/public/help/sl/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/sl/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/sl/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/sl/wiki_syntax_textile.html +%%WWWDIR%%/public/help/sq/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/sq/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/sq/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/sq/wiki_syntax_textile.html +%%WWWDIR%%/public/help/sr-yu/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/sr-yu/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/sr-yu/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/sr-yu/wiki_syntax_textile.html +%%WWWDIR%%/public/help/sr/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/sr/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/sr/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/sr/wiki_syntax_textile.html +%%WWWDIR%%/public/help/sv/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/sv/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/sv/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/sv/wiki_syntax_textile.html +%%WWWDIR%%/public/help/th/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/th/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/th/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/th/wiki_syntax_textile.html +%%WWWDIR%%/public/help/tr/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/tr/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/tr/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/tr/wiki_syntax_textile.html +%%WWWDIR%%/public/help/uk/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/uk/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/uk/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/uk/wiki_syntax_textile.html +%%WWWDIR%%/public/help/vi/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/vi/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/vi/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/vi/wiki_syntax_textile.html +%%WWWDIR%%/public/help/zh-tw/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/zh-tw/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/zh-tw/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/zh-tw/wiki_syntax_textile.html +%%WWWDIR%%/public/help/zh/wiki_syntax_detailed_markdown.html +%%WWWDIR%%/public/help/zh/wiki_syntax_detailed_textile.html +%%WWWDIR%%/public/help/zh/wiki_syntax_markdown.html +%%WWWDIR%%/public/help/zh/wiki_syntax_textile.html %%WWWDIR%%/public/htaccess.fcgi.example %%WWWDIR%%/public/images/1downarrow.png %%WWWDIR%%/public/images/1uparrow.png @@ -1225,6 +1388,9 @@ %%WWWDIR%%/public/images/draft.png %%WWWDIR%%/public/images/duplicate.png %%WWWDIR%%/public/images/edit.png +%%WWWDIR%%/public/images/email.png +%%WWWDIR%%/public/images/email_add.png +%%WWWDIR%%/public/images/email_disabled.png %%WWWDIR%%/public/images/exclamation.png %%WWWDIR%%/public/images/external.png %%WWWDIR%%/public/images/false.png @@ -1319,7 +1485,6 @@ %%WWWDIR%%/public/javascripts/application.js %%WWWDIR%%/public/javascripts/attachments.js %%WWWDIR%%/public/javascripts/context_menu.js -%%WWWDIR%%/public/javascripts/datepicker.js %%WWWDIR%%/public/javascripts/gantt.js %%WWWDIR%%/public/javascripts/i18n/datepicker-ar.js %%WWWDIR%%/public/javascripts/i18n/datepicker-az.js @@ -1379,6 +1544,7 @@ %%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-de.js %%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-en-gb.js %%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-en.js +%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-es-pa.js %%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-es.js %%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-et.js %%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-eu.js @@ -1421,8 +1587,8 @@ %%WWWDIR%%/public/javascripts/project_identifier.js %%WWWDIR%%/public/javascripts/raphael.js %%WWWDIR%%/public/javascripts/repository_navigation.js +%%WWWDIR%%/public/javascripts/responsive.js %%WWWDIR%%/public/javascripts/revision_graph.js -%%WWWDIR%%/public/javascripts/select_list_move.js @(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/public/plugin_assets/empty %%WWWDIR%%/public/stylesheets/application.css %%WWWDIR%%/public/stylesheets/context_menu.css @@ -1443,6 +1609,7 @@ %%WWWDIR%%/public/stylesheets/jquery/images/ui-icons_ffffff_256x240.png %%WWWDIR%%/public/stylesheets/jquery/jquery-ui-1.11.0.css %%WWWDIR%%/public/stylesheets/jstoolbar.css +%%WWWDIR%%/public/stylesheets/responsive.css %%WWWDIR%%/public/stylesheets/rtl.css %%WWWDIR%%/public/stylesheets/scm.css %%WWWDIR%%/public/themes/README @@ -1452,8 +1619,11 @@ %%WWWDIR%%/public/themes/classic/stylesheets/application.css @(,,755) %%WWWDIR%%/script/about @(,,755) %%WWWDIR%%/script/rails -%%WWWDIR%%/test/extra/redmine_pm/repository_git_test.rb -%%WWWDIR%%/test/extra/redmine_pm/repository_subversion_test.rb +%%WWWDIR%%/test/coverage/html_formatter.rb +%%WWWDIR%%/test/coverage/views/index.erb +%%WWWDIR%%/test/coverage/views/source.erb +%%WWWDIR%%/test/extra/redmine_pm/repository_git_test_pm.rb +%%WWWDIR%%/test/extra/redmine_pm/repository_subversion_test_pm.rb %%WWWDIR%%/test/extra/redmine_pm/test_case.rb %%WWWDIR%%/test/fixtures/attachments.yml %%WWWDIR%%/test/fixtures/auth_sources.yml @@ -1479,6 +1649,7 @@ %%WWWDIR%%/test/fixtures/diffs/partials.diff %%WWWDIR%%/test/fixtures/diffs/subversion.diff %%WWWDIR%%/test/fixtures/documents.yml +%%WWWDIR%%/test/fixtures/email_addresses.yml %%WWWDIR%%/test/fixtures/enabled_modules.yml %%WWWDIR%%/test/fixtures/encoding/iso-8859-1.txt %%WWWDIR%%/test/fixtures/enumerations.yml @@ -1489,6 +1660,9 @@ %%WWWDIR%%/test/fixtures/files/2010/11/101123161450_testfile_1.png %%WWWDIR%%/test/fixtures/files/2010/12/101223161450_testfile_2.png %%WWWDIR%%/test/fixtures/files/hg-export.diff +%%WWWDIR%%/test/fixtures/files/import_dates.csv +%%WWWDIR%%/test/fixtures/files/import_iso8859-1.csv +%%WWWDIR%%/test/fixtures/files/import_issues.csv %%WWWDIR%%/test/fixtures/files/iso8859-1.txt %%WWWDIR%%/test/fixtures/files/japanese-utf-8.txt %%WWWDIR%%/test/fixtures/files/testfile.txt @@ -1499,7 +1673,9 @@ %%WWWDIR%%/test/fixtures/issues.yml %%WWWDIR%%/test/fixtures/journal_details.yml %%WWWDIR%%/test/fixtures/journals.yml +%%WWWDIR%%/test/fixtures/ldap/slapd.centos6.conf %%WWWDIR%%/test/fixtures/ldap/slapd.conf +%%WWWDIR%%/test/fixtures/ldap/slapd.ubuntu.12.04.conf %%WWWDIR%%/test/fixtures/ldap/test-ldap.ldif %%WWWDIR%%/test/fixtures/mail_handler/apple_mail_with_attachment.eml %%WWWDIR%%/test/fixtures/mail_handler/body_ks_c_5601-1987.eml @@ -1514,6 +1690,8 @@ %%WWWDIR%%/test/fixtures/mail_handler/message_reply_by_subject.eml %%WWWDIR%%/test/fixtures/mail_handler/multiple_text_parts.eml %%WWWDIR%%/test/fixtures/mail_handler/no_subject_header.eml +%%WWWDIR%%/test/fixtures/mail_handler/outlook_2010_html_only.eml +%%WWWDIR%%/test/fixtures/mail_handler/outlook_web_access_2010_html_only.eml %%WWWDIR%%/test/fixtures/mail_handler/quoted_printable_utf8.eml %%WWWDIR%%/test/fixtures/mail_handler/subject_as_iso-8859-1.eml %%WWWDIR%%/test/fixtures/mail_handler/subject_japanese_1.eml @@ -1525,6 +1703,7 @@ %%WWWDIR%%/test/fixtures/mail_handler/ticket_from_emission_address.eml %%WWWDIR%%/test/fixtures/mail_handler/ticket_html_only.eml %%WWWDIR%%/test/fixtures/mail_handler/ticket_on_given_project.eml +%%WWWDIR%%/test/fixtures/mail_handler/ticket_on_project_given_by_to_header.eml %%WWWDIR%%/test/fixtures/mail_handler/ticket_reply.eml %%WWWDIR%%/test/fixtures/mail_handler/ticket_reply_with_status.eml %%WWWDIR%%/test/fixtures/mail_handler/ticket_with_attachment.eml @@ -1578,12 +1757,15 @@ %%WWWDIR%%/test/functional/calendars_controller_test.rb %%WWWDIR%%/test/functional/comments_controller_test.rb %%WWWDIR%%/test/functional/context_menus_controller_test.rb +%%WWWDIR%%/test/functional/custom_field_enumerations_controller_test.rb %%WWWDIR%%/test/functional/custom_fields_controller_test.rb %%WWWDIR%%/test/functional/documents_controller_test.rb +%%WWWDIR%%/test/functional/email_addresses_controller_test.rb %%WWWDIR%%/test/functional/enumerations_controller_test.rb %%WWWDIR%%/test/functional/files_controller_test.rb %%WWWDIR%%/test/functional/gantts_controller_test.rb %%WWWDIR%%/test/functional/groups_controller_test.rb +%%WWWDIR%%/test/functional/imports_controller_test.rb %%WWWDIR%%/test/functional/issue_categories_controller_test.rb %%WWWDIR%%/test/functional/issue_relations_controller_test.rb %%WWWDIR%%/test/functional/issue_statuses_controller_test.rb @@ -1597,6 +1779,7 @@ %%WWWDIR%%/test/functional/my_controller_test.rb %%WWWDIR%%/test/functional/news_controller_test.rb %%WWWDIR%%/test/functional/previews_controller_test.rb +%%WWWDIR%%/test/functional/principal_memberships_controller_test.rb %%WWWDIR%%/test/functional/project_enumerations_controller_test.rb %%WWWDIR%%/test/functional/projects_controller_test.rb %%WWWDIR%%/test/functional/queries_controller_test.rb @@ -1612,7 +1795,7 @@ %%WWWDIR%%/test/functional/roles_controller_test.rb %%WWWDIR%%/test/functional/search_controller_test.rb %%WWWDIR%%/test/functional/search_custom_fields_visibility_test.rb -%%WWWDIR%%/test/functional/sessions_test.rb +%%WWWDIR%%/test/functional/sessions_controller_test.rb %%WWWDIR%%/test/functional/settings_controller_test.rb %%WWWDIR%%/test/functional/sys_controller_test.rb %%WWWDIR%%/test/functional/time_entry_reports_controller_test.rb @@ -1628,6 +1811,7 @@ %%WWWDIR%%/test/functional/workflows_controller_test.rb %%WWWDIR%%/test/integration/account_test.rb %%WWWDIR%%/test/integration/admin_test.rb +%%WWWDIR%%/test/integration/api_test/api_routing_test.rb %%WWWDIR%%/test/integration/api_test/api_test.rb %%WWWDIR%%/test/integration/api_test/attachments_test.rb %%WWWDIR%%/test/integration/api_test/authentication_test.rb @@ -1636,8 +1820,6 @@ %%WWWDIR%%/test/integration/api_test/disabled_rest_api_test.rb %%WWWDIR%%/test/integration/api_test/enumerations_test.rb %%WWWDIR%%/test/integration/api_test/groups_test.rb -%%WWWDIR%%/test/integration/api_test/http_basic_login_test.rb -%%WWWDIR%%/test/integration/api_test/http_basic_login_with_api_token_test.rb %%WWWDIR%%/test/integration/api_test/issue_categories_test.rb %%WWWDIR%%/test/integration/api_test/issue_relations_test.rb %%WWWDIR%%/test/integration/api_test/issue_statuses_test.rb @@ -1649,7 +1831,6 @@ %%WWWDIR%%/test/integration/api_test/queries_test.rb %%WWWDIR%%/test/integration/api_test/roles_test.rb %%WWWDIR%%/test/integration/api_test/time_entries_test.rb -%%WWWDIR%%/test/integration/api_test/token_authentication_test.rb %%WWWDIR%%/test/integration/api_test/trackers_test.rb %%WWWDIR%%/test/integration/api_test/users_test.rb %%WWWDIR%%/test/integration/api_test/versions_test.rb @@ -1680,6 +1861,7 @@ %%WWWDIR%%/test/integration/routing/files_test.rb %%WWWDIR%%/test/integration/routing/gantts_test.rb %%WWWDIR%%/test/integration/routing/groups_test.rb +%%WWWDIR%%/test/integration/routing/imports_test.rb %%WWWDIR%%/test/integration/routing/issue_categories_test.rb %%WWWDIR%%/test/integration/routing/issue_relations_test.rb %%WWWDIR%%/test/integration/routing/issue_statuses_test.rb @@ -1691,6 +1873,7 @@ %%WWWDIR%%/test/integration/routing/my_test.rb %%WWWDIR%%/test/integration/routing/news_test.rb %%WWWDIR%%/test/integration/routing/previews_test.rb +%%WWWDIR%%/test/integration/routing/principal_memberships_test.rb %%WWWDIR%%/test/integration/routing/project_enumerations_test.rb %%WWWDIR%%/test/integration/routing/projects_test.rb %%WWWDIR%%/test/integration/routing/queries_test.rb @@ -1709,12 +1892,17 @@ %%WWWDIR%%/test/integration/routing/wiki_test.rb %%WWWDIR%%/test/integration/routing/wikis_test.rb %%WWWDIR%%/test/integration/routing/workflows_test.rb +%%WWWDIR%%/test/integration/sessions_test.rb +%%WWWDIR%%/test/integration/sudo_mode_test.rb %%WWWDIR%%/test/integration/users_test.rb %%WWWDIR%%/test/mocks/open_id_authentication_mock.rb %%WWWDIR%%/test/object_helpers.rb %%WWWDIR%%/test/test_helper.rb %%WWWDIR%%/test/ui/base.rb -%%WWWDIR%%/test/ui/issues_test.rb +%%WWWDIR%%/test/ui/custom_fields_test_ui.rb +%%WWWDIR%%/test/ui/issues_test_ui.rb +%%WWWDIR%%/test/ui/sudo_mode_test_ui.rb +%%WWWDIR%%/test/ui/timelog_test_ui.rb %%WWWDIR%%/test/unit/activity_test.rb %%WWWDIR%%/test/unit/attachment_test.rb %%WWWDIR%%/test/unit/auth_source_ldap_test.rb @@ -1734,23 +1922,32 @@ %%WWWDIR%%/test/unit/helpers/activities_helper_test.rb %%WWWDIR%%/test/unit/helpers/application_helper_test.rb %%WWWDIR%%/test/unit/helpers/custom_fields_helper_test.rb +%%WWWDIR%%/test/unit/helpers/groups_helper_test.rb %%WWWDIR%%/test/unit/helpers/issues_helper_test.rb +%%WWWDIR%%/test/unit/helpers/journals_helper_test.rb +%%WWWDIR%%/test/unit/helpers/members_helper_test.rb +%%WWWDIR%%/test/unit/helpers/my_helper_test.rb %%WWWDIR%%/test/unit/helpers/projects_helper_test.rb %%WWWDIR%%/test/unit/helpers/queries_helper_test.rb %%WWWDIR%%/test/unit/helpers/routes_helper_test.rb %%WWWDIR%%/test/unit/helpers/search_helper_test.rb +%%WWWDIR%%/test/unit/helpers/settings_helper_test.rb %%WWWDIR%%/test/unit/helpers/sort_helper_test.rb %%WWWDIR%%/test/unit/helpers/timelog_helper_test.rb %%WWWDIR%%/test/unit/helpers/version_helper_test.rb %%WWWDIR%%/test/unit/helpers/watchers_helper_test.rb +%%WWWDIR%%/test/unit/helpers/wiki_helper_test.rb %%WWWDIR%%/test/unit/initializers/patches_test.rb %%WWWDIR%%/test/unit/issue_category_test.rb %%WWWDIR%%/test/unit/issue_custom_field_test.rb +%%WWWDIR%%/test/unit/issue_import_test.rb +%%WWWDIR%%/test/unit/issue_nested_set_concurrency_test.rb %%WWWDIR%%/test/unit/issue_nested_set_test.rb %%WWWDIR%%/test/unit/issue_priority_test.rb %%WWWDIR%%/test/unit/issue_relation_test.rb %%WWWDIR%%/test/unit/issue_scopes_test.rb %%WWWDIR%%/test/unit/issue_status_test.rb +%%WWWDIR%%/test/unit/issue_subtasking_test.rb %%WWWDIR%%/test/unit/issue_test.rb %%WWWDIR%%/test/unit/issue_transaction_test.rb %%WWWDIR%%/test/unit/journal_observer_test.rb @@ -1759,8 +1956,10 @@ %%WWWDIR%%/test/unit/lib/redmine/ciphering_test.rb %%WWWDIR%%/test/unit/lib/redmine/codeset_util_test.rb %%WWWDIR%%/test/unit/lib/redmine/configuration_test.rb +%%WWWDIR%%/test/unit/lib/redmine/export/csv_test.rb %%WWWDIR%%/test/unit/lib/redmine/export/pdf_test.rb %%WWWDIR%%/test/unit/lib/redmine/field_format/bool_format_test.rb +%%WWWDIR%%/test/unit/lib/redmine/field_format/enumeration_format_test.rb %%WWWDIR%%/test/unit/lib/redmine/field_format/field_format_test.rb %%WWWDIR%%/test/unit/lib/redmine/field_format/link_format_test.rb %%WWWDIR%%/test/unit/lib/redmine/field_format/list_format_test.rb @@ -1795,9 +1994,13 @@ %%WWWDIR%%/test/unit/lib/redmine/utils/date_calculation.rb %%WWWDIR%%/test/unit/lib/redmine/views/builders/json_test.rb %%WWWDIR%%/test/unit/lib/redmine/views/builders/xml_test.rb +%%WWWDIR%%/test/unit/lib/redmine/views/labelled_form_builder_test.rb +%%WWWDIR%%/test/unit/lib/redmine/wiki_formatting/html_parser_test.rb %%WWWDIR%%/test/unit/lib/redmine/wiki_formatting/macros_test.rb -%%WWWDIR%%/test/unit/lib/redmine/wiki_formatting/markdown_formatter.rb +%%WWWDIR%%/test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb +%%WWWDIR%%/test/unit/lib/redmine/wiki_formatting/markdown_html_parser_test.rb %%WWWDIR%%/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb +%%WWWDIR%%/test/unit/lib/redmine/wiki_formatting/textile_html_parser_test.rb %%WWWDIR%%/test/unit/lib/redmine/wiki_formatting_test.rb %%WWWDIR%%/test/unit/lib/redmine_test.rb %%WWWDIR%%/test/unit/mail_handler_test.rb @@ -1808,6 +2011,7 @@ %%WWWDIR%%/test/unit/principal_test.rb %%WWWDIR%%/test/unit/project_copy_test.rb %%WWWDIR%%/test/unit/project_members_inheritance_test.rb +%%WWWDIR%%/test/unit/project_nested_set_concurrency_test.rb %%WWWDIR%%/test/unit/project_nested_set_test.rb %%WWWDIR%%/test/unit/project_test.rb %%WWWDIR%%/test/unit/query_test.rb @@ -1838,19 +2042,23 @@ %%WWWDIR%%/test/unit/wiki_test.rb %%WWWDIR%%/test/unit/workflow_test.rb %%WWWDIR%%/test/unit/workflow_transition_test.rb +%%MYSQL%%%%WWWDIR%%/bundler.d/mysql.rb +%%POSTGRESQL%%%%WWWDIR%%/bundler.d/pg.rb +%%LDAP%%%%WWWDIR%%/bundler.d/ldap.rb +%%MARKDOWN%%%%WWWDIR%%/bundler.d/markdown.rb %%RMAGIC%%%%WWWDIR%%/bundler.d/rmagic.rb %%THIN%%%%WWWDIR%%/bundler.d/thin.rb @sample %%WWWDIR%%/config/settings.yml.sample @(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/pdf/empty @(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/test/empty @(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/thumbnails/empty -@dir %%WWWDIR%%/app/sweepers -@dir %%WWWDIR%%/lib/vendor @dir %%WWWDIR%%/test/fixtures/mailer @dir %%WWWDIR%%/test/mocks/development @dir %%WWWDIR%%/test/mocks/test @dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/cache +@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/imports @dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/pids @dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/sessions @dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/sockets +@(%%WWWOWN%%,%%WWWGRP%%,0664) %%WWWDIR%%/log/development.log @dir %%WWWDIR%%/vendor