aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikael Urankar <mikael@FreeBSD.org>2022-12-18 09:40:49 +0000
committerMikael Urankar <mikael@FreeBSD.org>2022-12-18 15:57:07 +0000
commit2f6b395b30deb4f48a2d8ddad31e98cc763162c9 (patch)
treebfec9b98ee402cbf36250bca79f1bb1f3accf0a0
parentc0efc8c88e6baef7bef5c4e1e3a939980caae827 (diff)
downloadports-2f6b395b30deb4f48a2d8ddad31e98cc763162c9.tar.gz
ports-2f6b395b30deb4f48a2d8ddad31e98cc763162c9.zip
www/redmine50: Add new port
Redmine is a flexible project management web application written using Ruby on Rails framework, it is cross-platform and cross-database. Feature Overview: * Multiple projects support * Flexible role based access control * Flexible issue tracking system * Gantt chart and calendar * News, documents & files management * Feeds & email notifications * Per project wiki * Per project forums * Time tracking * Custom fields for issues, time-entries, projects and users * SCM integration (SVN, CVS, Git, Mercurial, Bazaar and Darcs) * Issue creation via email * Multiple LDAP authentication support * User self-registration support * Multilanguage support * Multiple databases support PR: 264638
-rw-r--r--www/redmine50/Makefile120
-rw-r--r--www/redmine50/bsd.redmine.mk78
-rw-r--r--www/redmine50/distinfo3
-rw-r--r--www/redmine50/files/markdown.rb1
-rw-r--r--www/redmine50/files/mini_magick.rb1
-rw-r--r--www/redmine50/files/mysql.rb1
-rw-r--r--www/redmine50/files/patch-Gemfile116
-rw-r--r--www/redmine50/files/pg.rb1
-rw-r--r--www/redmine50/files/redmine.in38
-rw-r--r--www/redmine50/files/thin.rb1
-rw-r--r--www/redmine50/pkg-descr21
-rw-r--r--www/redmine50/pkg-message18
-rw-r--r--www/redmine50/pkg-plist2235
13 files changed, 2634 insertions, 0 deletions
diff --git a/www/redmine50/Makefile b/www/redmine50/Makefile
new file mode 100644
index 000000000000..119d7416ae5d
--- /dev/null
+++ b/www/redmine50/Makefile
@@ -0,0 +1,120 @@
+PORTNAME= redmine
+PORTVERSION= 5.0.4
+CATEGORIES= www
+MASTER_SITES= https://www.redmine.org/releases/
+PKGNAMESUFFIX= 50
+
+MAINTAINER= mikael@FreeBSD.org
+COMMENT= Flexible project management web application
+WWW= https://www.redmine.org/
+
+LICENSE= GPLv2
+LICENSE_FILE= ${WRKSRC}/doc/COPYING
+
+RUN_DEPENDS= rubygem-bundler>=1.12.0:sysutils/rubygem-bundler \
+ rubygem-globalid-rails61>0:databases/rubygem-globalid-rails61 \
+ rubygem-rails61>=6.1:www/rubygem-rails61 \
+ rubygem-rouge>=3.28.0:textproc/rubygem-rouge \
+ rubygem-request_store>=1.5.0:devel/rubygem-request_store \
+ rubygem-mini_mime>=1.0.1:mail/rubygem-mini_mime \
+ rubygem-actionpack-xml_parser-rails61>=0:textproc/rubygem-actionpack-xml_parser-rails61 \
+ rubygem-roadie-rails-rails61>=3.0.0:mail/rubygem-roadie-rails-rails61 \
+ rubygem-marcel>0:devel/rubygem-marcel \
+ rubygem-mail>=2.7.1:mail/rubygem-mail \
+ rubygem-csv>=3.2.0:devel/rubygem-csv \
+ rubygem-nokogiri>=1.13.8:textproc/rubygem-nokogiri \
+ rubygem-i18n>=1.10.0:devel/rubygem-i18n \
+ rubygem-rbpdf>=1.20.0:print/rubygem-rbpdf \
+ rubygem-addressable>0:www/rubygem-addressable \
+ rubygem-rubyzip>0:archivers/rubygem-rubyzip \
+ rubygem-net-smtp>0:mail/rubygem-net-smtp \
+ rubygem-net-imap>0:mail/rubygem-net-imap \
+ rubygem-net-pop>0:mail/rubygem-net-pop \
+ rubygem-psych>0:textproc/rubygem-psych \
+ rubygem-net-ldap>=0.17.0:net/rubygem-net-ldap \
+ rubygem-rotp>=5.0.0:devel/rubygem-rotp \
+ rubygem-rqrcode>0:www/rubygem-rqrcode \
+ rubygem-erb>0:devel/rubygem-erb
+
+# Per https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=264638#c9
+# to be removed if https://www.redmine.org/issues/37394 is fixed
+RUN_DEPENDS+= rubygem-redcarpet>=3.5.1:textproc/rubygem-redcarpet \
+ rubygem-html-pipeline>=2.13.2:textproc/rubygem-html-pipeline \
+ rubygem-commonmarker>=0.23.6:textproc/rubygem-commonmarker \
+ rubygem-sanitize>=6.0:textproc/rubygem-sanitize \
+ rubygem-deckar01-task_list>=2.3.1:www/rubygem-deckar01-task_list
+
+USES= cpe
+USE_RUBY= yes
+
+CONFLICTS_INSTALL= redmine42
+
+NO_ARCH= yes
+NO_BUILD= yes
+
+USERS= ${WWWOWN}
+GROUPS= ${WWWGRP}
+PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}
+SUB_LIST= RUBY_SUFFIX=${RUBY_SUFFIX}
+
+OPTIONS_DEFINE= MYSQL POSTGRESQL MARKDOWN RMAGIC THIN
+OPTIONS_DEFAULT=MYSQL MARKDOWN RMAGIC THIN
+OPTIONS_SUB= yes
+POSTGRESQL_DESC=Enable PostgreSQL support
+MARKDOWN_DESC= Enable Markdown support
+RMAGIC_DESC= Enable Gantt charts support
+THIN_DESC= Use Thin WEB server
+MYSQL_DESC= MySQL database support (via mysql2 rubygem)
+NO_OPTIONS_SORT= yes
+MYSQL_RUN_DEPENDS= rubygem-mysql2>=0.5.0:databases/rubygem-mysql2
+POSTGRESQL_RUN_DEPENDS= rubygem-pg>=1.2.2:databases/rubygem-pg
+MARKDOWN_RUN_DEPENDS= rubygem-redcarpet>=3.5.1:textproc/rubygem-redcarpet
+RMAGIC_RUN_DEPENDS= rubygem-mini_magick>=4.11.0:graphics/rubygem-mini_magick
+THIN_RUN_DEPENDS= rubygem-thin>=1.6.2:www/rubygem-thin
+THIN_SUB_LIST= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}
+THIN_VARS= USE_RC_SUBR=redmine
+
+.include <bsd.port.options.mk>
+
+post-extract:
+ @${RM} -r ${WRKSRC}/.hgignore ${WRKSRC}/.gitignore ${WRKSRC}/.github \
+ ${WRKSRC}/files/delete.me ${WRKSRC}/log/delete.me
+ @${MV} ${WRKSRC}/config/settings.yml ${WRKSRC}/config/settings.yml.sample
+ @${MV} ${WRKSRC}/config/database.yml.example ${WRKSRC}/config/database.yml.sample
+
+post-patch:
+ @${RM} ${WRKSRC}/Gemfile.orig
+
+do-install:
+ ${MKDIR} ${STAGEDIR}${WWWDIR}
+ ${MKDIR} ${STAGEDIR}${WWWDIR}/bundler.d
+ ${MKDIR} ${STAGEDIR}${WWWDIR}/log
+ ${MKDIR} ${STAGEDIR}${WWWDIR}/public/plugin_assets
+ ${MKDIR} ${STAGEDIR}${WWWDIR}/tmp
+
+ # https://www.redmine.org/issues/37394
+ ${CP} ${FILESDIR}/commonmark.rb ${STAGEDIR}${WWWDIR}/bundler.d
+ cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}
+ ${TOUCH} ${STAGEDIR}${WWWDIR}/Gemfile.lock
+
+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-MARKDOWN-on:
+ ${CP} ${FILESDIR}/markdown.rb ${STAGEDIR}${WWWDIR}/bundler.d
+
+do-install-RMAGIC-on:
+ ${CP} ${FILESDIR}/mini_magick.rb ${STAGEDIR}${WWWDIR}/bundler.d
+
+do-install-THIN-on:
+ ${CP} ${FILESDIR}/thin.rb ${STAGEDIR}${WWWDIR}/bundler.d
+
+post-install:
+ (cd ${STAGEDIR}${WWWDIR} && ${RM} Gemfile.lock && bundle install --local)
+ ${RM} ${STAGEDIR}${WWWDIR}/package.json \
+ ${STAGEDIR}${WWWDIR}/yarn.lock
+
+.include <bsd.port.mk>
diff --git a/www/redmine50/bsd.redmine.mk b/www/redmine50/bsd.redmine.mk
new file mode 100644
index 000000000000..123cc7989126
--- /dev/null
+++ b/www/redmine50/bsd.redmine.mk
@@ -0,0 +1,78 @@
+# Module that simplifies installation of Redmine plugins.
+#
+# Date created: 2010-09-12
+# Whom: Eygene Ryabinkin <rea-fbsd@codelabs.ru>
+#
+# We're assuming standard plugin installation sequence that is described
+# in the https://www.redmine.org/projects/redmine/wiki/Plugins
+#
+# Basically, we need the following variables to be defined:
+# - REDMINE_PLUGIN_NAME: the name of the plugin;
+# - WWWDIR: the location of the Redmine installation;
+# the default value is ${PREFIX}/www/redmine;
+# the directory must lie under ${PREFIX} or such configuration
+# will be IGNORE'd;
+# - WRKSRC must be set to the root directory of the plugin contents:
+# we will copy all objects in this directory to the plugin's
+# destination directory, excluding all files named *.orig.
+#
+# PLIST will be generated automatically, there is no need to worry
+# about it. But if you will need to use your own (even the standard
+# packaging list in ${PORTDIR}/pkg-plist), set the variable PLIST
+# pointing to that file.
+#
+# You can override the target 'do-build', but in this case, you should
+# remember that the target named 'redmine-plugin-plist' does the
+# automated generation of the PLIST: use it if you need.
+#
+#
+# Here is an example of a simple Makefile for Redmine plugin:
+# {{{
+# PORTNAME= me-the-plugin
+# PORTVERSION= 1.0
+# CATEGORIES= www
+# MASTER_SITES= http://cool.org.name/some/path/
+#
+# MAINTAINER= you@your.org
+# COMMENT= Another cool plugin for Redmine
+#
+# REDMINE_PLUGIN_NAME= redmine_http_auth
+#
+# .include "${.CURDIR}/../../www/redmine/bsd.redmine.mk"
+# }}}
+
+PKGNAMEPREFIX?= redmine50-
+
+RUN_DEPENDS+= redmine50>=4.2:www/redmine50
+
+USE_RUBY= yes
+.if !defined(PLIST)
+PLIST= ${WRKDIR}/PLIST
+_GEN_PLIST= YesPlease
+.endif
+
+WWWDIR?= ${PREFIX}/www/redmine
+WWWDIR_REL= ${WWWDIR:S|^${PREFIX}/||}
+
+.if ${WWWDIR_REL} == ${WWWDIR}
+IGNORE= WWWDIR is not a child of PREFIX (${PREFIX})
+.endif
+
+.if !defined(do-build)
+do-build: redmine-plugin-plist
+ @${DO_NADA}
+.endif
+
+redmine-plugin-plist:
+.if defined(_GEN_PLIST)
+ cd ${WRKSRC} && ${FIND} . -type f | ${GREP} -v '\.orig$$' | ${SED} -e's|^\.|${WWWDIR_REL}/plugins/${REDMINE_PLUGIN_NAME}|' >> ${PLIST}
+ cd ${WRKSRC} && ${FIND} -d . -empty -type d | ${SED} -e's|^\.|@dir ${WWWDIR_REL}/plugins/${REDMINE_PLUGIN_NAME}|' >> ${PLIST}
+.else
+ @${DO_NADA}
+.endif
+
+do-install:
+ ${MKDIR} "${STAGEDIR}${WWWDIR}/plugins/${REDMINE_PLUGIN_NAME}"
+ ${TAR} -C "${WRKSRC}" -cf - --exclude '*.orig' . | ${TAR} -C "${STAGEDIR}${WWWDIR}/plugins/${REDMINE_PLUGIN_NAME}" -xf -
+
+.include <bsd.port.mk>
diff --git a/www/redmine50/distinfo b/www/redmine50/distinfo
new file mode 100644
index 000000000000..478f04c3e901
--- /dev/null
+++ b/www/redmine50/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1671100842
+SHA256 (redmine-5.0.4.tar.gz) = 39436f5f8d26f5b7ce17e79903a3112e556e924da4f51c05b57f5defbe6f2924
+SIZE (redmine-5.0.4.tar.gz) = 3114593
diff --git a/www/redmine50/files/markdown.rb b/www/redmine50/files/markdown.rb
new file mode 100644
index 000000000000..28c24b81233f
--- /dev/null
+++ b/www/redmine50/files/markdown.rb
@@ -0,0 +1 @@
+gem "redcarpet", ">= 3.5.1"
diff --git a/www/redmine50/files/mini_magick.rb b/www/redmine50/files/mini_magick.rb
new file mode 100644
index 000000000000..9c50142a47be
--- /dev/null
+++ b/www/redmine50/files/mini_magick.rb
@@ -0,0 +1 @@
+gem "mini_magick", ">= 4.11.0"
diff --git a/www/redmine50/files/mysql.rb b/www/redmine50/files/mysql.rb
new file mode 100644
index 000000000000..178b6b3faa35
--- /dev/null
+++ b/www/redmine50/files/mysql.rb
@@ -0,0 +1 @@
+gem "mysql2", "~> 0.5.0"
diff --git a/www/redmine50/files/patch-Gemfile b/www/redmine50/files/patch-Gemfile
new file mode 100644
index 000000000000..aec3b49777de
--- /dev/null
+++ b/www/redmine50/files/patch-Gemfile
@@ -0,0 +1,116 @@
+--- Gemfile.orig 2022-12-15 17:48:38.146246000 +0100
++++ Gemfile 2022-12-15 18:00:02.071136000 +0100
+@@ -3,9 +3,9 @@ gem 'bundler', '>= 1.12.0'
+ ruby '>= 2.5.0', '< 3.2.0'
+ gem 'bundler', '>= 1.12.0'
+
+-gem 'rails', '6.1.7'
++gem 'rails', '>=6.1.6'
+ gem 'globalid', '~> 0.4.2' if Gem.ruby_version < Gem::Version.new('2.6.0')
+-gem 'rouge', '~> 3.28.0'
++gem 'rouge', '>= 3.28.0'
+ gem 'request_store', '~> 1.5.0'
+ gem 'mini_mime', '~> 1.1.0'
+ gem "actionpack-xml_parser"
+@@ -15,12 +15,12 @@ gem "rexml", require: false if Gem.ruby_version >= Gem
+ gem 'csv', '~> 3.2.0'
+ gem 'nokogiri', (Gem.ruby_version < Gem::Version.new('2.6.0') ? '~> 1.12.5' : '~> 1.13.4')
+ gem "rexml", require: false if Gem.ruby_version >= Gem::Version.new('3.0')
+-gem 'i18n', '~> 1.10.0'
++gem 'i18n', '>= 1.10.0'
+ gem "rbpdf", "~> 1.20.0"
+ gem 'addressable'
+ gem 'rubyzip', '~> 2.3.0'
+ gem 'net-smtp', '~> 0.3.0'
+-gem 'net-imap', '~> 0.2.2'
++gem 'net-imap', '>= 0.2.2'
+ gem 'net-pop', '~> 0.1.1'
+ # Rails 6.1.6.1 does not work with Pysch 3.0.2, which is installed by default with Ruby 2.5. See https://github.com/rails/rails/issues/45590
+ gem 'psych', '>= 3.1.0' if Gem.ruby_version < Gem::Version.new('2.6.0')
+@@ -37,77 +37,6 @@ end
+ gem 'net-ldap', '~> 0.17.0'
+ end
+
+-# Optional gem for exporting the gantt to a PNG file
+-group :minimagick do
+- gem 'mini_magick', '~> 4.11.0'
+-end
+-
+-# Optional Markdown support, not for JRuby
+-# ToDo: Remove common_mark group when common_mark is decoupled from markdown. See defect (#36892) for more details.
+-gem 'redcarpet', '~> 3.5.1', groups: [:markdown, :common_mark]
+-
+-# Optional CommonMark support, not for JRuby
+-group :common_mark do
+- gem "html-pipeline", "~> 2.13.2"
+- gem "commonmarker", (Gem.ruby_version < Gem::Version.new('2.6.0') ? '0.21.0' : '~> 0.23.6')
+- gem "sanitize", "~> 6.0"
+- gem 'deckar01-task_list', '2.3.2'
+-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)
+- yaml_config = ERB.new(IO.read(database_file)).result
+- database_config = YAML.respond_to?(:unsafe_load) ? YAML.unsafe_load(yaml_config) : YAML.load(yaml_config)
+- 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.2.2", :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", "~> 6.1.0", :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 'listen', '~> 3.3'
+- gem "yard"
+-end
+-
+-group :test do
+- gem "rails-dom-testing"
+- gem 'mocha', (Gem.ruby_version < Gem::Version.new('2.7.0') ? ['>= 1.4.0', '< 2.0.0'] : '>= 1.4.0')
+- gem 'simplecov', '~> 0.21.2', :require => false
+- gem "ffi", platforms: [:mingw, :x64_mingw, :mswin]
+- # For running system tests
+- # TODO: Remove version specification once Capybara supports Puma 6
+- gem 'puma', '< 6.0.0'
+- gem 'capybara', (Gem.ruby_version < Gem::Version.new('2.6.0') ? '~> 3.35.3' : '~> 3.36.0')
+- gem "selenium-webdriver", "~> 3.142.7"
+- gem 'webdrivers', '4.6.1', require: false
+- # RuboCop
+- gem 'rubocop', '~> 1.26.0'
+- gem 'rubocop-performance', '~> 1.13.0'
+- gem 'rubocop-rails', '~> 2.14.0'
+-end
+-
+ local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")
+ if File.exist?(local_gemfile)
+ eval_gemfile local_gemfile
+@@ -116,4 +45,8 @@ Dir.glob File.expand_path("../plugins/*/{Gemfile,Plugi
+ # Load plugins' Gemfiles
+ 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|
++ self.instance_eval(Bundler.read_file(bundle))
+ end
diff --git a/www/redmine50/files/pg.rb b/www/redmine50/files/pg.rb
new file mode 100644
index 000000000000..3008b2863867
--- /dev/null
+++ b/www/redmine50/files/pg.rb
@@ -0,0 +1 @@
+gem "pg", "> 1.2.2"
diff --git a/www/redmine50/files/redmine.in b/www/redmine50/files/redmine.in
new file mode 100644
index 000000000000..9e3c6d276b3c
--- /dev/null
+++ b/www/redmine50/files/redmine.in
@@ -0,0 +1,38 @@
+#!/bin/sh
+
+# PROVIDE: redmine
+# REQUIRE: LOGIN
+# KEYWORD: shutdown
+
+# Add the following line to /etc/rc.conf[.local] to enable redmine
+#
+# redmine_enable (bool): Set to "NO" by default.
+# Set it to "YES" to enable redmine.
+# redmine_flags (str): Custom additional arguments to be passed
+# to redmine.
+# redmine_user (str): User account to run thin with. (default: %%WWWOWN%%)
+# redmine_group (str): Group to run thin with. (default: %%WWWGRP%%)
+
+. /etc/rc.subr
+
+name="redmine"
+rcvar=redmine_enable
+command=ruby%%RUBY_SUFFIX%%
+
+pidfile="%%WWWDIR%%/tmp/pids/thin.pid"
+
+load_rc_config $name
+
+# add /usr/local/bin to path
+export PATH=$PATH:%%PREFIX%%/bin
+
+# set defaults
+: ${redmine_enable="NO"}
+: ${redmine_flags="-a 0.0.0.0 -p 3000 -e production"}
+: ${redmine_user="%%WWWOWN%%"}
+: ${redmine_group="%%WWWGRP%%"}
+
+command_args="-d -D -c %%WWWDIR%% -u ${redmine_user} -g ${redmine_group}"
+start_cmd="%%PREFIX%%/bin/thin ${command_args} ${redmine_flags} start"
+
+run_rc_command "$1"
diff --git a/www/redmine50/files/thin.rb b/www/redmine50/files/thin.rb
new file mode 100644
index 000000000000..40b0486c1de4
--- /dev/null
+++ b/www/redmine50/files/thin.rb
@@ -0,0 +1 @@
+gem "thin", ">= 1.6.2"
diff --git a/www/redmine50/pkg-descr b/www/redmine50/pkg-descr
new file mode 100644
index 000000000000..05b0f6fb97a9
--- /dev/null
+++ b/www/redmine50/pkg-descr
@@ -0,0 +1,21 @@
+Redmine is a flexible project management web application
+written using Ruby on Rails framework, it is cross-platform
+and cross-database.
+
+Feature Overview:
+* Multiple projects support
+* Flexible role based access control
+* Flexible issue tracking system
+* Gantt chart and calendar
+* News, documents & files management
+* Feeds & email notifications
+* Per project wiki
+* Per project forums
+* Time tracking
+* Custom fields for issues, time-entries, projects and users
+* SCM integration (SVN, CVS, Git, Mercurial, Bazaar and Darcs)
+* Issue creation via email
+* Multiple LDAP authentication support
+* User self-registration support
+* Multilanguage support
+* Multiple databases support
diff --git a/www/redmine50/pkg-message b/www/redmine50/pkg-message
new file mode 100644
index 000000000000..41fa7641633e
--- /dev/null
+++ b/www/redmine50/pkg-message
@@ -0,0 +1,18 @@
+[
+{ type: install
+ message: <<EOM
+Redmine was installed.
+
+You now need to setup your Redmine installation so
+please have a look at the Installation Guide.
+
+https://www.redmine.org/projects/redmine/wiki/RedmineInstall
+
+
+If you are upgrading please read the Upgrading Guide
+before starting the new version.
+
+https://www.redmine.org/projects/redmine/wiki/RedmineUpgrade
+EOM
+}
+]
diff --git a/www/redmine50/pkg-plist b/www/redmine50/pkg-plist
new file mode 100644
index 000000000000..0068ab3441ff
--- /dev/null
+++ b/www/redmine50/pkg-plist
@@ -0,0 +1,2235 @@
+%%WWWDIR%%/.rubocop.yml
+%%WWWDIR%%/.rubocop_todo.yml
+%%WWWDIR%%/.stylelintignore
+%%WWWDIR%%/.stylelintrc
+%%WWWDIR%%/CONTRIBUTING.md
+@owner %%WWWOWN%%
+@group %%WWWGRP%%
+%%WWWDIR%%/Gemfile
+%%WWWDIR%%/Gemfile.lock
+@owner
+@group
+%%WWWDIR%%/README.rdoc
+%%WWWDIR%%/Rakefile
+%%WWWDIR%%/app/controllers/account_controller.rb
+%%WWWDIR%%/app/controllers/activities_controller.rb
+%%WWWDIR%%/app/controllers/admin_controller.rb
+%%WWWDIR%%/app/controllers/application_controller.rb
+%%WWWDIR%%/app/controllers/attachments_controller.rb
+%%WWWDIR%%/app/controllers/auth_sources_controller.rb
+%%WWWDIR%%/app/controllers/auto_completes_controller.rb
+%%WWWDIR%%/app/controllers/boards_controller.rb
+%%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
+%%WWWDIR%%/app/controllers/issues_controller.rb
+%%WWWDIR%%/app/controllers/journals_controller.rb
+%%WWWDIR%%/app/controllers/mail_handler_controller.rb
+%%WWWDIR%%/app/controllers/members_controller.rb
+%%WWWDIR%%/app/controllers/messages_controller.rb
+%%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
+%%WWWDIR%%/app/controllers/reports_controller.rb
+%%WWWDIR%%/app/controllers/repositories_controller.rb
+%%WWWDIR%%/app/controllers/roles_controller.rb
+%%WWWDIR%%/app/controllers/search_controller.rb
+%%WWWDIR%%/app/controllers/settings_controller.rb
+%%WWWDIR%%/app/controllers/sys_controller.rb
+%%WWWDIR%%/app/controllers/timelog_controller.rb
+%%WWWDIR%%/app/controllers/trackers_controller.rb
+%%WWWDIR%%/app/controllers/twofa_backup_codes_controller.rb
+%%WWWDIR%%/app/controllers/twofa_controller.rb
+%%WWWDIR%%/app/controllers/users_controller.rb
+%%WWWDIR%%/app/controllers/versions_controller.rb
+%%WWWDIR%%/app/controllers/watchers_controller.rb
+%%WWWDIR%%/app/controllers/welcome_controller.rb
+%%WWWDIR%%/app/controllers/wiki_controller.rb
+%%WWWDIR%%/app/controllers/wikis_controller.rb
+%%WWWDIR%%/app/controllers/workflows_controller.rb
+%%WWWDIR%%/app/helpers/account_helper.rb
+%%WWWDIR%%/app/helpers/activities_helper.rb
+%%WWWDIR%%/app/helpers/admin_helper.rb
+%%WWWDIR%%/app/helpers/application_helper.rb
+%%WWWDIR%%/app/helpers/attachments_helper.rb
+%%WWWDIR%%/app/helpers/auth_sources_helper.rb
+%%WWWDIR%%/app/helpers/avatars_helper.rb
+%%WWWDIR%%/app/helpers/boards_helper.rb
+%%WWWDIR%%/app/helpers/calendars_helper.rb
+%%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
+%%WWWDIR%%/app/helpers/issues_helper.rb
+%%WWWDIR%%/app/helpers/journals_helper.rb
+%%WWWDIR%%/app/helpers/mail_handler_helper.rb
+%%WWWDIR%%/app/helpers/members_helper.rb
+%%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/projects_queries_helper.rb
+%%WWWDIR%%/app/helpers/queries_helper.rb
+%%WWWDIR%%/app/helpers/reports_helper.rb
+%%WWWDIR%%/app/helpers/repositories_helper.rb
+%%WWWDIR%%/app/helpers/roles_helper.rb
+%%WWWDIR%%/app/helpers/routes_helper.rb
+%%WWWDIR%%/app/helpers/search_helper.rb
+%%WWWDIR%%/app/helpers/settings_helper.rb
+%%WWWDIR%%/app/helpers/sort_helper.rb
+%%WWWDIR%%/app/helpers/timelog_helper.rb
+%%WWWDIR%%/app/helpers/trackers_helper.rb
+%%WWWDIR%%/app/helpers/twofa_helper.rb
+%%WWWDIR%%/app/helpers/users_helper.rb
+%%WWWDIR%%/app/helpers/versions_helper.rb
+%%WWWDIR%%/app/helpers/watchers_helper.rb
+%%WWWDIR%%/app/helpers/welcome_helper.rb
+%%WWWDIR%%/app/helpers/wiki_helper.rb
+%%WWWDIR%%/app/helpers/workflows_helper.rb
+%%WWWDIR%%/app/models/anonymous_user.rb
+%%WWWDIR%%/app/models/attachment.rb
+%%WWWDIR%%/app/models/auth_source.rb
+%%WWWDIR%%/app/models/auth_source_ldap.rb
+%%WWWDIR%%/app/models/board.rb
+%%WWWDIR%%/app/models/change.rb
+%%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
+%%WWWDIR%%/app/models/group_anonymous.rb
+%%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
+%%WWWDIR%%/app/models/issue_relation.rb
+%%WWWDIR%%/app/models/issue_status.rb
+%%WWWDIR%%/app/models/journal.rb
+%%WWWDIR%%/app/models/journal_detail.rb
+%%WWWDIR%%/app/models/mail_handler.rb
+%%WWWDIR%%/app/models/mailer.rb
+%%WWWDIR%%/app/models/member.rb
+%%WWWDIR%%/app/models/member_role.rb
+%%WWWDIR%%/app/models/message.rb
+%%WWWDIR%%/app/models/news.rb
+%%WWWDIR%%/app/models/principal.rb
+%%WWWDIR%%/app/models/project.rb
+%%WWWDIR%%/app/models/project_custom_field.rb
+%%WWWDIR%%/app/models/project_query.rb
+%%WWWDIR%%/app/models/query.rb
+%%WWWDIR%%/app/models/repository.rb
+%%WWWDIR%%/app/models/repository/bazaar.rb
+%%WWWDIR%%/app/models/repository/cvs.rb
+%%WWWDIR%%/app/models/repository/filesystem.rb
+%%WWWDIR%%/app/models/repository/git.rb
+%%WWWDIR%%/app/models/repository/mercurial.rb
+%%WWWDIR%%/app/models/repository/subversion.rb
+%%WWWDIR%%/app/models/role.rb
+%%WWWDIR%%/app/models/setting.rb
+%%WWWDIR%%/app/models/time_entry.rb
+%%WWWDIR%%/app/models/time_entry_activity.rb
+%%WWWDIR%%/app/models/time_entry_activity_custom_field.rb
+%%WWWDIR%%/app/models/time_entry_custom_field.rb
+%%WWWDIR%%/app/models/time_entry_import.rb
+%%WWWDIR%%/app/models/time_entry_query.rb
+%%WWWDIR%%/app/models/token.rb
+%%WWWDIR%%/app/models/tracker.rb
+%%WWWDIR%%/app/models/user.rb
+%%WWWDIR%%/app/models/user_custom_field.rb
+%%WWWDIR%%/app/models/user_import.rb
+%%WWWDIR%%/app/models/user_preference.rb
+%%WWWDIR%%/app/models/version.rb
+%%WWWDIR%%/app/models/version_custom_field.rb
+%%WWWDIR%%/app/models/watcher.rb
+%%WWWDIR%%/app/models/wiki.rb
+%%WWWDIR%%/app/models/wiki_annotate.rb
+%%WWWDIR%%/app/models/wiki_content.rb
+%%WWWDIR%%/app/models/wiki_content_version.rb
+%%WWWDIR%%/app/models/wiki_diff.rb
+%%WWWDIR%%/app/models/wiki_page.rb
+%%WWWDIR%%/app/models/wiki_redirect.rb
+%%WWWDIR%%/app/models/workflow_permission.rb
+%%WWWDIR%%/app/models/workflow_rule.rb
+%%WWWDIR%%/app/models/workflow_transition.rb
+%%WWWDIR%%/app/validators/date_validator.rb
+%%WWWDIR%%/app/views/account/login.html.erb
+%%WWWDIR%%/app/views/account/logout.html.erb
+%%WWWDIR%%/app/views/account/lost_password.html.erb
+%%WWWDIR%%/app/views/account/password_recovery.html.erb
+%%WWWDIR%%/app/views/account/register.html.erb
+%%WWWDIR%%/app/views/account/twofa_confirm.html.erb
+%%WWWDIR%%/app/views/activities/_activities.html.erb
+%%WWWDIR%%/app/views/activities/index.html.erb
+%%WWWDIR%%/app/views/admin/_menu.html.erb
+%%WWWDIR%%/app/views/admin/_no_data.html.erb
+%%WWWDIR%%/app/views/admin/index.html.erb
+%%WWWDIR%%/app/views/admin/info.html.erb
+%%WWWDIR%%/app/views/admin/plugins.html.erb
+%%WWWDIR%%/app/views/admin/projects.html.erb
+%%WWWDIR%%/app/views/attachments/_form.html.erb
+%%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_all.html.erb
+%%WWWDIR%%/app/views/attachments/file.html.erb
+%%WWWDIR%%/app/views/attachments/image.html.erb
+%%WWWDIR%%/app/views/attachments/other.html.erb
+%%WWWDIR%%/app/views/attachments/show.api.rsb
+%%WWWDIR%%/app/views/attachments/upload.api.rsb
+%%WWWDIR%%/app/views/attachments/upload.js.erb
+%%WWWDIR%%/app/views/auth_sources/_form.html.erb
+%%WWWDIR%%/app/views/auth_sources/_form_auth_source_ldap.html.erb
+%%WWWDIR%%/app/views/auth_sources/edit.html.erb
+%%WWWDIR%%/app/views/auth_sources/index.html.erb
+%%WWWDIR%%/app/views/auth_sources/new.html.erb
+%%WWWDIR%%/app/views/boards/_form.html.erb
+%%WWWDIR%%/app/views/boards/edit.html.erb
+%%WWWDIR%%/app/views/boards/index.html.erb
+%%WWWDIR%%/app/views/boards/new.html.erb
+%%WWWDIR%%/app/views/boards/show.html.erb
+%%WWWDIR%%/app/views/calendars/show.html.erb
+%%WWWDIR%%/app/views/common/_calendar.html.erb
+%%WWWDIR%%/app/views/common/_diff.html.erb
+%%WWWDIR%%/app/views/common/_file.html.erb
+%%WWWDIR%%/app/views/common/_image.html.erb
+%%WWWDIR%%/app/views/common/_markup.html.erb
+%%WWWDIR%%/app/views/common/_no_preview.html.erb
+%%WWWDIR%%/app/views/common/_other.html.erb
+%%WWWDIR%%/app/views/common/_preview.html.erb
+%%WWWDIR%%/app/views/common/_tabs.html.erb
+%%WWWDIR%%/app/views/common/error.html.erb
+%%WWWDIR%%/app/views/common/error_messages.api.rsb
+%%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/_visibility_by_project_selector.html.erb
+%%WWWDIR%%/app/views/custom_fields/_visibility_by_role_selector.html.erb
+%%WWWDIR%%/app/views/custom_fields/_visibility_by_tracker_selector.html.erb
+%%WWWDIR%%/app/views/custom_fields/edit.html.erb
+%%WWWDIR%%/app/views/custom_fields/formats/_attachment.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
+%%WWWDIR%%/app/views/custom_fields/formats/_regexp.html.erb
+%%WWWDIR%%/app/views/custom_fields/formats/_string.html.erb
+%%WWWDIR%%/app/views/custom_fields/formats/_text.html.erb
+%%WWWDIR%%/app/views/custom_fields/formats/_user.html.erb
+%%WWWDIR%%/app/views/custom_fields/formats/_version.html.erb
+%%WWWDIR%%/app/views/custom_fields/index.api.rsb
+%%WWWDIR%%/app/views/custom_fields/index.html.erb
+%%WWWDIR%%/app/views/custom_fields/new.html.erb
+%%WWWDIR%%/app/views/custom_fields/new.js.erb
+%%WWWDIR%%/app/views/custom_fields/select_type.html.erb
+%%WWWDIR%%/app/views/documents/_document.html.erb
+%%WWWDIR%%/app/views/documents/_form.html.erb
+%%WWWDIR%%/app/views/documents/edit.html.erb
+%%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
+%%WWWDIR%%/app/views/enumerations/index.api.rsb
+%%WWWDIR%%/app/views/enumerations/index.html.erb
+%%WWWDIR%%/app/views/enumerations/new.html.erb
+%%WWWDIR%%/app/views/files/index.api.rsb
+%%WWWDIR%%/app/views/files/index.html.erb
+%%WWWDIR%%/app/views/files/new.html.erb
+%%WWWDIR%%/app/views/gantts/show.html.erb
+%%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
+%%WWWDIR%%/app/views/groups/destroy_membership.js.erb
+%%WWWDIR%%/app/views/groups/edit.html.erb
+%%WWWDIR%%/app/views/groups/edit_membership.js.erb
+%%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/_issues_fields_mapping.html.erb
+%%WWWDIR%%/app/views/imports/_issues_mapping.html.erb
+%%WWWDIR%%/app/views/imports/_issues_mapping.js.erb
+%%WWWDIR%%/app/views/imports/_issues_relations_mapping.html.erb
+%%WWWDIR%%/app/views/imports/_issues_saved_objects.html.erb
+%%WWWDIR%%/app/views/imports/_time_entries_fields_mapping.html.erb
+%%WWWDIR%%/app/views/imports/_time_entries_mapping.html.erb
+%%WWWDIR%%/app/views/imports/_time_entries_mapping.js.erb
+%%WWWDIR%%/app/views/imports/_time_entries_saved_objects.html.erb
+%%WWWDIR%%/app/views/imports/_users_fields_mapping.html.erb
+%%WWWDIR%%/app/views/imports/_users_mapping.html.erb
+%%WWWDIR%%/app/views/imports/_users_mapping.js.erb
+%%WWWDIR%%/app/views/imports/_users_saved_objects.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
+%%WWWDIR%%/app/views/issue_categories/destroy.html.erb
+%%WWWDIR%%/app/views/issue_categories/edit.html.erb
+%%WWWDIR%%/app/views/issue_categories/index.api.rsb
+%%WWWDIR%%/app/views/issue_categories/new.html.erb
+%%WWWDIR%%/app/views/issue_categories/new.js.erb
+%%WWWDIR%%/app/views/issue_categories/show.api.rsb
+%%WWWDIR%%/app/views/issue_relations/_form.html.erb
+%%WWWDIR%%/app/views/issue_relations/create.js.erb
+%%WWWDIR%%/app/views/issue_relations/destroy.js.erb
+%%WWWDIR%%/app/views/issue_relations/index.api.rsb
+%%WWWDIR%%/app/views/issue_relations/show.api.rsb
+%%WWWDIR%%/app/views/issue_statuses/_form.html.erb
+%%WWWDIR%%/app/views/issue_statuses/edit.html.erb
+%%WWWDIR%%/app/views/issue_statuses/index.api.rsb
+%%WWWDIR%%/app/views/issue_statuses/index.html.erb
+%%WWWDIR%%/app/views/issue_statuses/new.html.erb
+%%WWWDIR%%/app/views/issues/_action_menu.html.erb
+%%WWWDIR%%/app/views/issues/_action_menu_edit.html.erb
+%%WWWDIR%%/app/views/issues/_attributes.html.erb
+%%WWWDIR%%/app/views/issues/_conflict.html.erb
+%%WWWDIR%%/app/views/issues/_edit.html.erb
+%%WWWDIR%%/app/views/issues/_form.html.erb
+%%WWWDIR%%/app/views/issues/_form_custom_fields.html.erb
+%%WWWDIR%%/app/views/issues/_list.html.erb
+%%WWWDIR%%/app/views/issues/_relations.html.erb
+%%WWWDIR%%/app/views/issues/_sidebar.html.erb
+%%WWWDIR%%/app/views/issues/_subtasks.html.erb
+%%WWWDIR%%/app/views/issues/_trackers_description.html.erb
+%%WWWDIR%%/app/views/issues/_watchers_form.html.erb
+%%WWWDIR%%/app/views/issues/bulk_edit.html.erb
+%%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/show.pdf.erb
+%%WWWDIR%%/app/views/issues/tabs/_changesets.html.erb
+%%WWWDIR%%/app/views/issues/tabs/_history.html.erb
+%%WWWDIR%%/app/views/issues/tabs/_time_entries.html.erb
+%%WWWDIR%%/app/views/journals/_notes_form.html.erb
+%%WWWDIR%%/app/views/journals/diff.html.erb
+%%WWWDIR%%/app/views/journals/edit.js.erb
+%%WWWDIR%%/app/views/journals/index.builder
+%%WWWDIR%%/app/views/journals/new.js.erb
+%%WWWDIR%%/app/views/journals/update.js.erb
+%%WWWDIR%%/app/views/layouts/_file.html.erb
+%%WWWDIR%%/app/views/layouts/admin.html.erb
+%%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
+%%WWWDIR%%/app/views/mailer/account_activated.text.erb
+%%WWWDIR%%/app/views/mailer/account_activation_request.html.erb
+%%WWWDIR%%/app/views/mailer/account_activation_request.text.erb
+%%WWWDIR%%/app/views/mailer/account_information.html.erb
+%%WWWDIR%%/app/views/mailer/account_information.text.erb
+%%WWWDIR%%/app/views/mailer/attachments_added.html.erb
+%%WWWDIR%%/app/views/mailer/attachments_added.text.erb
+%%WWWDIR%%/app/views/mailer/document_added.html.erb
+%%WWWDIR%%/app/views/mailer/document_added.text.erb
+%%WWWDIR%%/app/views/mailer/issue_add.html.erb
+%%WWWDIR%%/app/views/mailer/issue_add.text.erb
+%%WWWDIR%%/app/views/mailer/issue_edit.html.erb
+%%WWWDIR%%/app/views/mailer/issue_edit.text.erb
+%%WWWDIR%%/app/views/mailer/lost_password.html.erb
+%%WWWDIR%%/app/views/mailer/lost_password.text.erb
+%%WWWDIR%%/app/views/mailer/message_posted.html.erb
+%%WWWDIR%%/app/views/mailer/message_posted.text.erb
+%%WWWDIR%%/app/views/mailer/news_added.html.erb
+%%WWWDIR%%/app/views/mailer/news_added.text.erb
+%%WWWDIR%%/app/views/mailer/news_comment_added.html.erb
+%%WWWDIR%%/app/views/mailer/news_comment_added.text.erb
+%%WWWDIR%%/app/views/mailer/register.html.erb
+%%WWWDIR%%/app/views/mailer/register.text.erb
+%%WWWDIR%%/app/views/mailer/reminder.html.erb
+%%WWWDIR%%/app/views/mailer/reminder.text.erb
+%%WWWDIR%%/app/views/mailer/security_notification.html.erb
+%%WWWDIR%%/app/views/mailer/security_notification.text.erb
+%%WWWDIR%%/app/views/mailer/settings_updated.html.erb
+%%WWWDIR%%/app/views/mailer/settings_updated.text.erb
+%%WWWDIR%%/app/views/mailer/test_email.html.erb
+%%WWWDIR%%/app/views/mailer/test_email.text.erb
+%%WWWDIR%%/app/views/mailer/wiki_content_added.html.erb
+%%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/_edit.html.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/edit.html.erb
+%%WWWDIR%%/app/views/members/edit.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
+%%WWWDIR%%/app/views/messages/edit.html.erb
+%%WWWDIR%%/app/views/messages/new.html.erb
+%%WWWDIR%%/app/views/messages/quote.js.erb
+%%WWWDIR%%/app/views/messages/show.html.erb
+%%WWWDIR%%/app/views/my/_sidebar.html.erb
+%%WWWDIR%%/app/views/my/account.api.rsb
+%%WWWDIR%%/app/views/my/account.html.erb
+%%WWWDIR%%/app/views/my/add_block.js.erb
+%%WWWDIR%%/app/views/my/blocks/_activity.html.erb
+%%WWWDIR%%/app/views/my/blocks/_calendar.html.erb
+%%WWWDIR%%/app/views/my/blocks/_documents.html.erb
+%%WWWDIR%%/app/views/my/blocks/_issue_query_selection.html.erb
+%%WWWDIR%%/app/views/my/blocks/_issues.erb
+%%WWWDIR%%/app/views/my/blocks/_news.html.erb
+%%WWWDIR%%/app/views/my/blocks/_timelog.html.erb
+%%WWWDIR%%/app/views/my/destroy.html.erb
+%%WWWDIR%%/app/views/my/page.html.erb
+%%WWWDIR%%/app/views/my/password.html.erb
+%%WWWDIR%%/app/views/my/remove_block.js.erb
+%%WWWDIR%%/app/views/my/show_api_key.html.erb
+%%WWWDIR%%/app/views/my/show_api_key.js.erb
+%%WWWDIR%%/app/views/my/update_page.js.erb
+%%WWWDIR%%/app/views/news/_form.html.erb
+%%WWWDIR%%/app/views/news/_news.html.erb
+%%WWWDIR%%/app/views/news/edit.html.erb
+%%WWWDIR%%/app/views/news/index.api.rsb
+%%WWWDIR%%/app/views/news/index.html.erb
+%%WWWDIR%%/app/views/news/new.html.erb
+%%WWWDIR%%/app/views/news/show.api.rsb
+%%WWWDIR%%/app/views/news/show.html.erb
+%%WWWDIR%%/app/views/principal_memberships/_edit.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/edit.html.erb
+%%WWWDIR%%/app/views/principal_memberships/edit.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/_board.html.erb
+%%WWWDIR%%/app/views/projects/_edit.html.erb
+%%WWWDIR%%/app/views/projects/_form.html.erb
+%%WWWDIR%%/app/views/projects/_list.html.erb
+%%WWWDIR%%/app/views/projects/_members_box.html.erb
+%%WWWDIR%%/app/views/projects/_sidebar.html.erb
+%%WWWDIR%%/app/views/projects/autocomplete.js.erb
+%%WWWDIR%%/app/views/projects/bookmark.js.erb
+%%WWWDIR%%/app/views/projects/copy.html.erb
+%%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/new.html.erb
+%%WWWDIR%%/app/views/projects/settings.html.erb
+%%WWWDIR%%/app/views/projects/settings/_activities.html.erb
+%%WWWDIR%%/app/views/projects/settings/_boards.html.erb
+%%WWWDIR%%/app/views/projects/settings/_issue_categories.html.erb
+%%WWWDIR%%/app/views/projects/settings/_issues.html.erb
+%%WWWDIR%%/app/views/projects/settings/_members.html.erb
+%%WWWDIR%%/app/views/projects/settings/_repositories.html.erb
+%%WWWDIR%%/app/views/projects/settings/_versions.html.erb
+%%WWWDIR%%/app/views/projects/show.api.rsb
+%%WWWDIR%%/app/views/projects/show.html.erb
+%%WWWDIR%%/app/views/queries/_columns.html.erb
+%%WWWDIR%%/app/views/queries/_filters.html.erb
+%%WWWDIR%%/app/views/queries/_form.html.erb
+%%WWWDIR%%/app/views/queries/_query_form.html.erb
+%%WWWDIR%%/app/views/queries/edit.html.erb
+%%WWWDIR%%/app/views/queries/index.api.rsb
+%%WWWDIR%%/app/views/queries/index.html.erb
+%%WWWDIR%%/app/views/queries/new.html.erb
+%%WWWDIR%%/app/views/reports/_details.html.erb
+%%WWWDIR%%/app/views/reports/_simple.html.erb
+%%WWWDIR%%/app/views/reports/issue_report.html.erb
+%%WWWDIR%%/app/views/reports/issue_report_details.html.erb
+%%WWWDIR%%/app/views/repositories/_breadcrumbs.html.erb
+%%WWWDIR%%/app/views/repositories/_changeset.html.erb
+%%WWWDIR%%/app/views/repositories/_dir_list.html.erb
+%%WWWDIR%%/app/views/repositories/_dir_list_content.html.erb
+%%WWWDIR%%/app/views/repositories/_form.html.erb
+%%WWWDIR%%/app/views/repositories/_link_to_functions.html.erb
+%%WWWDIR%%/app/views/repositories/_navigation.html.erb
+%%WWWDIR%%/app/views/repositories/_related_issues.html.erb
+%%WWWDIR%%/app/views/repositories/_revision_graph.html.erb
+%%WWWDIR%%/app/views/repositories/_revisions.html.erb
+%%WWWDIR%%/app/views/repositories/add_related_issue.js.erb
+%%WWWDIR%%/app/views/repositories/annotate.html.erb
+%%WWWDIR%%/app/views/repositories/changes.html.erb
+%%WWWDIR%%/app/views/repositories/committers.html.erb
+%%WWWDIR%%/app/views/repositories/diff.html.erb
+%%WWWDIR%%/app/views/repositories/edit.html.erb
+%%WWWDIR%%/app/views/repositories/entry.html.erb
+%%WWWDIR%%/app/views/repositories/new.html.erb
+%%WWWDIR%%/app/views/repositories/new.js.erb
+%%WWWDIR%%/app/views/repositories/remove_related_issue.js.erb
+%%WWWDIR%%/app/views/repositories/revision.html.erb
+%%WWWDIR%%/app/views/repositories/revisions.html.erb
+%%WWWDIR%%/app/views/repositories/show.html.erb
+%%WWWDIR%%/app/views/repositories/stats.html.erb
+%%WWWDIR%%/app/views/roles/_form.html.erb
+%%WWWDIR%%/app/views/roles/edit.html.erb
+%%WWWDIR%%/app/views/roles/index.api.rsb
+%%WWWDIR%%/app/views/roles/index.html.erb
+%%WWWDIR%%/app/views/roles/new.html.erb
+%%WWWDIR%%/app/views/roles/permissions.html.erb
+%%WWWDIR%%/app/views/roles/show.api.rsb
+%%WWWDIR%%/app/views/search/index.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
+%%WWWDIR%%/app/views/settings/_issues.html.erb
+%%WWWDIR%%/app/views/settings/_mail_handler.html.erb
+%%WWWDIR%%/app/views/settings/_notifications.html.erb
+%%WWWDIR%%/app/views/settings/_projects.html.erb
+%%WWWDIR%%/app/views/settings/_repositories.html.erb
+%%WWWDIR%%/app/views/settings/_timelog.html.erb
+%%WWWDIR%%/app/views/settings/_users.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
+%%WWWDIR%%/app/views/timelog/_report_criteria.html.erb
+%%WWWDIR%%/app/views/timelog/_sidebar.html.erb
+%%WWWDIR%%/app/views/timelog/bulk_edit.html.erb
+%%WWWDIR%%/app/views/timelog/bulk_edit.js.erb
+%%WWWDIR%%/app/views/timelog/edit.html.erb
+%%WWWDIR%%/app/views/timelog/edit.js.erb
+%%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
+%%WWWDIR%%/app/views/trackers/edit.html.erb
+%%WWWDIR%%/app/views/trackers/fields.html.erb
+%%WWWDIR%%/app/views/trackers/index.api.rsb
+%%WWWDIR%%/app/views/trackers/index.html.erb
+%%WWWDIR%%/app/views/trackers/new.html.erb
+%%WWWDIR%%/app/views/twofa/_twofa_code_form.html.erb
+%%WWWDIR%%/app/views/twofa/activate_confirm.html.erb
+%%WWWDIR%%/app/views/twofa/deactivate_confirm.html.erb
+%%WWWDIR%%/app/views/twofa/select_scheme.html.erb
+%%WWWDIR%%/app/views/twofa/totp/_new.html.erb
+%%WWWDIR%%/app/views/twofa_backup_codes/confirm.html.erb
+%%WWWDIR%%/app/views/twofa_backup_codes/show.html.erb
+%%WWWDIR%%/app/views/users/_auto_watch_on.html.erb
+%%WWWDIR%%/app/views/users/_form.html.erb
+%%WWWDIR%%/app/views/users/_general.html.erb
+%%WWWDIR%%/app/views/users/_groups.html.erb
+%%WWWDIR%%/app/views/users/_mail_notifications.html.erb
+%%WWWDIR%%/app/views/users/_memberships.html.erb
+%%WWWDIR%%/app/views/users/_preferences.html.erb
+%%WWWDIR%%/app/views/users/destroy.html.erb
+%%WWWDIR%%/app/views/users/destroy_membership.js.erb
+%%WWWDIR%%/app/views/users/edit.html.erb
+%%WWWDIR%%/app/views/users/edit_membership.js.erb
+%%WWWDIR%%/app/views/users/index.api.rsb
+%%WWWDIR%%/app/views/users/index.html.erb
+%%WWWDIR%%/app/views/users/new.html.erb
+%%WWWDIR%%/app/views/users/show.api.rsb
+%%WWWDIR%%/app/views/users/show.html.erb
+%%WWWDIR%%/app/views/versions/_form.html.erb
+%%WWWDIR%%/app/views/versions/_issue_counts.html.erb
+%%WWWDIR%%/app/views/versions/_new_modal.html.erb
+%%WWWDIR%%/app/views/versions/_overview.html.erb
+%%WWWDIR%%/app/views/versions/_sidebar.html.erb
+%%WWWDIR%%/app/views/versions/create.js.erb
+%%WWWDIR%%/app/views/versions/edit.html.erb
+%%WWWDIR%%/app/views/versions/index.api.rsb
+%%WWWDIR%%/app/views/versions/index.html.erb
+%%WWWDIR%%/app/views/versions/new.html.erb
+%%WWWDIR%%/app/views/versions/new.js.erb
+%%WWWDIR%%/app/views/versions/show.api.rsb
+%%WWWDIR%%/app/views/versions/show.html.erb
+%%WWWDIR%%/app/views/versions/status_by.js.erb
+%%WWWDIR%%/app/views/watchers/_new.html.erb
+%%WWWDIR%%/app/views/watchers/_set_watcher.js.erb
+%%WWWDIR%%/app/views/watchers/_watchers.html.erb
+%%WWWDIR%%/app/views/watchers/append.js.erb
+%%WWWDIR%%/app/views/watchers/autocomplete_for_user.html.erb
+%%WWWDIR%%/app/views/watchers/create.js.erb
+%%WWWDIR%%/app/views/watchers/destroy.js.erb
+%%WWWDIR%%/app/views/watchers/new.js.erb
+%%WWWDIR%%/app/views/welcome/index.html.erb
+%%WWWDIR%%/app/views/welcome/robots.text.erb
+%%WWWDIR%%/app/views/wiki/_content.html.erb
+%%WWWDIR%%/app/views/wiki/_new_modal.html.erb
+%%WWWDIR%%/app/views/wiki/_sidebar.html.erb
+%%WWWDIR%%/app/views/wiki/annotate.html.erb
+%%WWWDIR%%/app/views/wiki/date_index.html.erb
+%%WWWDIR%%/app/views/wiki/destroy.html.erb
+%%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
+%%WWWDIR%%/app/views/wiki/index.html.erb
+%%WWWDIR%%/app/views/wiki/new.html.erb
+%%WWWDIR%%/app/views/wiki/new.js.erb
+%%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/workflows/_action_menu.html.erb
+%%WWWDIR%%/app/views/workflows/_form.html.erb
+%%WWWDIR%%/app/views/workflows/copy.html.erb
+%%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/changelog.rb
+%%WWWDIR%%/bin/rails
+%%WWWDIR%%/bin/rake
+%%MARKDOWN%%%%WWWDIR%%/bundler.d/markdown.rb
+%%MYSQL%%%%WWWDIR%%/bundler.d/mysql.rb
+%%POSTGRESQL%%%%WWWDIR%%/bundler.d/pg.rb
+%%RMAGIC%%%%WWWDIR%%/bundler.d/mini_magick.rb
+%%THIN%%%%WWWDIR%%/bundler.d/thin.rb
+%%WWWDIR%%/bundler.d/commonmark.rb
+%%WWWDIR%%/config.ru
+%%WWWDIR%%/config/additional_environment.rb.example
+%%WWWDIR%%/config/application.rb
+%%WWWDIR%%/config/boot.rb
+%%WWWDIR%%/config/configuration.yml.example
+@sample %%WWWDIR%%/config/database.yml.sample
+%%WWWDIR%%/config/environment.rb
+%%WWWDIR%%/config/environments/development.rb
+%%WWWDIR%%/config/environments/production.rb
+%%WWWDIR%%/config/environments/test.rb
+%%WWWDIR%%/config/environments/test_pgsql.rb
+%%WWWDIR%%/config/environments/test_sqlite3.rb
+%%WWWDIR%%/config/initializers/00-core_plugins.rb
+%%WWWDIR%%/config/initializers/10-patches.rb
+%%WWWDIR%%/config/initializers/20-mime_types.rb
+%%WWWDIR%%/config/initializers/30-redmine.rb
+%%WWWDIR%%/config/initializers/backtrace_silencers.rb
+%%WWWDIR%%/config/initializers/inflections.rb
+%%WWWDIR%%/config/initializers/zeitwerk.rb
+%%WWWDIR%%/config/locales/ar.yml
+%%WWWDIR%%/config/locales/az.yml
+%%WWWDIR%%/config/locales/bg.yml
+%%WWWDIR%%/config/locales/bs.yml
+%%WWWDIR%%/config/locales/ca.yml
+%%WWWDIR%%/config/locales/cs.yml
+%%WWWDIR%%/config/locales/da.yml
+%%WWWDIR%%/config/locales/de.yml
+%%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
+%%WWWDIR%%/config/locales/fa.yml
+%%WWWDIR%%/config/locales/fi.yml
+%%WWWDIR%%/config/locales/fr.yml
+%%WWWDIR%%/config/locales/gl.yml
+%%WWWDIR%%/config/locales/he.yml
+%%WWWDIR%%/config/locales/hr.yml
+%%WWWDIR%%/config/locales/hu.yml
+%%WWWDIR%%/config/locales/id.yml
+%%WWWDIR%%/config/locales/it.yml
+%%WWWDIR%%/config/locales/ja.yml
+%%WWWDIR%%/config/locales/ko.yml
+%%WWWDIR%%/config/locales/lt.yml
+%%WWWDIR%%/config/locales/lv.yml
+%%WWWDIR%%/config/locales/mk.yml
+%%WWWDIR%%/config/locales/mn.yml
+%%WWWDIR%%/config/locales/nl.yml
+%%WWWDIR%%/config/locales/no.yml
+%%WWWDIR%%/config/locales/pl.yml
+%%WWWDIR%%/config/locales/pt-BR.yml
+%%WWWDIR%%/config/locales/pt.yml
+%%WWWDIR%%/config/locales/ro.yml
+%%WWWDIR%%/config/locales/ru.yml
+%%WWWDIR%%/config/locales/sk.yml
+%%WWWDIR%%/config/locales/sl.yml
+%%WWWDIR%%/config/locales/sq.yml
+%%WWWDIR%%/config/locales/sr-YU.yml
+%%WWWDIR%%/config/locales/sr.yml
+%%WWWDIR%%/config/locales/sv.yml
+%%WWWDIR%%/config/locales/th.yml
+%%WWWDIR%%/config/locales/tr.yml
+%%WWWDIR%%/config/locales/uk.yml
+%%WWWDIR%%/config/locales/vi.yml
+%%WWWDIR%%/config/locales/zh-TW.yml
+%%WWWDIR%%/config/locales/zh.yml
+%%WWWDIR%%/config/routes.rb
+@sample %%WWWDIR%%/config/settings.yml.sample
+%%WWWDIR%%/db/migrate/001_setup.rb
+%%WWWDIR%%/db/migrate/002_issue_move.rb
+%%WWWDIR%%/db/migrate/003_issue_add_note.rb
+%%WWWDIR%%/db/migrate/004_export_pdf.rb
+%%WWWDIR%%/db/migrate/005_issue_start_date.rb
+%%WWWDIR%%/db/migrate/006_calendar_and_activity.rb
+%%WWWDIR%%/db/migrate/007_create_journals.rb
+%%WWWDIR%%/db/migrate/008_create_user_preferences.rb
+%%WWWDIR%%/db/migrate/009_add_hide_mail_pref.rb
+%%WWWDIR%%/db/migrate/010_create_comments.rb
+%%WWWDIR%%/db/migrate/011_add_news_comments_count.rb
+%%WWWDIR%%/db/migrate/012_add_comments_permissions.rb
+%%WWWDIR%%/db/migrate/013_create_queries.rb
+%%WWWDIR%%/db/migrate/014_add_queries_permissions.rb
+%%WWWDIR%%/db/migrate/015_create_repositories.rb
+%%WWWDIR%%/db/migrate/016_add_repositories_permissions.rb
+%%WWWDIR%%/db/migrate/017_create_settings.rb
+%%WWWDIR%%/db/migrate/018_set_doc_and_files_notifications.rb
+%%WWWDIR%%/db/migrate/019_add_issue_status_position.rb
+%%WWWDIR%%/db/migrate/020_add_role_position.rb
+%%WWWDIR%%/db/migrate/021_add_tracker_position.rb
+%%WWWDIR%%/db/migrate/022_serialize_possibles_values.rb
+%%WWWDIR%%/db/migrate/023_add_tracker_is_in_roadmap.rb
+%%WWWDIR%%/db/migrate/024_add_roadmap_permission.rb
+%%WWWDIR%%/db/migrate/025_add_search_permission.rb
+%%WWWDIR%%/db/migrate/026_add_repository_login_and_password.rb
+%%WWWDIR%%/db/migrate/027_create_wikis.rb
+%%WWWDIR%%/db/migrate/028_create_wiki_pages.rb
+%%WWWDIR%%/db/migrate/029_create_wiki_contents.rb
+%%WWWDIR%%/db/migrate/030_add_projects_feeds_permissions.rb
+%%WWWDIR%%/db/migrate/031_add_repository_root_url.rb
+%%WWWDIR%%/db/migrate/032_create_time_entries.rb
+%%WWWDIR%%/db/migrate/033_add_timelog_permissions.rb
+%%WWWDIR%%/db/migrate/034_create_changesets.rb
+%%WWWDIR%%/db/migrate/035_create_changes.rb
+%%WWWDIR%%/db/migrate/036_add_changeset_commit_date.rb
+%%WWWDIR%%/db/migrate/037_add_project_identifier.rb
+%%WWWDIR%%/db/migrate/038_add_custom_field_is_filter.rb
+%%WWWDIR%%/db/migrate/039_create_watchers.rb
+%%WWWDIR%%/db/migrate/040_create_changesets_issues.rb
+%%WWWDIR%%/db/migrate/041_rename_comment_to_comments.rb
+%%WWWDIR%%/db/migrate/042_create_issue_relations.rb
+%%WWWDIR%%/db/migrate/043_add_relations_permissions.rb
+%%WWWDIR%%/db/migrate/044_set_language_length_to_five.rb
+%%WWWDIR%%/db/migrate/045_create_boards.rb
+%%WWWDIR%%/db/migrate/046_create_messages.rb
+%%WWWDIR%%/db/migrate/047_add_boards_permissions.rb
+%%WWWDIR%%/db/migrate/048_allow_null_version_effective_date.rb
+%%WWWDIR%%/db/migrate/049_add_wiki_destroy_page_permission.rb
+%%WWWDIR%%/db/migrate/050_add_wiki_attachments_permissions.rb
+%%WWWDIR%%/db/migrate/051_add_project_status.rb
+%%WWWDIR%%/db/migrate/052_add_changes_revision.rb
+%%WWWDIR%%/db/migrate/053_add_changes_branch.rb
+%%WWWDIR%%/db/migrate/054_add_changesets_scmid.rb
+%%WWWDIR%%/db/migrate/055_add_repositories_type.rb
+%%WWWDIR%%/db/migrate/056_add_repositories_changes_permission.rb
+%%WWWDIR%%/db/migrate/057_add_versions_wiki_page_title.rb
+%%WWWDIR%%/db/migrate/058_add_issue_categories_assigned_to_id.rb
+%%WWWDIR%%/db/migrate/059_add_roles_assignable.rb
+%%WWWDIR%%/db/migrate/060_change_changesets_committer_limit.rb
+%%WWWDIR%%/db/migrate/061_add_roles_builtin.rb
+%%WWWDIR%%/db/migrate/062_insert_builtin_roles.rb
+%%WWWDIR%%/db/migrate/063_add_roles_permissions.rb
+%%WWWDIR%%/db/migrate/064_drop_permissions.rb
+%%WWWDIR%%/db/migrate/065_add_settings_updated_on.rb
+%%WWWDIR%%/db/migrate/066_add_custom_value_customized_index.rb
+%%WWWDIR%%/db/migrate/067_create_wiki_redirects.rb
+%%WWWDIR%%/db/migrate/068_create_enabled_modules.rb
+%%WWWDIR%%/db/migrate/069_add_issues_estimated_hours.rb
+%%WWWDIR%%/db/migrate/070_change_attachments_content_type_limit.rb
+%%WWWDIR%%/db/migrate/071_add_queries_column_names.rb
+%%WWWDIR%%/db/migrate/072_add_enumerations_position.rb
+%%WWWDIR%%/db/migrate/073_add_enumerations_is_default.rb
+%%WWWDIR%%/db/migrate/074_add_auth_sources_tls.rb
+%%WWWDIR%%/db/migrate/075_add_members_mail_notification.rb
+%%WWWDIR%%/db/migrate/076_allow_null_position.rb
+%%WWWDIR%%/db/migrate/077_remove_issue_statuses_html_color.rb
+%%WWWDIR%%/db/migrate/078_add_custom_fields_position.rb
+%%WWWDIR%%/db/migrate/079_add_user_preferences_time_zone.rb
+%%WWWDIR%%/db/migrate/080_add_users_type.rb
+%%WWWDIR%%/db/migrate/081_create_projects_trackers.rb
+%%WWWDIR%%/db/migrate/082_add_messages_locked.rb
+%%WWWDIR%%/db/migrate/083_add_messages_sticky.rb
+%%WWWDIR%%/db/migrate/084_change_auth_sources_account_limit.rb
+%%WWWDIR%%/db/migrate/085_add_role_tracker_old_status_index_to_workflows.rb
+%%WWWDIR%%/db/migrate/086_add_custom_fields_searchable.rb
+%%WWWDIR%%/db/migrate/087_change_projects_description_to_text.rb
+%%WWWDIR%%/db/migrate/088_add_custom_fields_default_value.rb
+%%WWWDIR%%/db/migrate/089_add_attachments_description.rb
+%%WWWDIR%%/db/migrate/090_change_versions_name_limit.rb
+%%WWWDIR%%/db/migrate/091_change_changesets_revision_to_string.rb
+%%WWWDIR%%/db/migrate/092_change_changes_from_revision_to_string.rb
+%%WWWDIR%%/db/migrate/093_add_wiki_pages_protected.rb
+%%WWWDIR%%/db/migrate/094_change_projects_homepage_limit.rb
+%%WWWDIR%%/db/migrate/095_add_wiki_pages_parent_id.rb
+%%WWWDIR%%/db/migrate/096_add_commit_access_permission.rb
+%%WWWDIR%%/db/migrate/097_add_view_wiki_edits_permission.rb
+%%WWWDIR%%/db/migrate/098_set_topic_authors_as_watchers.rb
+%%WWWDIR%%/db/migrate/099_add_delete_wiki_pages_attachments_permission.rb
+%%WWWDIR%%/db/migrate/100_add_changesets_user_id.rb
+%%WWWDIR%%/db/migrate/101_populate_changesets_user_id.rb
+%%WWWDIR%%/db/migrate/102_add_custom_fields_editable.rb
+%%WWWDIR%%/db/migrate/103_set_custom_fields_editable.rb
+%%WWWDIR%%/db/migrate/104_add_projects_lft_and_rgt.rb
+%%WWWDIR%%/db/migrate/105_build_projects_tree.rb
+%%WWWDIR%%/db/migrate/106_remove_projects_projects_count.rb
+%%WWWDIR%%/db/migrate/107_add_open_id_authentication_tables.rb
+%%WWWDIR%%/db/migrate/108_add_identity_url_to_users.rb
+%%WWWDIR%%/db/migrate/20090214190337_add_watchers_user_id_type_index.rb
+%%WWWDIR%%/db/migrate/20090312172426_add_queries_sort_criteria.rb
+%%WWWDIR%%/db/migrate/20090312194159_add_projects_trackers_unique_index.rb
+%%WWWDIR%%/db/migrate/20090318181151_extend_settings_name.rb
+%%WWWDIR%%/db/migrate/20090323224724_add_type_to_enumerations.rb
+%%WWWDIR%%/db/migrate/20090401221305_update_enumerations_to_sti.rb
+%%WWWDIR%%/db/migrate/20090401231134_add_active_field_to_enumerations.rb
+%%WWWDIR%%/db/migrate/20090403001910_add_project_to_enumerations.rb
+%%WWWDIR%%/db/migrate/20090406161854_add_parent_id_to_enumerations.rb
+%%WWWDIR%%/db/migrate/20090425161243_add_queries_group_by.rb
+%%WWWDIR%%/db/migrate/20090503121501_create_member_roles.rb
+%%WWWDIR%%/db/migrate/20090503121505_populate_member_roles.rb
+%%WWWDIR%%/db/migrate/20090503121510_drop_members_role_id.rb
+%%WWWDIR%%/db/migrate/20090614091200_fix_messages_sticky_null.rb
+%%WWWDIR%%/db/migrate/20090704172350_populate_users_type.rb
+%%WWWDIR%%/db/migrate/20090704172355_create_groups_users.rb
+%%WWWDIR%%/db/migrate/20090704172358_add_member_roles_inherited_from.rb
+%%WWWDIR%%/db/migrate/20091010093521_fix_users_custom_values.rb
+%%WWWDIR%%/db/migrate/20091017212227_add_missing_indexes_to_workflows.rb
+%%WWWDIR%%/db/migrate/20091017212457_add_missing_indexes_to_custom_fields_projects.rb
+%%WWWDIR%%/db/migrate/20091017212644_add_missing_indexes_to_messages.rb
+%%WWWDIR%%/db/migrate/20091017212938_add_missing_indexes_to_repositories.rb
+%%WWWDIR%%/db/migrate/20091017213027_add_missing_indexes_to_comments.rb
+%%WWWDIR%%/db/migrate/20091017213113_add_missing_indexes_to_enumerations.rb
+%%WWWDIR%%/db/migrate/20091017213151_add_missing_indexes_to_wiki_pages.rb
+%%WWWDIR%%/db/migrate/20091017213228_add_missing_indexes_to_watchers.rb
+%%WWWDIR%%/db/migrate/20091017213257_add_missing_indexes_to_auth_sources.rb
+%%WWWDIR%%/db/migrate/20091017213332_add_missing_indexes_to_documents.rb
+%%WWWDIR%%/db/migrate/20091017213444_add_missing_indexes_to_tokens.rb
+%%WWWDIR%%/db/migrate/20091017213536_add_missing_indexes_to_changesets.rb
+%%WWWDIR%%/db/migrate/20091017213642_add_missing_indexes_to_issue_categories.rb
+%%WWWDIR%%/db/migrate/20091017213716_add_missing_indexes_to_member_roles.rb
+%%WWWDIR%%/db/migrate/20091017213757_add_missing_indexes_to_boards.rb
+%%WWWDIR%%/db/migrate/20091017213835_add_missing_indexes_to_user_preferences.rb
+%%WWWDIR%%/db/migrate/20091017213910_add_missing_indexes_to_issues.rb
+%%WWWDIR%%/db/migrate/20091017214015_add_missing_indexes_to_members.rb
+%%WWWDIR%%/db/migrate/20091017214107_add_missing_indexes_to_custom_fields.rb
+%%WWWDIR%%/db/migrate/20091017214136_add_missing_indexes_to_queries.rb
+%%WWWDIR%%/db/migrate/20091017214236_add_missing_indexes_to_time_entries.rb
+%%WWWDIR%%/db/migrate/20091017214308_add_missing_indexes_to_news.rb
+%%WWWDIR%%/db/migrate/20091017214336_add_missing_indexes_to_users.rb
+%%WWWDIR%%/db/migrate/20091017214406_add_missing_indexes_to_attachments.rb
+%%WWWDIR%%/db/migrate/20091017214440_add_missing_indexes_to_wiki_contents.rb
+%%WWWDIR%%/db/migrate/20091017214519_add_missing_indexes_to_custom_values.rb
+%%WWWDIR%%/db/migrate/20091017214611_add_missing_indexes_to_journals.rb
+%%WWWDIR%%/db/migrate/20091017214644_add_missing_indexes_to_issue_relations.rb
+%%WWWDIR%%/db/migrate/20091017214720_add_missing_indexes_to_wiki_redirects.rb
+%%WWWDIR%%/db/migrate/20091017214750_add_missing_indexes_to_custom_fields_trackers.rb
+%%WWWDIR%%/db/migrate/20091025163651_add_activity_indexes.rb
+%%WWWDIR%%/db/migrate/20091108092559_add_versions_status.rb
+%%WWWDIR%%/db/migrate/20091114105931_add_view_issues_permission.rb
+%%WWWDIR%%/db/migrate/20091123212029_add_default_done_ratio_to_issue_status.rb
+%%WWWDIR%%/db/migrate/20091205124427_add_versions_sharing.rb
+%%WWWDIR%%/db/migrate/20091220183509_add_lft_and_rgt_indexes_to_projects.rb
+%%WWWDIR%%/db/migrate/20091220183727_add_index_to_settings_name.rb
+%%WWWDIR%%/db/migrate/20091220184736_add_indexes_to_issue_status.rb
+%%WWWDIR%%/db/migrate/20091225164732_remove_enumerations_opt.rb
+%%WWWDIR%%/db/migrate/20091227112908_change_wiki_contents_text_limit.rb
+%%WWWDIR%%/db/migrate/20100129193402_change_users_mail_notification_to_string.rb
+%%WWWDIR%%/db/migrate/20100129193813_update_mail_notification_values.rb
+%%WWWDIR%%/db/migrate/20100221100219_add_index_on_changesets_scmid.rb
+%%WWWDIR%%/db/migrate/20100313132032_add_issues_nested_sets_columns.rb
+%%WWWDIR%%/db/migrate/20100313171051_add_index_on_issues_nested_set.rb
+%%WWWDIR%%/db/migrate/20100705164950_change_changes_path_length_limit.rb
+%%WWWDIR%%/db/migrate/20100819172912_enable_calendar_and_gantt_modules_where_appropriate.rb
+%%WWWDIR%%/db/migrate/20101104182107_add_unique_index_on_members.rb
+%%WWWDIR%%/db/migrate/20101107130441_add_custom_fields_visible.rb
+%%WWWDIR%%/db/migrate/20101114115114_change_projects_name_limit.rb
+%%WWWDIR%%/db/migrate/20101114115359_change_projects_identifier_limit.rb
+%%WWWDIR%%/db/migrate/20110220160626_add_workflows_assignee_and_author.rb
+%%WWWDIR%%/db/migrate/20110223180944_add_users_salt.rb
+%%WWWDIR%%/db/migrate/20110223180953_salt_user_passwords.rb
+%%WWWDIR%%/db/migrate/20110224000000_add_repositories_path_encoding.rb
+%%WWWDIR%%/db/migrate/20110226120112_change_repositories_password_limit.rb
+%%WWWDIR%%/db/migrate/20110226120132_change_auth_sources_account_password_limit.rb
+%%WWWDIR%%/db/migrate/20110227125750_change_journal_details_values_to_text.rb
+%%WWWDIR%%/db/migrate/20110228000000_add_repositories_log_encoding.rb
+%%WWWDIR%%/db/migrate/20110228000100_copy_repositories_log_encoding.rb
+%%WWWDIR%%/db/migrate/20110401192910_add_index_to_users_type.rb
+%%WWWDIR%%/db/migrate/20110408103312_add_roles_issues_visibility.rb
+%%WWWDIR%%/db/migrate/20110412065600_add_issues_is_private.rb
+%%WWWDIR%%/db/migrate/20110511000000_add_repositories_extra_info.rb
+%%WWWDIR%%/db/migrate/20110902000000_create_changeset_parents.rb
+%%WWWDIR%%/db/migrate/20111201201315_add_unique_index_to_issue_relations.rb
+%%WWWDIR%%/db/migrate/20120115143024_add_repositories_identifier.rb
+%%WWWDIR%%/db/migrate/20120115143100_add_repositories_is_default.rb
+%%WWWDIR%%/db/migrate/20120115143126_set_default_repositories.rb
+%%WWWDIR%%/db/migrate/20120127174243_add_custom_fields_multiple.rb
+%%WWWDIR%%/db/migrate/20120205111326_change_users_login_limit.rb
+%%WWWDIR%%/db/migrate/20120223110929_change_attachments_container_defaults.rb
+%%WWWDIR%%/db/migrate/20120301153455_add_auth_sources_filter.rb
+%%WWWDIR%%/db/migrate/20120422150750_change_repositories_to_full_sti.rb
+%%WWWDIR%%/db/migrate/20120705074331_add_trackers_fields_bits.rb
+%%WWWDIR%%/db/migrate/20120707064544_add_auth_sources_timeout.rb
+%%WWWDIR%%/db/migrate/20120714122000_add_workflows_type.rb
+%%WWWDIR%%/db/migrate/20120714122100_update_workflows_to_sti.rb
+%%WWWDIR%%/db/migrate/20120714122200_add_workflows_rule_fields.rb
+%%WWWDIR%%/db/migrate/20120731164049_add_boards_parent_id.rb
+%%WWWDIR%%/db/migrate/20120930112914_add_journals_private_notes.rb
+%%WWWDIR%%/db/migrate/20121026002032_add_enumerations_position_name.rb
+%%WWWDIR%%/db/migrate/20121026003537_populate_enumerations_position_name.rb
+%%WWWDIR%%/db/migrate/20121209123234_add_queries_type.rb
+%%WWWDIR%%/db/migrate/20121209123358_update_queries_to_sti.rb
+%%WWWDIR%%/db/migrate/20121213084931_add_attachments_disk_directory.rb
+%%WWWDIR%%/db/migrate/20130110122628_split_documents_permissions.rb
+%%WWWDIR%%/db/migrate/20130201184705_add_unique_index_on_tokens_value.rb
+%%WWWDIR%%/db/migrate/20130202090625_add_projects_inherit_members.rb
+%%WWWDIR%%/db/migrate/20130207175206_add_unique_index_on_custom_fields_trackers.rb
+%%WWWDIR%%/db/migrate/20130207181455_add_unique_index_on_custom_fields_projects.rb
+%%WWWDIR%%/db/migrate/20130215073721_change_users_lastname_length_to_255.rb
+%%WWWDIR%%/db/migrate/20130215111127_add_issues_closed_on.rb
+%%WWWDIR%%/db/migrate/20130215111141_populate_issues_closed_on.rb
+%%WWWDIR%%/db/migrate/20130217094251_remove_issues_default_fk_values.rb
+%%WWWDIR%%/db/migrate/20130602092539_create_queries_roles.rb
+%%WWWDIR%%/db/migrate/20130710182539_add_queries_visibility.rb
+%%WWWDIR%%/db/migrate/20130713104233_create_custom_fields_roles.rb
+%%WWWDIR%%/db/migrate/20130713111657_add_queries_options.rb
+%%WWWDIR%%/db/migrate/20130729070143_add_users_must_change_passwd.rb
+%%WWWDIR%%/db/migrate/20130911193200_remove_eols_from_attachments_filename.rb
+%%WWWDIR%%/db/migrate/20131004113137_support_for_multiple_commit_keywords.rb
+%%WWWDIR%%/db/migrate/20131005100610_add_repositories_created_on.rb
+%%WWWDIR%%/db/migrate/20131124175346_add_custom_fields_format_store.rb
+%%WWWDIR%%/db/migrate/20131210180802_add_custom_fields_description.rb
+%%WWWDIR%%/db/migrate/20131214094309_remove_custom_fields_min_max_length_default_values.rb
+%%WWWDIR%%/db/migrate/20131215104612_store_relation_type_in_journal_details.rb
+%%WWWDIR%%/db/migrate/20131218183023_delete_orphan_time_entries_custom_values.rb
+%%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%%/db/migrate/20160404080304_force_password_reset_during_setup.rb
+%%WWWDIR%%/db/migrate/20160416072926_remove_position_defaults.rb
+%%WWWDIR%%/db/migrate/20160529063352_add_roles_settings.rb
+%%WWWDIR%%/db/migrate/20161001122012_add_tracker_id_index_to_workflows.rb
+%%WWWDIR%%/db/migrate/20161002133421_add_index_on_member_roles_inherited_from.rb
+%%WWWDIR%%/db/migrate/20161010081301_change_issues_description_limit.rb
+%%WWWDIR%%/db/migrate/20161010081528_change_journal_details_value_limit.rb
+%%WWWDIR%%/db/migrate/20161010081600_change_journals_notes_limit.rb
+%%WWWDIR%%/db/migrate/20161126094932_add_index_on_changesets_issues_issue_id.rb
+%%WWWDIR%%/db/migrate/20161220091118_add_index_on_issues_parent_id.rb
+%%WWWDIR%%/db/migrate/20170207050700_add_index_on_disk_filename_to_attachments.rb
+%%WWWDIR%%/db/migrate/20170302015225_change_attachments_digest_limit_to_64.rb
+%%WWWDIR%%/db/migrate/20170309214320_add_project_default_assigned_to_id.rb
+%%WWWDIR%%/db/migrate/20170320051650_change_repositories_extra_info_limit.rb
+%%WWWDIR%%/db/migrate/20170418090031_add_view_news_to_all_existing_roles.rb
+%%WWWDIR%%/db/migrate/20170419144536_add_view_messages_to_all_existing_roles.rb
+%%WWWDIR%%/db/migrate/20170723112801_rename_comments_to_content.rb
+%%WWWDIR%%/db/migrate/20180501132547_add_author_id_to_time_entries.rb
+%%WWWDIR%%/db/migrate/20180913072918_add_verify_peer_to_auth_sources.rb
+%%WWWDIR%%/db/migrate/20180923082945_change_sqlite_booleans_to_0_and_1.rb
+%%WWWDIR%%/db/migrate/20180923091603_change_sqlite_booleans_default.rb
+%%WWWDIR%%/db/migrate/20190315094151_change_custom_values_value_limit.rb
+%%WWWDIR%%/db/migrate/20190315102101_add_trackers_description.rb
+%%WWWDIR%%/db/migrate/20190510070108_add_unique_id_to_import_items.rb
+%%WWWDIR%%/db/migrate/20190620135549_change_roles_name_limit.rb
+%%WWWDIR%%/db/migrate/20200826153401_add_twofa_scheme_to_user.rb
+%%WWWDIR%%/db/migrate/20200826153402_add_totp_to_user.rb
+%%WWWDIR%%/db/migrate/20210704125704_add_twofa_required_to_groups.rb
+%%WWWDIR%%/db/migrate/20210705111300_add_projects_default_issue_query_id.rb
+%%WWWDIR%%/db/migrate/20210728131544_drop_is_in_chlog_column.rb
+%%WWWDIR%%/db/migrate/20210801145548_remove_bcc_recipients_setting.rb
+%%WWWDIR%%/db/migrate/20210801211024_remove_orphaned_user_custom_values.rb
+%%WWWDIR%%/db/migrate/20211213122100_remove_identity_url_from_users.rb
+%%WWWDIR%%/db/migrate/20211213122101_drop_open_id_authentication_tables.rb
+%%WWWDIR%%/db/migrate/20211213122102_remove_open_id_setting.rb
+%%WWWDIR%%/db/migrate/20220224194639_delete_orphaned_time_entry_activities.rb
+%%WWWDIR%%/doc/CHANGELOG
+%%WWWDIR%%/doc/COPYING
+%%WWWDIR%%/doc/INSTALL
+%%WWWDIR%%/doc/README_FOR_APP
+%%WWWDIR%%/doc/RUNNING_TESTS
+%%WWWDIR%%/doc/UPGRADING
+%%WWWDIR%%/extra/mail_handler/rdm-mailhandler.rb
+%%WWWDIR%%/extra/sample_plugin/README
+%%WWWDIR%%/extra/sample_plugin/app/controllers/example_controller.rb
+%%WWWDIR%%/extra/sample_plugin/app/models/meeting.rb
+%%WWWDIR%%/extra/sample_plugin/app/views/example/say_goodbye.html.erb
+%%WWWDIR%%/extra/sample_plugin/app/views/example/say_hello.html.erb
+%%WWWDIR%%/extra/sample_plugin/app/views/my/blocks/_sample_block.html.erb
+%%WWWDIR%%/extra/sample_plugin/app/views/settings/_sample_plugin_settings.html.erb
+%%WWWDIR%%/extra/sample_plugin/assets/images/it_works.png
+%%WWWDIR%%/extra/sample_plugin/assets/stylesheets/example.css
+%%WWWDIR%%/extra/sample_plugin/config/locales/en.yml
+%%WWWDIR%%/extra/sample_plugin/config/locales/fr.yml
+%%WWWDIR%%/extra/sample_plugin/config/routes.rb
+%%WWWDIR%%/extra/sample_plugin/db/migrate/001_create_meetings.rb
+%%WWWDIR%%/extra/sample_plugin/init.rb
+%%WWWDIR%%/extra/sample_plugin/test/integration/routing_test.rb
+%%WWWDIR%%/extra/svn/Redmine.pm
+%%WWWDIR%%/extra/svn/reposman.rb
+%%WWWDIR%%/lib/generators/redmine_plugin/USAGE
+%%WWWDIR%%/lib/generators/redmine_plugin/redmine_plugin_generator.rb
+%%WWWDIR%%/lib/generators/redmine_plugin/templates/README.rdoc
+%%WWWDIR%%/lib/generators/redmine_plugin/templates/en_rails_i18n.yml
+%%WWWDIR%%/lib/generators/redmine_plugin/templates/init.rb.erb
+%%WWWDIR%%/lib/generators/redmine_plugin/templates/routes.rb
+%%WWWDIR%%/lib/generators/redmine_plugin/templates/test_helper.rb.erb
+%%WWWDIR%%/lib/generators/redmine_plugin_controller/USAGE
+%%WWWDIR%%/lib/generators/redmine_plugin_controller/redmine_plugin_controller_generator.rb
+%%WWWDIR%%/lib/generators/redmine_plugin_controller/templates/controller.rb.erb
+%%WWWDIR%%/lib/generators/redmine_plugin_controller/templates/functional_test.rb.erb
+%%WWWDIR%%/lib/generators/redmine_plugin_controller/templates/helper.rb.erb
+%%WWWDIR%%/lib/generators/redmine_plugin_controller/templates/view.html.erb
+%%WWWDIR%%/lib/generators/redmine_plugin_migration/USAGE
+%%WWWDIR%%/lib/generators/redmine_plugin_migration/redmine_plugin_migration_generator.rb
+%%WWWDIR%%/lib/generators/redmine_plugin_migration/templates/migration.rb.tt
+%%WWWDIR%%/lib/generators/redmine_plugin_model/USAGE
+%%WWWDIR%%/lib/generators/redmine_plugin_model/redmine_plugin_model_generator.rb
+%%WWWDIR%%/lib/generators/redmine_plugin_model/templates/migration.rb
+%%WWWDIR%%/lib/generators/redmine_plugin_model/templates/model.rb.erb
+%%WWWDIR%%/lib/generators/redmine_plugin_model/templates/unit_test.rb.erb
+%%WWWDIR%%/lib/plugins/acts_as_activity_provider/init.rb
+%%WWWDIR%%/lib/plugins/acts_as_activity_provider/lib/acts_as_activity_provider.rb
+%%WWWDIR%%/lib/plugins/acts_as_attachable/init.rb
+%%WWWDIR%%/lib/plugins/acts_as_attachable/lib/acts_as_attachable.rb
+%%WWWDIR%%/lib/plugins/acts_as_customizable/init.rb
+%%WWWDIR%%/lib/plugins/acts_as_customizable/lib/acts_as_customizable.rb
+%%WWWDIR%%/lib/plugins/acts_as_event/init.rb
+%%WWWDIR%%/lib/plugins/acts_as_event/lib/acts_as_event.rb
+%%WWWDIR%%/lib/plugins/acts_as_searchable/init.rb
+%%WWWDIR%%/lib/plugins/acts_as_searchable/lib/acts_as_searchable.rb
+%%WWWDIR%%/lib/plugins/acts_as_tree/README
+%%WWWDIR%%/lib/plugins/acts_as_tree/Rakefile
+%%WWWDIR%%/lib/plugins/acts_as_tree/init.rb
+%%WWWDIR%%/lib/plugins/acts_as_tree/lib/active_record/acts/tree.rb
+%%WWWDIR%%/lib/plugins/acts_as_tree/test/abstract_unit.rb
+%%WWWDIR%%/lib/plugins/acts_as_tree/test/acts_as_tree_test.rb
+%%WWWDIR%%/lib/plugins/acts_as_tree/test/database.yml
+%%WWWDIR%%/lib/plugins/acts_as_tree/test/fixtures/mixin.rb
+%%WWWDIR%%/lib/plugins/acts_as_tree/test/fixtures/mixins.yml
+%%WWWDIR%%/lib/plugins/acts_as_tree/test/schema.rb
+%%WWWDIR%%/lib/plugins/acts_as_watchable/init.rb
+%%WWWDIR%%/lib/plugins/acts_as_watchable/lib/acts_as_watchable.rb
+%%WWWDIR%%/lib/plugins/gravatar/.gitignore
+%%WWWDIR%%/lib/plugins/gravatar/MIT-LICENSE
+%%WWWDIR%%/lib/plugins/gravatar/README.rdoc
+%%WWWDIR%%/lib/plugins/gravatar/Rakefile
+%%WWWDIR%%/lib/plugins/gravatar/about.yml
+%%WWWDIR%%/lib/plugins/gravatar/init.rb
+%%WWWDIR%%/lib/plugins/gravatar/lib/gravatar.rb
+%%WWWDIR%%/lib/plugins/gravatar/spec/gravatar_spec.rb
+%%WWWDIR%%/lib/redmine.rb
+%%WWWDIR%%/lib/redmine/access_control.rb
+%%WWWDIR%%/lib/redmine/access_keys.rb
+%%WWWDIR%%/lib/redmine/activity.rb
+%%WWWDIR%%/lib/redmine/activity/fetcher.rb
+%%WWWDIR%%/lib/redmine/acts/mentionable.rb
+%%WWWDIR%%/lib/redmine/acts/positioned.rb
+%%WWWDIR%%/lib/redmine/ciphering.rb
+%%WWWDIR%%/lib/redmine/codeset_util.rb
+%%WWWDIR%%/lib/redmine/configuration.rb
+%%WWWDIR%%/lib/redmine/core_ext.rb
+%%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/diff.rb
+%%WWWDIR%%/lib/redmine/diff_table.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/helpers/url.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/my_page.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
+%%WWWDIR%%/lib/redmine/plugin.rb
+%%WWWDIR%%/lib/redmine/plugin_loader.rb
+%%WWWDIR%%/lib/redmine/pop3.rb
+%%WWWDIR%%/lib/redmine/preparation.rb
+%%WWWDIR%%/lib/redmine/project_jump_box.rb
+%%WWWDIR%%/lib/redmine/safe_attributes.rb
+%%WWWDIR%%/lib/redmine/scm/adapters.rb
+%%WWWDIR%%/lib/redmine/scm/adapters/abstract_adapter.rb
+%%WWWDIR%%/lib/redmine/scm/adapters/bazaar_adapter.rb
+%%WWWDIR%%/lib/redmine/scm/adapters/command_failed.rb
+%%WWWDIR%%/lib/redmine/scm/adapters/cvs_adapter.rb
+%%WWWDIR%%/lib/redmine/scm/adapters/filesystem_adapter.rb
+%%WWWDIR%%/lib/redmine/scm/adapters/git_adapter.rb
+%%WWWDIR%%/lib/redmine/scm/adapters/mercurial/hg-template-1.0.tmpl
+%%WWWDIR%%/lib/redmine/scm/adapters/mercurial/redminehelper.py
+%%WWWDIR%%/lib/redmine/scm/adapters/mercurial_adapter.rb
+%%WWWDIR%%/lib/redmine/scm/adapters/subversion_adapter.rb
+%%WWWDIR%%/lib/redmine/scm/base.rb
+%%WWWDIR%%/lib/redmine/search.rb
+%%WWWDIR%%/lib/redmine/sort_criteria.rb
+%%WWWDIR%%/lib/redmine/string_array_diff/diff.rb
+%%WWWDIR%%/lib/redmine/string_array_diff/diffable.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
+%%WWWDIR%%/lib/redmine/twofa.rb
+%%WWWDIR%%/lib/redmine/twofa/base.rb
+%%WWWDIR%%/lib/redmine/twofa/totp.rb
+%%WWWDIR%%/lib/redmine/unified_diff.rb
+%%WWWDIR%%/lib/redmine/utils.rb
+%%WWWDIR%%/lib/redmine/utils/date_calculation.rb
+%%WWWDIR%%/lib/redmine/utils/shell.rb
+%%WWWDIR%%/lib/redmine/version.rb
+%%WWWDIR%%/lib/redmine/views/api_template_handler.rb
+%%WWWDIR%%/lib/redmine/views/builders.rb
+%%WWWDIR%%/lib/redmine/views/builders/json.rb
+%%WWWDIR%%/lib/redmine/views/builders/structure.rb
+%%WWWDIR%%/lib/redmine/views/builders/xml.rb
+%%WWWDIR%%/lib/redmine/views/labelled_form_builder.rb
+%%WWWDIR%%/lib/redmine/views/other_formats_builder.rb
+%%WWWDIR%%/lib/redmine/wiki_formatting.rb
+%%WWWDIR%%/lib/redmine/wiki_formatting/common_mark/append_spaces_to_lines.rb
+%%WWWDIR%%/lib/redmine/wiki_formatting/common_mark/external_links_filter.rb
+%%WWWDIR%%/lib/redmine/wiki_formatting/common_mark/fixup_auto_links_filter.rb
+%%WWWDIR%%/lib/redmine/wiki_formatting/common_mark/formatter.rb
+%%WWWDIR%%/lib/redmine/wiki_formatting/common_mark/helper.rb
+%%WWWDIR%%/lib/redmine/wiki_formatting/common_mark/html_parser.rb
+%%WWWDIR%%/lib/redmine/wiki_formatting/common_mark/markdown_filter.rb
+%%WWWDIR%%/lib/redmine/wiki_formatting/common_mark/sanitization_filter.rb
+%%WWWDIR%%/lib/redmine/wiki_formatting/common_mark/syntax_highlight_filter.rb
+%%WWWDIR%%/lib/redmine/wiki_formatting/html_parser.rb
+%%WWWDIR%%/lib/redmine/wiki_formatting/links_helper.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/redmine/wiki_formatting/textile/redcloth3.rb
+%%WWWDIR%%/lib/tasks/ci.rake
+%%WWWDIR%%/lib/tasks/ciphering.rake
+%%WWWDIR%%/lib/tasks/deprecated.rake
+%%WWWDIR%%/lib/tasks/email.rake
+%%WWWDIR%%/lib/tasks/extract_fixtures.rake
+%%WWWDIR%%/lib/tasks/initializers.rake
+%%WWWDIR%%/lib/tasks/load_default_data.rake
+%%WWWDIR%%/lib/tasks/locales.rake
+%%WWWDIR%%/lib/tasks/metrics.rake
+%%WWWDIR%%/lib/tasks/migrate_from_mantis.rake
+%%WWWDIR%%/lib/tasks/migrate_from_trac.rake
+%%WWWDIR%%/lib/tasks/permissions.rake
+%%WWWDIR%%/lib/tasks/redmine.rake
+%%WWWDIR%%/lib/tasks/reminder.rake
+%%WWWDIR%%/lib/tasks/testing.rake
+%%WWWDIR%%/lib/tasks/yardoc.rake
+%%WWWDIR%%/plugins/README
+%%WWWDIR%%/public/404.html
+%%WWWDIR%%/public/500.html
+%%WWWDIR%%/public/dispatch.fcgi.example
+%%WWWDIR%%/public/favicon.ico
+%%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/code_highlighting_languages.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_common_mark.html
+%%WWWDIR%%/public/help/de/wiki_syntax_detailed_common_mark.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_common_mark.html
+%%WWWDIR%%/public/help/en/wiki_syntax_detailed_common_mark.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/wiki_syntax.css
+%%WWWDIR%%/public/help/wiki_syntax_detailed.css
+%%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/3_bullets.png
+%%WWWDIR%%/public/images/add.png
+%%WWWDIR%%/public/images/anonymous.png
+%%WWWDIR%%/public/images/arrow_down.png
+%%WWWDIR%%/public/images/arrow_left.png
+%%WWWDIR%%/public/images/arrow_right.png
+%%WWWDIR%%/public/images/arrow_up.png
+%%WWWDIR%%/public/images/attachment.png
+%%WWWDIR%%/public/images/bullet_add.png
+%%WWWDIR%%/public/images/bullet_black.png
+%%WWWDIR%%/public/images/bullet_blue.png
+%%WWWDIR%%/public/images/bullet_delete.png
+%%WWWDIR%%/public/images/bullet_diamond.png
+%%WWWDIR%%/public/images/bullet_end.png
+%%WWWDIR%%/public/images/bullet_go.png
+%%WWWDIR%%/public/images/bullet_orange.png
+%%WWWDIR%%/public/images/bullet_purple.png
+%%WWWDIR%%/public/images/bullet_toggle_minus.png
+%%WWWDIR%%/public/images/bullet_toggle_plus.png
+%%WWWDIR%%/public/images/calendar.png
+%%WWWDIR%%/public/images/cancel.png
+%%WWWDIR%%/public/images/changeset.png
+%%WWWDIR%%/public/images/close.png
+%%WWWDIR%%/public/images/close_hl.png
+%%WWWDIR%%/public/images/comment.png
+%%WWWDIR%%/public/images/comments.png
+%%WWWDIR%%/public/images/copy.png
+%%WWWDIR%%/public/images/copy_link.png
+%%WWWDIR%%/public/images/database_go.png
+%%WWWDIR%%/public/images/database_key.png
+%%WWWDIR%%/public/images/delete.png
+%%WWWDIR%%/public/images/document.png
+%%WWWDIR%%/public/images/download.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
+%%WWWDIR%%/public/images/fav.png
+%%WWWDIR%%/public/images/fav_off.png
+%%WWWDIR%%/public/images/feed.png
+%%WWWDIR%%/public/images/files/c.png
+%%WWWDIR%%/public/images/files/csharp.png
+%%WWWDIR%%/public/images/files/css.png
+%%WWWDIR%%/public/images/files/default.png
+%%WWWDIR%%/public/images/files/html.png
+%%WWWDIR%%/public/images/files/image.png
+%%WWWDIR%%/public/images/files/java.png
+%%WWWDIR%%/public/images/files/js.png
+%%WWWDIR%%/public/images/files/pdf.png
+%%WWWDIR%%/public/images/files/php.png
+%%WWWDIR%%/public/images/files/ruby.png
+%%WWWDIR%%/public/images/files/text.png
+%%WWWDIR%%/public/images/files/xml.png
+%%WWWDIR%%/public/images/files/zip.png
+%%WWWDIR%%/public/images/folder.png
+%%WWWDIR%%/public/images/folder_open.png
+%%WWWDIR%%/public/images/folder_open_add.png
+%%WWWDIR%%/public/images/folder_open_orange.png
+%%WWWDIR%%/public/images/group.png
+%%WWWDIR%%/public/images/help.png
+%%WWWDIR%%/public/images/history.png
+%%WWWDIR%%/public/images/hourglass.png
+%%WWWDIR%%/public/images/jstoolbar/bt_bq.png
+%%WWWDIR%%/public/images/jstoolbar/bt_bq_remove.png
+%%WWWDIR%%/public/images/jstoolbar/bt_code.png
+%%WWWDIR%%/public/images/jstoolbar/bt_del.png
+%%WWWDIR%%/public/images/jstoolbar/bt_em.png
+%%WWWDIR%%/public/images/jstoolbar/bt_h1.png
+%%WWWDIR%%/public/images/jstoolbar/bt_h2.png
+%%WWWDIR%%/public/images/jstoolbar/bt_h3.png
+%%WWWDIR%%/public/images/jstoolbar/bt_img.png
+%%WWWDIR%%/public/images/jstoolbar/bt_ins.png
+%%WWWDIR%%/public/images/jstoolbar/bt_link.png
+%%WWWDIR%%/public/images/jstoolbar/bt_ol.png
+%%WWWDIR%%/public/images/jstoolbar/bt_pre.png
+%%WWWDIR%%/public/images/jstoolbar/bt_precode.png
+%%WWWDIR%%/public/images/jstoolbar/bt_strong.png
+%%WWWDIR%%/public/images/jstoolbar/bt_table.png
+%%WWWDIR%%/public/images/jstoolbar/bt_tl.png
+%%WWWDIR%%/public/images/jstoolbar/bt_ul.png
+%%WWWDIR%%/public/images/lightning.png
+%%WWWDIR%%/public/images/link.png
+%%WWWDIR%%/public/images/link_break.png
+%%WWWDIR%%/public/images/loading.gif
+%%WWWDIR%%/public/images/locked.png
+%%WWWDIR%%/public/images/magnifier.png
+%%WWWDIR%%/public/images/message.png
+%%WWWDIR%%/public/images/milestone_done.png
+%%WWWDIR%%/public/images/milestone_late.png
+%%WWWDIR%%/public/images/milestone_todo.png
+%%WWWDIR%%/public/images/move.png
+%%WWWDIR%%/public/images/news.png
+%%WWWDIR%%/public/images/package.png
+%%WWWDIR%%/public/images/plugin.png
+%%WWWDIR%%/public/images/project_marker.png
+%%WWWDIR%%/public/images/projects.png
+%%WWWDIR%%/public/images/reload.png
+%%WWWDIR%%/public/images/reorder.png
+%%WWWDIR%%/public/images/report.png
+%%WWWDIR%%/public/images/save.png
+%%WWWDIR%%/public/images/server_key.png
+%%WWWDIR%%/public/images/sort_asc.png
+%%WWWDIR%%/public/images/sort_desc.png
+%%WWWDIR%%/public/images/stats.png
+%%WWWDIR%%/public/images/table_multiple.png
+%%WWWDIR%%/public/images/tag_blue.png
+%%WWWDIR%%/public/images/tag_blue_add.png
+%%WWWDIR%%/public/images/tag_blue_delete.png
+%%WWWDIR%%/public/images/task_done.png
+%%WWWDIR%%/public/images/task_late.png
+%%WWWDIR%%/public/images/task_parent_end.png
+%%WWWDIR%%/public/images/task_todo.png
+%%WWWDIR%%/public/images/text_list_bullets.png
+%%WWWDIR%%/public/images/textfield.png
+%%WWWDIR%%/public/images/textfield_key.png
+%%WWWDIR%%/public/images/ticket.png
+%%WWWDIR%%/public/images/ticket_checked.png
+%%WWWDIR%%/public/images/ticket_edit.png
+%%WWWDIR%%/public/images/ticket_go.png
+%%WWWDIR%%/public/images/ticket_note.png
+%%WWWDIR%%/public/images/time.png
+%%WWWDIR%%/public/images/time_add.png
+%%WWWDIR%%/public/images/toggle_check.png
+%%WWWDIR%%/public/images/transparent.png
+%%WWWDIR%%/public/images/true.png
+%%WWWDIR%%/public/images/unlock.png
+%%WWWDIR%%/public/images/user.png
+%%WWWDIR%%/public/images/version_marker.png
+%%WWWDIR%%/public/images/warning.png
+%%WWWDIR%%/public/images/wiki_edit.png
+%%WWWDIR%%/public/images/zoom_in.png
+%%WWWDIR%%/public/images/zoom_out.png
+%%WWWDIR%%/public/javascripts/application.js
+%%WWWDIR%%/public/javascripts/attachments.js
+%%WWWDIR%%/public/javascripts/chart.min.js
+%%WWWDIR%%/public/javascripts/context_menu.js
+%%WWWDIR%%/public/javascripts/gantt.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-ar.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-az.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-bg.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-bs.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-ca.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-cs.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-da.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-de.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-el.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-en-GB.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-es.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-et.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-eu.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-fa.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-fi.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-fr.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-gl.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-he.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-hr.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-hu.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-id.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-it.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-ja.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-ko.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-lt.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-lv.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-mk.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-nl.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-no.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-pl.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-pt-BR.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-pt.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-ro.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-ru.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-sk.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-sl.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-sq.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-sr.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-sv.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-th.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-tr.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-uk.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-vi.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-zh-CN.js
+%%WWWDIR%%/public/javascripts/i18n/datepicker-zh-TW.js
+%%WWWDIR%%/public/javascripts/jquery-3.6.1-ui-1.13.2-ujs-6.1.7.js
+%%WWWDIR%%/public/javascripts/jstoolbar/common_mark.js
+%%WWWDIR%%/public/javascripts/jstoolbar/jstoolbar.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-ar.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-az.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-bg.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-bs.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-ca.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-cs.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-da.js
+%%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
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-fa.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-fi.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-fr.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-gl.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-he.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-hr.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-hu.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-id.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-it.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-ja.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-ko.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-lt.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-lv.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-mk.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-mn.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-nl.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-no.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-pl.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-pt-br.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-pt.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-ro.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-ru.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-sk.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-sl.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-sq.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-sr-yu.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-sr.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-sv.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-th.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-tr.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-uk.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-vi.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-zh-tw.js
+%%WWWDIR%%/public/javascripts/jstoolbar/lang/jstoolbar-zh.js
+%%WWWDIR%%/public/javascripts/jstoolbar/markdown.js
+%%WWWDIR%%/public/javascripts/jstoolbar/textile.js
+%%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/tablesort-5.2.1.min.js
+%%WWWDIR%%/public/javascripts/tablesort-5.2.1.number.min.js
+%%WWWDIR%%/public/javascripts/tribute-5.1.3.min.js
+%%WWWDIR%%/public/javascripts/tribute.min.js.map
+%%WWWDIR%%/public/plugin_assets/empty
+%%WWWDIR%%/public/stylesheets/application.css
+%%WWWDIR%%/public/stylesheets/context_menu.css
+%%WWWDIR%%/public/stylesheets/context_menu_rtl.css
+%%WWWDIR%%/public/stylesheets/jquery/images/ui-icons_444444_256x240.png
+%%WWWDIR%%/public/stylesheets/jquery/images/ui-icons_555555_256x240.png
+%%WWWDIR%%/public/stylesheets/jquery/images/ui-icons_777620_256x240.png
+%%WWWDIR%%/public/stylesheets/jquery/images/ui-icons_777777_256x240.png
+%%WWWDIR%%/public/stylesheets/jquery/images/ui-icons_cc0000_256x240.png
+%%WWWDIR%%/public/stylesheets/jquery/images/ui-icons_ffffff_256x240.png
+%%WWWDIR%%/public/stylesheets/jquery/jquery-ui-1.13.2.css
+%%WWWDIR%%/public/stylesheets/jstoolbar.css
+%%WWWDIR%%/public/stylesheets/responsive.css
+%%WWWDIR%%/public/stylesheets/rtl.css
+%%WWWDIR%%/public/stylesheets/scm.css
+%%WWWDIR%%/public/stylesheets/tribute-5.1.3.css
+%%WWWDIR%%/public/themes/README
+%%WWWDIR%%/public/themes/alternate/stylesheets/application.css
+%%WWWDIR%%/public/themes/classic/images/home.png
+%%WWWDIR%%/public/themes/classic/images/wrench.png
+%%WWWDIR%%/public/themes/classic/stylesheets/application.css
+%%WWWDIR%%/test/application_system_test_case.rb
+%%WWWDIR%%/test/controllers/empty
+%%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
+%%WWWDIR%%/test/fixtures/boards.yml
+%%WWWDIR%%/test/fixtures/changes.yml
+%%WWWDIR%%/test/fixtures/changesets.yml
+%%WWWDIR%%/test/fixtures/comments.yml
+%%WWWDIR%%/test/fixtures/custom_fields.yml
+%%WWWDIR%%/test/fixtures/custom_fields_projects.yml
+%%WWWDIR%%/test/fixtures/custom_fields_trackers.yml
+%%WWWDIR%%/test/fixtures/custom_values.yml
+%%WWWDIR%%/test/fixtures/diffs/issue-12641-ja.diff
+%%WWWDIR%%/test/fixtures/diffs/issue-12641-ru.diff
+%%WWWDIR%%/test/fixtures/diffs/issue-13644-1.diff
+%%WWWDIR%%/test/fixtures/diffs/issue-13644-2.diff
+%%WWWDIR%%/test/fixtures/diffs/issue-13644-3.diff
+%%WWWDIR%%/test/fixtures/diffs/issue-13644-4.diff
+%%WWWDIR%%/test/fixtures/diffs/issue-13644-5.diff
+%%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
+%%WWWDIR%%/test/fixtures/files/2006/07/060719210727_archive.zip
+%%WWWDIR%%/test/fixtures/files/2006/07/060719210727_changeset_iso8859-1.diff
+%%WWWDIR%%/test/fixtures/files/2006/07/060719210727_changeset_utf8.diff
+%%WWWDIR%%/test/fixtures/files/2006/07/060719210727_source.rb
+%%WWWDIR%%/test/fixtures/files/2010/11/101123161450_testfile_1.png
+%%WWWDIR%%/test/fixtures/files/2010/12/101223161450_testfile_2.png
+%%WWWDIR%%/test/fixtures/files/2019/04/190430092344_redmine_logo.ai.unknown
+%%WWWDIR%%/test/fixtures/files/2019/05/190511141819_ecookbook-gantt.pdf
+%%WWWDIR%%/test/fixtures/files/configuration/default.yml
+%%WWWDIR%%/test/fixtures/files/configuration/empty.yml
+%%WWWDIR%%/test/fixtures/files/configuration/no_default.yml
+%%WWWDIR%%/test/fixtures/files/configuration/overrides.yml
+%%WWWDIR%%/test/fixtures/files/hello.js
+%%WWWDIR%%/test/fixtures/files/hg-export.diff
+%%WWWDIR%%/test/fixtures/files/import_dates.csv
+%%WWWDIR%%/test/fixtures/files/import_dates_ja.csv
+%%WWWDIR%%/test/fixtures/files/import_iso8859-1.csv
+%%WWWDIR%%/test/fixtures/files/import_issues.csv
+%%WWWDIR%%/test/fixtures/files/import_issues_auto_mapping.csv
+%%WWWDIR%%/test/fixtures/files/import_issues_no_data_row.csv
+%%WWWDIR%%/test/fixtures/files/import_issues_utf8_with_bom.csv
+%%WWWDIR%%/test/fixtures/files/import_issues_with_relation_and_invalid_issues.csv
+%%WWWDIR%%/test/fixtures/files/import_subtasks.csv
+%%WWWDIR%%/test/fixtures/files/import_subtasks_with_relations.csv
+%%WWWDIR%%/test/fixtures/files/import_subtasks_with_unique_id.csv
+%%WWWDIR%%/test/fixtures/files/import_time_entries.csv
+%%WWWDIR%%/test/fixtures/files/import_users.csv
+%%WWWDIR%%/test/fixtures/files/invalid-Shift_JIS.csv
+%%WWWDIR%%/test/fixtures/files/iso8859-1.txt
+%%WWWDIR%%/test/fixtures/files/japanese-utf-8.txt
+%%WWWDIR%%/test/fixtures/files/testfile.md
+%%WWWDIR%%/test/fixtures/files/testfile.textile
+%%WWWDIR%%/test/fixtures/files/testfile.txt
+%%WWWDIR%%/test/fixtures/files/unclosed_quoted_field.csv
+%%WWWDIR%%/test/fixtures/groups_users.yml
+%%WWWDIR%%/test/fixtures/issue_categories.yml
+%%WWWDIR%%/test/fixtures/issue_relations.yml
+%%WWWDIR%%/test/fixtures/issue_statuses.yml
+%%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
+%%WWWDIR%%/test/fixtures/mail_handler/different_contents_in_text_and_html.eml
+%%WWWDIR%%/test/fixtures/mail_handler/empty_text_and_html_part.eml
+%%WWWDIR%%/test/fixtures/mail_handler/empty_text_part.eml
+%%WWWDIR%%/test/fixtures/mail_handler/fullname_of_sender_as_utf8_encoded.eml
+%%WWWDIR%%/test/fixtures/mail_handler/fullname_of_sender_in_parentheses.eml
+%%WWWDIR%%/test/fixtures/mail_handler/gmail-iso8859-2.eml
+%%WWWDIR%%/test/fixtures/mail_handler/gmail_with_attachment_iso-8859-1.eml
+%%WWWDIR%%/test/fixtures/mail_handler/gmail_with_attachment_ja.eml
+%%WWWDIR%%/test/fixtures/mail_handler/invalid_utf8.eml
+%%WWWDIR%%/test/fixtures/mail_handler/issue_update_with_cc.eml
+%%WWWDIR%%/test/fixtures/mail_handler/issue_update_with_multiple_quoted_reply_above.eml
+%%WWWDIR%%/test/fixtures/mail_handler/issue_update_with_quoted_reply_above.eml
+%%WWWDIR%%/test/fixtures/mail_handler/japanese_keywords_iso_2022_jp.eml
+%%WWWDIR%%/test/fixtures/mail_handler/message_reply.eml
+%%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/smime_signature.eml
+%%WWWDIR%%/test/fixtures/mail_handler/subject_as_iso-8859-1.eml
+%%WWWDIR%%/test/fixtures/mail_handler/subject_japanese_1.eml
+%%WWWDIR%%/test/fixtures/mail_handler/subject_japanese_2.eml
+%%WWWDIR%%/test/fixtures/mail_handler/subject_japanese_3.eml
+%%WWWDIR%%/test/fixtures/mail_handler/thunderbird_with_attachment_iso-8859-1.eml
+%%WWWDIR%%/test/fixtures/mail_handler/thunderbird_with_attachment_ja.eml
+%%WWWDIR%%/test/fixtures/mail_handler/ticket_by_empty_user.eml
+%%WWWDIR%%/test/fixtures/mail_handler/ticket_by_unknown_user.eml
+%%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_from_mail.eml
+%%WWWDIR%%/test/fixtures/mail_handler/ticket_reply_with_status.eml
+%%WWWDIR%%/test/fixtures/mail_handler/ticket_with_attachment.eml
+%%WWWDIR%%/test/fixtures/mail_handler/ticket_with_attributes.eml
+%%WWWDIR%%/test/fixtures/mail_handler/ticket_with_cc.eml
+%%WWWDIR%%/test/fixtures/mail_handler/ticket_with_custom_fields.eml
+%%WWWDIR%%/test/fixtures/mail_handler/ticket_with_duplicate_keyword.eml
+%%WWWDIR%%/test/fixtures/mail_handler/ticket_with_empty_attachment.eml
+%%WWWDIR%%/test/fixtures/mail_handler/ticket_with_invalid_attributes.eml
+%%WWWDIR%%/test/fixtures/mail_handler/ticket_with_keyword_after_delimiter.eml
+%%WWWDIR%%/test/fixtures/mail_handler/ticket_with_localized_attributes.eml
+%%WWWDIR%%/test/fixtures/mail_handler/ticket_with_localized_private_flag.eml
+%%WWWDIR%%/test/fixtures/mail_handler/ticket_with_long_subject.eml
+%%WWWDIR%%/test/fixtures/mail_handler/ticket_with_spaces_between_attribute_and_separator.eml
+%%WWWDIR%%/test/fixtures/mail_handler/ticket_with_text_attachment_iso-8859-2.eml
+%%WWWDIR%%/test/fixtures/mail_handler/ticket_without_from_header.eml
+%%WWWDIR%%/test/fixtures/member_roles.yml
+%%WWWDIR%%/test/fixtures/members.yml
+%%WWWDIR%%/test/fixtures/messages.yml
+%%WWWDIR%%/test/fixtures/news.yml
+%%WWWDIR%%/test/fixtures/plugins/foo_plugin/_foo_plugin_settings.html.erb
+%%WWWDIR%%/test/fixtures/plugins/foo_plugin/assets/stylesheets/foo.css
+%%WWWDIR%%/test/fixtures/plugins/other_plugin/_other_plugin_settings.html.erb
+%%WWWDIR%%/test/fixtures/projects.yml
+%%WWWDIR%%/test/fixtures/projects_trackers.yml
+%%WWWDIR%%/test/fixtures/queries.yml
+%%WWWDIR%%/test/fixtures/repositories.yml
+%%WWWDIR%%/test/fixtures/repositories/bazaar_repository.tar.gz
+%%WWWDIR%%/test/fixtures/repositories/cvs_repository.tar.gz
+%%WWWDIR%%/test/fixtures/repositories/filesystem_repository.tar.gz
+%%WWWDIR%%/test/fixtures/repositories/git_repository.tar.gz
+%%WWWDIR%%/test/fixtures/repositories/git_utf8_repository.tar.gz
+%%WWWDIR%%/test/fixtures/repositories/mercurial_repository.hg
+%%WWWDIR%%/test/fixtures/repositories/subversion_repository.dump.gz
+%%WWWDIR%%/test/fixtures/roles.yml
+%%WWWDIR%%/test/fixtures/time_entries.yml
+%%WWWDIR%%/test/fixtures/tokens.yml
+%%WWWDIR%%/test/fixtures/trackers.yml
+%%WWWDIR%%/test/fixtures/user_preferences.yml
+%%WWWDIR%%/test/fixtures/users.yml
+%%WWWDIR%%/test/fixtures/versions.yml
+%%WWWDIR%%/test/fixtures/views/_partial.html.erb
+%%WWWDIR%%/test/fixtures/watchers.yml
+%%WWWDIR%%/test/fixtures/wiki_content_versions.yml
+%%WWWDIR%%/test/fixtures/wiki_contents.yml
+%%WWWDIR%%/test/fixtures/wiki_pages.yml
+%%WWWDIR%%/test/fixtures/wikis.yml
+%%WWWDIR%%/test/fixtures/workflows.yml
+%%WWWDIR%%/test/functional/account_controller_test.rb
+%%WWWDIR%%/test/functional/activities_controller_test.rb
+%%WWWDIR%%/test/functional/admin_controller_test.rb
+%%WWWDIR%%/test/functional/application_controller_test.rb
+%%WWWDIR%%/test/functional/attachments_controller_test.rb
+%%WWWDIR%%/test/functional/attachments_visibility_test.rb
+%%WWWDIR%%/test/functional/auth_sources_controller_test.rb
+%%WWWDIR%%/test/functional/auto_completes_controller_test.rb
+%%WWWDIR%%/test/functional/boards_controller_test.rb
+%%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
+%%WWWDIR%%/test/functional/issues_controller_test.rb
+%%WWWDIR%%/test/functional/issues_controller_transaction_test.rb
+%%WWWDIR%%/test/functional/issues_custom_fields_visibility_test.rb
+%%WWWDIR%%/test/functional/journals_controller_test.rb
+%%WWWDIR%%/test/functional/mail_handler_controller_test.rb
+%%WWWDIR%%/test/functional/members_controller_test.rb
+%%WWWDIR%%/test/functional/messages_controller_test.rb
+%%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
+%%WWWDIR%%/test/functional/reports_controller_test.rb
+%%WWWDIR%%/test/functional/repositories_bazaar_controller_test.rb
+%%WWWDIR%%/test/functional/repositories_controller_test.rb
+%%WWWDIR%%/test/functional/repositories_cvs_controller_test.rb
+%%WWWDIR%%/test/functional/repositories_filesystem_controller_test.rb
+%%WWWDIR%%/test/functional/repositories_git_controller_test.rb
+%%WWWDIR%%/test/functional/repositories_mercurial_controller_test.rb
+%%WWWDIR%%/test/functional/repositories_subversion_controller_test.rb
+%%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_controller_test.rb
+%%WWWDIR%%/test/functional/settings_controller_test.rb
+%%WWWDIR%%/test/functional/sys_controller_test.rb
+%%WWWDIR%%/test/functional/timelog_controller_test.rb
+%%WWWDIR%%/test/functional/timelog_custom_fields_visibility_test.rb
+%%WWWDIR%%/test/functional/timelog_report_test.rb
+%%WWWDIR%%/test/functional/trackers_controller_test.rb
+%%WWWDIR%%/test/functional/users_controller_test.rb
+%%WWWDIR%%/test/functional/versions_controller_test.rb
+%%WWWDIR%%/test/functional/versions_custom_fields_visibility_test.rb
+%%WWWDIR%%/test/functional/watchers_controller_test.rb
+%%WWWDIR%%/test/functional/welcome_controller_test.rb
+%%WWWDIR%%/test/functional/wiki_controller_test.rb
+%%WWWDIR%%/test/functional/wikis_controller_test.rb
+%%WWWDIR%%/test/functional/workflows_controller_test.rb
+%%WWWDIR%%/test/helpers/activities_helper_test.rb
+%%WWWDIR%%/test/helpers/application_helper_test.rb
+%%WWWDIR%%/test/helpers/avatars_helper_test.rb
+%%WWWDIR%%/test/helpers/custom_fields_helper_test.rb
+%%WWWDIR%%/test/helpers/groups_helper_test.rb
+%%WWWDIR%%/test/helpers/issues_helper_test.rb
+%%WWWDIR%%/test/helpers/journals_helper_test.rb
+%%WWWDIR%%/test/helpers/members_helper_test.rb
+%%WWWDIR%%/test/helpers/projects_helper_test.rb
+%%WWWDIR%%/test/helpers/projects_queries_helper_test.rb
+%%WWWDIR%%/test/helpers/queries_helper_test.rb
+%%WWWDIR%%/test/helpers/reports_helper_test.rb
+%%WWWDIR%%/test/helpers/routes_helper_test.rb
+%%WWWDIR%%/test/helpers/search_helper_test.rb
+%%WWWDIR%%/test/helpers/settings_helper_test.rb
+%%WWWDIR%%/test/helpers/sort_helper_test.rb
+%%WWWDIR%%/test/helpers/timelog_helper_test.rb
+%%WWWDIR%%/test/helpers/version_helper_test.rb
+%%WWWDIR%%/test/helpers/watchers_helper_test.rb
+%%WWWDIR%%/test/helpers/wiki_helper_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
+%%WWWDIR%%/test/integration/api_test/custom_fields_attribute_test.rb
+%%WWWDIR%%/test/integration/api_test/custom_fields_test.rb
+%%WWWDIR%%/test/integration/api_test/disabled_rest_api_test.rb
+%%WWWDIR%%/test/integration/api_test/enumerations_test.rb
+%%WWWDIR%%/test/integration/api_test/files_test.rb
+%%WWWDIR%%/test/integration/api_test/groups_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
+%%WWWDIR%%/test/integration/api_test/issues_test.rb
+%%WWWDIR%%/test/integration/api_test/journals_test.rb
+%%WWWDIR%%/test/integration/api_test/jsonp_test.rb
+%%WWWDIR%%/test/integration/api_test/memberships_test.rb
+%%WWWDIR%%/test/integration/api_test/my_test.rb
+%%WWWDIR%%/test/integration/api_test/news_test.rb
+%%WWWDIR%%/test/integration/api_test/projects_test.rb
+%%WWWDIR%%/test/integration/api_test/queries_test.rb
+%%WWWDIR%%/test/integration/api_test/repositories_test.rb
+%%WWWDIR%%/test/integration/api_test/roles_test.rb
+%%WWWDIR%%/test/integration/api_test/search_test.rb
+%%WWWDIR%%/test/integration/api_test/time_entries_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
+%%WWWDIR%%/test/integration/api_test/wiki_pages_test.rb
+%%WWWDIR%%/test/integration/application_test.rb
+%%WWWDIR%%/test/integration/attachments_test.rb
+%%WWWDIR%%/test/integration/feeds_test.rb
+%%WWWDIR%%/test/integration/issues_test.rb
+%%WWWDIR%%/test/integration/layout_test.rb
+%%WWWDIR%%/test/integration/lib/redmine/field_format/attachment_format_test.rb
+%%WWWDIR%%/test/integration/lib/redmine/hook_test.rb
+%%WWWDIR%%/test/integration/lib/redmine/menu_manager_test.rb
+%%WWWDIR%%/test/integration/lib/redmine/themes_test.rb
+%%WWWDIR%%/test/integration/projects_test.rb
+%%WWWDIR%%/test/integration/repositories_git_test.rb
+%%WWWDIR%%/test/integration/routing/account_test.rb
+%%WWWDIR%%/test/integration/routing/activities_test.rb
+%%WWWDIR%%/test/integration/routing/admin_test.rb
+%%WWWDIR%%/test/integration/routing/attachments_test.rb
+%%WWWDIR%%/test/integration/routing/auth_sources_test.rb
+%%WWWDIR%%/test/integration/routing/auto_completes_test.rb
+%%WWWDIR%%/test/integration/routing/boards_test.rb
+%%WWWDIR%%/test/integration/routing/calendars_test.rb
+%%WWWDIR%%/test/integration/routing/comments_test.rb
+%%WWWDIR%%/test/integration/routing/context_menus_test.rb
+%%WWWDIR%%/test/integration/routing/custom_fields_test.rb
+%%WWWDIR%%/test/integration/routing/documents_test.rb
+%%WWWDIR%%/test/integration/routing/enumerations_test.rb
+%%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
+%%WWWDIR%%/test/integration/routing/issues_test.rb
+%%WWWDIR%%/test/integration/routing/journals_test.rb
+%%WWWDIR%%/test/integration/routing/mail_handler_test.rb
+%%WWWDIR%%/test/integration/routing/members_test.rb
+%%WWWDIR%%/test/integration/routing/messages_test.rb
+%%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
+%%WWWDIR%%/test/integration/routing/reports_test.rb
+%%WWWDIR%%/test/integration/routing/repositories_test.rb
+%%WWWDIR%%/test/integration/routing/roles_test.rb
+%%WWWDIR%%/test/integration/routing/search_test.rb
+%%WWWDIR%%/test/integration/routing/settings_test.rb
+%%WWWDIR%%/test/integration/routing/sys_test.rb
+%%WWWDIR%%/test/integration/routing/timelog_test.rb
+%%WWWDIR%%/test/integration/routing/trackers_test.rb
+%%WWWDIR%%/test/integration/routing/users_test.rb
+%%WWWDIR%%/test/integration/routing/versions_test.rb
+%%WWWDIR%%/test/integration/routing/watchers_test.rb
+%%WWWDIR%%/test/integration/routing/welcome_test.rb
+%%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/twofa_test.rb
+%%WWWDIR%%/test/integration/users_test.rb
+%%WWWDIR%%/test/integration/welcome_test.rb
+%%WWWDIR%%/test/integration/wiki_test.rb
+%%WWWDIR%%/test/mailers/empty
+%%WWWDIR%%/test/models/empty
+%%WWWDIR%%/test/object_helpers.rb
+%%WWWDIR%%/test/system/copy_to_clipboard_test.rb
+%%WWWDIR%%/test/system/custom_field_enumerations_test.rb
+%%WWWDIR%%/test/system/inline_autocomplete_test.rb
+%%WWWDIR%%/test/system/issues_import_test.rb
+%%WWWDIR%%/test/system/issues_test.rb
+%%WWWDIR%%/test/system/keyboard_shortcuts_test.rb
+%%WWWDIR%%/test/system/my_page_test.rb
+%%WWWDIR%%/test/system/quick_jump_test.rb
+%%WWWDIR%%/test/system/sudo_mode_test.rb
+%%WWWDIR%%/test/system/timelog_test.rb
+%%WWWDIR%%/test/test_helper.rb
+%%WWWDIR%%/test/unit/activity_test.rb
+%%WWWDIR%%/test/unit/attachment_test.rb
+%%WWWDIR%%/test/unit/attachment_transaction_test.rb
+%%WWWDIR%%/test/unit/auth_source_ldap_test.rb
+%%WWWDIR%%/test/unit/board_test.rb
+%%WWWDIR%%/test/unit/changeset_test.rb
+%%WWWDIR%%/test/unit/comment_test.rb
+%%WWWDIR%%/test/unit/custom_field_test.rb
+%%WWWDIR%%/test/unit/custom_field_user_format_test.rb
+%%WWWDIR%%/test/unit/custom_field_version_format_test.rb
+%%WWWDIR%%/test/unit/custom_value_test.rb
+%%WWWDIR%%/test/unit/default_data_test.rb
+%%WWWDIR%%/test/unit/document_category_test.rb
+%%WWWDIR%%/test/unit/document_test.rb
+%%WWWDIR%%/test/unit/email_address_test.rb
+%%WWWDIR%%/test/unit/enabled_module_test.rb
+%%WWWDIR%%/test/unit/enumeration_test.rb
+%%WWWDIR%%/test/unit/group_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
+%%WWWDIR%%/test/unit/journal_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/access_control_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/acts/mentionable_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/acts/positioned_with_scope_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/acts/positioned_without_scope_test.rb
+%%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/issues_pdf_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/export/pdf_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/field_format/attachment_format_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/field_format/attachment_format_visibility_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
+%%WWWDIR%%/test/unit/lib/redmine/field_format/numeric_format_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/field_format/user_field_format_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/field_format/version_field_format_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/helpers/calendar_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/helpers/diff_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/helpers/gantt_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/helpers/url_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/hook_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/i18n_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/info_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/menu_manager/mapper_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/menu_manager/menu_helper_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/menu_manager/menu_item_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/menu_manager_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/mime_type_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/notifiable_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/pagination_helper_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/pagination_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/plugin_loader_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/plugin_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/project_jump_box_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/safe_attributes_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/scm/adapters/bazaar_adapter_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/scm/adapters/cvs_adapter_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/scm/adapters/filesystem_adapter_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/scm/adapters/git_adapter_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/scm/adapters/mercurial_adapter_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/scm/adapters/subversion_adapter_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/search_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/syntax_highlighting/rouge_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/themes_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/unified_diff_test.rb
+%%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/common_mark/application_helper_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/wiki_formatting/common_mark/external_links_filter_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/wiki_formatting/common_mark/fixup_auto_links_filter_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/wiki_formatting/common_mark/formatter_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/wiki_formatting/common_mark/markdown_filter_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/wiki_formatting/common_mark/sanitization_filter_test.rb
+%%WWWDIR%%/test/unit/lib/redmine/wiki_formatting/common_mark/syntax_highlight_filter_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_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
+%%WWWDIR%%/test/unit/mailer_localisation_test.rb
+%%WWWDIR%%/test/unit/mailer_test.rb
+%%WWWDIR%%/test/unit/member_test.rb
+%%WWWDIR%%/test/unit/message_test.rb
+%%WWWDIR%%/test/unit/news_test.rb
+%%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_query_test.rb
+%%WWWDIR%%/test/unit/project_test.rb
+%%WWWDIR%%/test/unit/query_test.rb
+%%WWWDIR%%/test/unit/repository_bazaar_test.rb
+%%WWWDIR%%/test/unit/repository_cvs_test.rb
+%%WWWDIR%%/test/unit/repository_filesystem_test.rb
+%%WWWDIR%%/test/unit/repository_git_test.rb
+%%WWWDIR%%/test/unit/repository_mercurial_test.rb
+%%WWWDIR%%/test/unit/repository_subversion_test.rb
+%%WWWDIR%%/test/unit/repository_test.rb
+%%WWWDIR%%/test/unit/role_test.rb
+%%WWWDIR%%/test/unit/search_test.rb
+%%WWWDIR%%/test/unit/setting_test.rb
+%%WWWDIR%%/test/unit/time_entry_activity_test.rb
+%%WWWDIR%%/test/unit/time_entry_custom_field_test.rb
+%%WWWDIR%%/test/unit/time_entry_import_test.rb
+%%WWWDIR%%/test/unit/time_entry_query_test.rb
+%%WWWDIR%%/test/unit/time_entry_test.rb
+%%WWWDIR%%/test/unit/token_test.rb
+%%WWWDIR%%/test/unit/tracker_test.rb
+%%WWWDIR%%/test/unit/user_import_test.rb
+%%WWWDIR%%/test/unit/user_preference_test.rb
+%%WWWDIR%%/test/unit/user_test.rb
+%%WWWDIR%%/test/unit/version_test.rb
+%%WWWDIR%%/test/unit/watcher_test.rb
+%%WWWDIR%%/test/unit/wiki_content_test.rb
+%%WWWDIR%%/test/unit/wiki_content_version_test.rb
+%%WWWDIR%%/test/unit/wiki_page_test.rb
+%%WWWDIR%%/test/unit/wiki_redirect_test.rb
+%%WWWDIR%%/test/unit/wiki_test.rb
+%%WWWDIR%%/test/unit/workflow_test.rb
+%%WWWDIR%%/test/unit/workflow_transition_test.rb
+@dir %%WWWDIR%%/test/fixtures/files/2016/12
+@dir %%WWWDIR%%/test/fixtures/mailer
+@dir %%WWWDIR%%/test/mocks/development
+@dir %%WWWDIR%%/test/mocks/test
+@dir %%WWWDIR%%/vendor
+@dir %%WWWDIR%%/app/views/previews
+@(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/test/empty
+@(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/thumbnails/empty
+@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/cache
+@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/imports
+@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/sessions
+@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/sockets
+@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/files
+@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/log
+@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp
+@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/test
+@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/thumbnails
+@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/public/plugin_assets