Index: head/www/redmine/Makefile =================================================================== --- head/www/redmine/Makefile (revision 450392) +++ head/www/redmine/Makefile (revision 450393) @@ -1,104 +1,116 @@ # Created by: Bernhard Froehlich # $FreeBSD$ PORTNAME= redmine -PORTVERSION= 3.2.3 -PORTREVISION= 7 +PORTVERSION= 3.2.7 CATEGORIES= www MASTER_SITES= http://www.redmine.org/releases/ MAINTAINER= ruby@FreeBSD.org COMMENT= Flexible project management web application LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/doc/COPYING RUN_DEPENDS= rubygem-bundler>=1.5.0:sysutils/rubygem-bundler \ - rubygem-rails4>=4.2.5:www/rubygem-rails4 \ - rubygem-jquery-rails>=3.1.4:www/rubygem-jquery-rails \ + rubygem-rails4>=4.2.7.1:www/rubygem-rails4 \ + rubygem-jquery-rails>=4.3.0:www/rubygem-jquery-rails \ rubygem-coderay>=1.1.0:textproc/rubygem-coderay \ rubygem-builder>=3.0.4:devel/rubygem-builder \ rubygem-request_store>=1.0.5:devel/rubygem-request_store \ rubygem-mime-types>=0:misc/rubygem-mime-types \ - rubygem-mimemagic>=0:misc/rubygem-mimemagic \ rubygem-protected_attributes>=0:devel/rubygem-protected_attributes \ rubygem-actionpack-action_caching>=0:devel/rubygem-actionpack-action_caching \ rubygem-actionpack-xml_parser1>=0:textproc/rubygem-actionpack-xml_parser1 \ - rubygem-roadie-rails>=0:mail/rubygem-roadie-rails \ - rubygem-rbpdf>=1.19.0:print/rubygem-rbpdf \ - rubygem-rake>=0:devel/rubygem-rake \ + rubygem-roadie-rails>=1.2.0:mail/rubygem-roadie-rails \ + rubygem-roadie>=3.2.1:mail/rubygem-roadie \ + rubygem-mimemagic>=0:misc/rubygem-mimemagic \ + rubygem-nokogiri>=1.7.2:textproc/rubygem-nokogiri \ + rubygem-i18n>=0.8.5:devel/rubygem-i18n \ + rubygem-ffi>=1.9.14:devel/rubygem-ffi \ + rubygem-rails-html-sanitizer>=1.0.3:textproc/rubygem-rails-html-sanitizer \ + rubygem-rbpdf>=1.19.2:print/rubygem-rbpdf \ + rubygem-net-ldap>=0.12.0:net/rubygem-net-ldap \ rubygem-ruby-openid>=2.3.0:net/rubygem-ruby-openid \ rubygem-rack-openid>=0:www/rubygem-rack-openid \ - rubygem-net-ldap>=0.12.0:net/rubygem-net-ldap + rubygem-rake>=0:devel/rubygem-rake NO_ARCH= yes NO_BUILD= yes USE_RUBY= yes USES= cpe USERS= ${WWWOWN} GROUPS= ${WWWGRP} PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} SUB_LIST= RUBY_NAME=${RUBY_NAME} OPTIONS_DEFINE= MYSQL POSTGRESQL LDAP MARKDOWN RMAGIC OPTIONS_DEFAULT=MYSQL MARKDOWN RMAGIC THIN OPTIONS_SINGLE= WWWSERVER OPTIONS_SINGLE_WWWSERVER= THIN PASSENGER OPTIONS_SUB= yes POSTGRESQL_DESC= Enable PostgreSQL support LDAP_DESC= Enable LDAP Authentification MARKDOWN_DESC= Enable Markdown support RMAGIC_DESC= Enable Gantt charts support THIN_DESC= Use Thin WEB server PASSENGER_DESC= Use Apache/Nginx WEB server MYSQL_DESC= MySQL database support (via mysql2 rubygem) NO_OPTIONS_SORT= yes -MYSQL_RUN_DEPENDS= rubygem-mysql2>=0.4.5:databases/rubygem-mysql2 +MYSQL_RUN_DEPENDS= rubygem-mysql2>=0.4.6:databases/rubygem-mysql2 PASSENGER_RUN_DEPENDS= passenger-config:www/rubygem-passenger POSTGRESQL_RUN_DEPENDS= rubygem-pg>=0.18.1:databases/rubygem-pg MARKDOWN_RUN_DEPENDS= rubygem-redcarpet>=3.3.2:textproc/rubygem-redcarpet RMAGIC_RUN_DEPENDS= rubygem-rmagick>=2.14.0:graphics/rubygem-rmagick THIN_RUN_DEPENDS= rubygem-thin>=1.6.2:www/rubygem-thin THIN_SUB_LIST= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} THIN_VARS= USE_RC_SUBR=redmine post-extract: @${RM} ${WRKSRC}/.hgignore ${WRKSRC}/.travis.yml @${MV} ${WRKSRC}/config/settings.yml ${WRKSRC}/config/settings.yml.sample @${MV} ${WRKSRC}/config/database.yml.example ${WRKSRC}/config/database.yml.sample @${TOUCH} ${WRKSRC}/log/development.log post-patch: @${FIND} ${WRKSRC} -name '*.bak' -delete pre-install: ${MKDIR} ${WRKSRC}/public/plugin_assets do-install: ${MKDIR} ${STAGEDIR}${WWWDIR} ${MKDIR} ${STAGEDIR}${WWWDIR}/tmp/pids ${MKDIR} ${STAGEDIR}${WWWDIR}/bundler.d + ${MKDIR} ${STAGEDIR}${WWWDIR}/tmp/pdf + ${TOUCH} ${STAGEDIR}${WWWDIR}/tmp/pdf/empty + ${MKDIR} ${STAGEDIR}${WWWDIR}/tmp/test + ${TOUCH} ${STAGEDIR}${WWWDIR}/tmp/test/empty + ${MKDIR} ${STAGEDIR}${WWWDIR}/tmp/thumbnails + ${TOUCH} ${STAGEDIR}${WWWDIR}/tmp/thumbnails/empty + ${MKDIR} ${STAGEDIR}${WWWDIR}/log + ${TOUCH} ${STAGEDIR}${WWWDIR}/log/development.log 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-LDAP-on: ${CP} ${FILESDIR}/ldap.rb ${STAGEDIR}${WWWDIR}/bundler.d do-install-MARKDOWN-on: ${CP} ${FILESDIR}/markdown.rb ${STAGEDIR}${WWWDIR}/bundler.d do-install-RMAGIC-on: ${CP} ${FILESDIR}/rmagic.rb ${STAGEDIR}${WWWDIR}/bundler.d do-install-THIN-on: ${CP} ${FILESDIR}/thin.rb ${STAGEDIR}${WWWDIR}/bundler.d .include Index: head/www/redmine/distinfo =================================================================== --- head/www/redmine/distinfo (revision 450392) +++ head/www/redmine/distinfo (revision 450393) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466169440 -SHA256 (redmine-3.2.3.tar.gz) = 570f039ce72112297c915d2f7e78228a4750020f1633fe479f23f6fdb5f8fa24 -SIZE (redmine-3.2.3.tar.gz) = 2311713 +TIMESTAMP = 1499413714 +SHA256 (redmine-3.2.7.tar.gz) = f6ec163474e2a2cac21215d130c5bd3ccee54019165052943feaffc5fe5b34fc +SIZE (redmine-3.2.7.tar.gz) = 2322680 Index: head/www/redmine/files/mysql.rb =================================================================== --- head/www/redmine/files/mysql.rb (revision 450392) +++ head/www/redmine/files/mysql.rb (revision 450393) @@ -1 +1 @@ -gem "mysql2", "~> 0.4.5" +gem "mysql2", "~> 0.4.6" Index: head/www/redmine/files/patch-Gemfile =================================================================== --- head/www/redmine/files/patch-Gemfile (revision 450392) +++ head/www/redmine/files/patch-Gemfile (revision 450393) @@ -1,101 +1,91 @@ ---- Gemfile.orig 2016-06-05 07:30:30 UTC +--- Gemfile.orig 2017-07-02 13:29:06 UTC +++ Gemfile -@@ -4,11 +4,11 @@ if Gem::Version.new(Bundler::VERSION) < +@@ -4,22 +4,22 @@ if Gem::Version.new(Bundler::VERSION) < abort "Redmine requires Bundler 1.5.0 or higher (you're using #{Bundler::VERSION}).\nPlease update with 'gem update bundler'." end --gem "rails", "4.2.5.2" +-gem "rails", "4.2.7.1" ++gem "rails", ">= 4.2.7.1" + gem "addressable", "2.4.0" if RUBY_VERSION < "2.0" -gem "jquery-rails", "~> 3.1.4" -+gem "rails", ">= 4.2.5.2" -+gem "jquery-rails" ++gem "jquery-rails", "~> 4.3.0" gem "coderay", "~> 1.1.0" gem "builder", ">= 3.0.4" -gem "request_store", "1.0.5" +gem "request_store", ">= 1.0.5" gem "mime-types", (RUBY_VERSION >= "2.0" ? "~> 3.0" : "~> 2.99") gem "protected_attributes" gem "actionpack-action_caching" -@@ -17,7 +17,7 @@ gem "roadie-rails" + gem "actionpack-xml_parser" +-gem "roadie-rails", "~> 1.1.1" ++gem "roadie-rails", "~> 1.2.0" + gem "roadie", "~> 3.2.1" gem "mimemagic" - # Request at least nokogiri 1.6.7.2 because of security advisories --gem "nokogiri", ">= 1.6.7.2" +-gem "nokogiri", (RUBY_VERSION >= "2.1" ? "~> 1.7.2" : "~> 1.6.8") +-gem "i18n", "~> 0.7.0" +gem "nokogiri" ++gem "i18n", "~> 0.8.5" + gem "ffi", "1.9.14", :platforms => :mingw if RUBY_VERSION < "2.0" # Request at least rails-html-sanitizer 1.0.3 because of security advisories - gem "rails-html-sanitizer", ">= 1.0.3" -@@ -28,27 +28,15 @@ gem "rbpdf", "~> 1.19.0" +@@ -31,27 +31,15 @@ gem "rbpdf", "~> 1.19.2" # Optional gem for LDAP authentication group :ldap do - gem "net-ldap", "~> 0.12.0" + gem "net-ldap", "~> 0.12" end # Optional gem for OpenID authentication group :openid do - gem "ruby-openid", "~> 2.3.0", :require => "openid" + gem "ruby-openid", ">= 2.3.0", :require => "openid" gem "rack-openid" end -platforms :mri, :mingw, :x64_mingw do - # Optional gem for exporting the gantt to a PNG file, not supported with jruby - group :rmagick do - gem "rmagick", ">= 2.14.0" - end - - # Optional Markdown support, not for JRuby - group :markdown do - gem "redcarpet", "~> 3.3.2" - end -end - platforms :jruby do # jruby-openssl is bundled with JRuby 1.7.0 gem "jruby-openssl" if Object.const_defined?(:JRUBY_VERSION) && JRUBY_VERSION < '1.7.0' -@@ -67,12 +55,12 @@ if File.exist?(database_file) - adapters.each do |adapter| - case adapter - when 'mysql2' -- gem "mysql2", "~> 0.3.11", :platforms => [:mri, :mingw, :x64_mingw] -+ gem "mysql2", "~> 0.4.5", :platforms => [:mri, :mingw, :x64_mingw] - gem "activerecord-jdbcmysql-adapter", :platforms => :jruby - when 'mysql' - gem "activerecord-jdbcmysql-adapter", :platforms => :jruby - when /postgresql/ -- gem "pg", "~> 0.18.1", :platforms => [:mri, :mingw, :x64_mingw] -+ gem "pg", ">= 0.18.1", :platforms => [:mri, :mingw, :x64_mingw] - gem "activerecord-jdbcpostgresql-adapter", :platforms => :jruby - when /sqlite3/ - gem "sqlite3", :platforms => [:mri, :mingw, :x64_mingw] -@@ -92,21 +80,6 @@ else +@@ -96,21 +84,6 @@ else warn("Please configure your config/database.yml first") end -group :development do -- gem "rdoc", ">= 2.4.2" +- gem "rdoc", "~> 4.3" - gem "yard" -end - -group :test do - gem "minitest" - gem "rails-dom-testing" - gem "mocha" - gem "simplecov", "~> 0.9.1", :require => false - # For running UI tests - gem "capybara" -- gem "selenium-webdriver" +- gem "selenium-webdriver", "~> 2.53.4" -end - local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local") if File.exists?(local_gemfile) eval_gemfile local_gemfile -@@ -116,3 +89,7 @@ end +@@ -120,3 +93,7 @@ end Dir.glob File.expand_path("../plugins/*/{Gemfile,PluginGemfile}", __FILE__) do |file| eval_gemfile file end + +Dir["#{File.dirname(__FILE__)}/bundler.d/*.rb"].each do |bundle| + self.instance_eval(Bundler.read_file(bundle)) +end Index: head/www/redmine/pkg-plist =================================================================== --- head/www/redmine/pkg-plist (revision 450392) +++ head/www/redmine/pkg-plist (revision 450393) @@ -1,2065 +1,2068 @@ %%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/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/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/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/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/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/query.rb %%WWWDIR%%/app/models/repository.rb %%WWWDIR%%/app/models/repository/bazaar.rb %%WWWDIR%%/app/models/repository/cvs.rb %%WWWDIR%%/app/models/repository/darcs.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_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_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_content.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/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/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.html.erb %%WWWDIR%%/app/views/attachments/file.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/auto_completes/issues.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/_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/edit.html.erb %%WWWDIR%%/app/views/custom_fields/formats/_bool.html.erb %%WWWDIR%%/app/views/custom_fields/formats/_date.html.erb %%WWWDIR%%/app/views/custom_fields/formats/_enumeration.erb %%WWWDIR%%/app/views/custom_fields/formats/_link.html.erb %%WWWDIR%%/app/views/custom_fields/formats/_list.html.erb %%WWWDIR%%/app/views/custom_fields/formats/_numeric.html.erb %%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.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/_fields_mapping.html.erb %%WWWDIR%%/app/views/imports/mapping.html.erb %%WWWDIR%%/app/views/imports/mapping.js.erb %%WWWDIR%%/app/views/imports/new.html.erb %%WWWDIR%%/app/views/imports/run.html.erb %%WWWDIR%%/app/views/imports/run.js.erb %%WWWDIR%%/app/views/imports/settings.html.erb %%WWWDIR%%/app/views/imports/show.html.erb %%WWWDIR%%/app/views/issue_categories/_form.html.erb %%WWWDIR%%/app/views/issue_categories/_new_modal.html.erb %%WWWDIR%%/app/views/issue_categories/create.js.erb %%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/_attributes.html.erb %%WWWDIR%%/app/views/issues/_changesets.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/_history.html.erb %%WWWDIR%%/app/views/issues/_list.html.erb %%WWWDIR%%/app/views/issues/_list_simple.html.erb %%WWWDIR%%/app/views/issues/_relations.html.erb %%WWWDIR%%/app/views/issues/_sidebar.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/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/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/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/_new_form.html.erb %%WWWDIR%%/app/views/members/_new_modal.html.erb %%WWWDIR%%/app/views/members/autocomplete.js.erb %%WWWDIR%%/app/views/members/create.js.erb %%WWWDIR%%/app/views/members/destroy.js.erb %%WWWDIR%%/app/views/members/index.api.rsb %%WWWDIR%%/app/views/members/new.html.erb %%WWWDIR%%/app/views/members/new.js.erb %%WWWDIR%%/app/views/members/show.api.rsb %%WWWDIR%%/app/views/members/update.js.erb %%WWWDIR%%/app/views/messages/_form.html.erb %%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/_block.html.erb %%WWWDIR%%/app/views/my/_sidebar.html.erb %%WWWDIR%%/app/views/my/account.html.erb %%WWWDIR%%/app/views/my/blocks/_calendar.html.erb %%WWWDIR%%/app/views/my/blocks/_documents.html.erb %%WWWDIR%%/app/views/my/blocks/_issuesassignedtome.html.erb %%WWWDIR%%/app/views/my/blocks/_issuesreportedbyme.html.erb %%WWWDIR%%/app/views/my/blocks/_issueswatched.html.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/page_layout.html.erb %%WWWDIR%%/app/views/my/password.html.erb %%WWWDIR%%/app/views/my/show_api_key.html.erb %%WWWDIR%%/app/views/my/show_api_key.js.erb %%WWWDIR%%/app/views/news/_form.html.erb %%WWWDIR%%/app/views/news/_news.html.erb %%WWWDIR%%/app/views/news/edit.html.erb %%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.html.erb %%WWWDIR%%/app/views/previews/issue.html.erb %%WWWDIR%%/app/views/principal_memberships/_index.html.erb %%WWWDIR%%/app/views/principal_memberships/_new_form.html.erb %%WWWDIR%%/app/views/principal_memberships/_new_modal.html.erb %%WWWDIR%%/app/views/principal_memberships/create.js.erb %%WWWDIR%%/app/views/principal_memberships/destroy.js.erb %%WWWDIR%%/app/views/principal_memberships/new.html.erb %%WWWDIR%%/app/views/principal_memberships/new.js.erb %%WWWDIR%%/app/views/principal_memberships/update.js.erb %%WWWDIR%%/app/views/projects/_edit.html.erb %%WWWDIR%%/app/views/projects/_form.html.erb %%WWWDIR%%/app/views/projects/_members_box.html.erb %%WWWDIR%%/app/views/projects/_sidebar.html.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/_members.html.erb %%WWWDIR%%/app/views/projects/settings/_modules.html.erb %%WWWDIR%%/app/views/projects/settings/_repositories.html.erb %%WWWDIR%%/app/views/projects/settings/_versions.html.erb %%WWWDIR%%/app/views/projects/settings/_wiki.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/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/_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.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/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/bulk_edit.html.erb %%WWWDIR%%/app/views/timelog/edit.html.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/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_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/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.html.erb %%WWWDIR%%/app/views/wiki/_content.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/rename.html.erb %%WWWDIR%%/app/views/wiki/show.api.rsb %%WWWDIR%%/app/views/wiki/show.html.erb %%WWWDIR%%/app/views/wiki/show.pdf.erb %%WWWDIR%%/app/views/wikis/destroy.html.erb %%WWWDIR%%/app/views/wikis/edit.js.erb %%WWWDIR%%/app/views/workflows/_action_menu.html.erb %%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/rails %%WWWDIR%%/bin/rake %%WWWDIR%%/config.ru %%WWWDIR%%/config/additional_environment.rb.example %%WWWDIR%%/config/application.rb %%WWWDIR%%/config/boot.rb %%WWWDIR%%/config/configuration.yml.example @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/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 %%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%%/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 @(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/files/delete.me %%WWWDIR%%/lib/SVG/GPL.txt %%WWWDIR%%/lib/SVG/Graph/Bar.rb %%WWWDIR%%/lib/SVG/Graph/BarBase.rb %%WWWDIR%%/lib/SVG/Graph/BarHorizontal.rb %%WWWDIR%%/lib/SVG/Graph/Graph.rb %%WWWDIR%%/lib/SVG/Graph/Line.rb %%WWWDIR%%/lib/SVG/Graph/Pie.rb %%WWWDIR%%/lib/SVG/Graph/Plot.rb %%WWWDIR%%/lib/SVG/Graph/Schedule.rb %%WWWDIR%%/lib/SVG/Graph/TimeSeries.rb %%WWWDIR%%/lib/SVG/LICENSE.txt %%WWWDIR%%/lib/diff.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_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_list/README %%WWWDIR%%/lib/plugins/acts_as_list/init.rb %%WWWDIR%%/lib/plugins/acts_as_list/lib/active_record/acts/list.rb %%WWWDIR%%/lib/plugins/acts_as_list/test/list_test.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_versioned/CHANGELOG %%WWWDIR%%/lib/plugins/acts_as_versioned/MIT-LICENSE %%WWWDIR%%/lib/plugins/acts_as_versioned/README %%WWWDIR%%/lib/plugins/acts_as_versioned/RUNNING_UNIT_TESTS %%WWWDIR%%/lib/plugins/acts_as_versioned/Rakefile %%WWWDIR%%/lib/plugins/acts_as_versioned/init.rb %%WWWDIR%%/lib/plugins/acts_as_versioned/lib/acts_as_versioned.rb %%WWWDIR%%/lib/plugins/acts_as_versioned/test/abstract_unit.rb %%WWWDIR%%/lib/plugins/acts_as_versioned/test/database.yml %%WWWDIR%%/lib/plugins/acts_as_versioned/test/fixtures/authors.yml %%WWWDIR%%/lib/plugins/acts_as_versioned/test/fixtures/landmark.rb %%WWWDIR%%/lib/plugins/acts_as_versioned/test/fixtures/landmark_versions.yml %%WWWDIR%%/lib/plugins/acts_as_versioned/test/fixtures/landmarks.yml %%WWWDIR%%/lib/plugins/acts_as_versioned/test/fixtures/locked_pages.yml %%WWWDIR%%/lib/plugins/acts_as_versioned/test/fixtures/locked_pages_revisions.yml %%WWWDIR%%/lib/plugins/acts_as_versioned/test/fixtures/migrations/1_add_versioned_tables.rb %%WWWDIR%%/lib/plugins/acts_as_versioned/test/fixtures/page.rb %%WWWDIR%%/lib/plugins/acts_as_versioned/test/fixtures/page_versions.yml %%WWWDIR%%/lib/plugins/acts_as_versioned/test/fixtures/pages.yml %%WWWDIR%%/lib/plugins/acts_as_versioned/test/fixtures/widget.rb %%WWWDIR%%/lib/plugins/acts_as_versioned/test/migration_test.rb %%WWWDIR%%/lib/plugins/acts_as_versioned/test/schema.rb %%WWWDIR%%/lib/plugins/acts_as_versioned/test/versioned_test.rb %%WWWDIR%%/lib/plugins/acts_as_watchable/init.rb %%WWWDIR%%/lib/plugins/acts_as_watchable/lib/acts_as_watchable.rb %%WWWDIR%%/lib/plugins/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/plugins/open_id_authentication/CHANGELOG %%WWWDIR%%/lib/plugins/open_id_authentication/README %%WWWDIR%%/lib/plugins/open_id_authentication/Rakefile %%WWWDIR%%/lib/plugins/open_id_authentication/generators/open_id_authentication_tables/open_id_authentication_tables_generator.rb %%WWWDIR%%/lib/plugins/open_id_authentication/generators/open_id_authentication_tables/templates/migration.rb %%WWWDIR%%/lib/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables/templates/migration.rb %%WWWDIR%%/lib/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables/upgrade_open_id_authentication_tables_generator.rb %%WWWDIR%%/lib/plugins/open_id_authentication/init.rb %%WWWDIR%%/lib/plugins/open_id_authentication/lib/open_id_authentication.rb %%WWWDIR%%/lib/plugins/open_id_authentication/lib/open_id_authentication/association.rb %%WWWDIR%%/lib/plugins/open_id_authentication/lib/open_id_authentication/db_store.rb %%WWWDIR%%/lib/plugins/open_id_authentication/lib/open_id_authentication/mem_cache_store.rb %%WWWDIR%%/lib/plugins/open_id_authentication/lib/open_id_authentication/nonce.rb %%WWWDIR%%/lib/plugins/open_id_authentication/lib/open_id_authentication/request.rb %%WWWDIR%%/lib/plugins/open_id_authentication/lib/open_id_authentication/timeout_fixes.rb %%WWWDIR%%/lib/plugins/open_id_authentication/lib/tasks/open_id_authentication_tasks.rake %%WWWDIR%%/lib/plugins/open_id_authentication/test/mem_cache_store_test.rb %%WWWDIR%%/lib/plugins/open_id_authentication/test/normalize_test.rb %%WWWDIR%%/lib/plugins/open_id_authentication/test/open_id_authentication_test.rb %%WWWDIR%%/lib/plugins/open_id_authentication/test/status_test.rb %%WWWDIR%%/lib/plugins/open_id_authentication/test/test_helper.rb %%WWWDIR%%/lib/redcloth3.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/ciphering.rb %%WWWDIR%%/lib/redmine/codeset_util.rb %%WWWDIR%%/lib/redmine/configuration.rb %%WWWDIR%%/lib/redmine/core_ext.rb %%WWWDIR%%/lib/redmine/core_ext/active_record.rb %%WWWDIR%%/lib/redmine/core_ext/date.rb %%WWWDIR%%/lib/redmine/core_ext/date/calculations.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/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/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/pop3.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/cvs_adapter.rb %%WWWDIR%%/lib/redmine/scm/adapters/darcs_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/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/unified_diff.rb %%WWWDIR%%/lib/redmine/utils.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/my_page/block.rb %%WWWDIR%%/lib/redmine/views/other_formats_builder.rb %%WWWDIR%%/lib/redmine/wiki_formatting.rb %%WWWDIR%%/lib/redmine/wiki_formatting/html_parser.rb %%WWWDIR%%/lib/redmine/wiki_formatting/macros.rb %%WWWDIR%%/lib/redmine/wiki_formatting/markdown/formatter.rb %%WWWDIR%%/lib/redmine/wiki_formatting/markdown/helper.rb %%WWWDIR%%/lib/redmine/wiki_formatting/markdown/html_parser.rb %%WWWDIR%%/lib/redmine/wiki_formatting/textile/formatter.rb %%WWWDIR%%/lib/redmine/wiki_formatting/textile/helper.rb %%WWWDIR%%/lib/redmine/wiki_formatting/textile/html_parser.rb %%WWWDIR%%/lib/tasks/ci.rake %%WWWDIR%%/lib/tasks/ciphering.rake %%WWWDIR%%/lib/tasks/deprecated.rake %%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 @(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/log/delete.me %%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/cs/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/cs/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/cs/wiki_syntax_markdown.html %%WWWDIR%%/public/help/cs/wiki_syntax_textile.html %%WWWDIR%%/public/help/da/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/da/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/da/wiki_syntax_markdown.html %%WWWDIR%%/public/help/da/wiki_syntax_textile.html %%WWWDIR%%/public/help/de/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/de/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/de/wiki_syntax_markdown.html %%WWWDIR%%/public/help/de/wiki_syntax_textile.html %%WWWDIR%%/public/help/el/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/el/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/el/wiki_syntax_markdown.html %%WWWDIR%%/public/help/el/wiki_syntax_textile.html %%WWWDIR%%/public/help/en-gb/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/en-gb/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/en-gb/wiki_syntax_markdown.html %%WWWDIR%%/public/help/en-gb/wiki_syntax_textile.html %%WWWDIR%%/public/help/en/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/en/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/en/wiki_syntax_markdown.html %%WWWDIR%%/public/help/en/wiki_syntax_textile.html %%WWWDIR%%/public/help/es-pa/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/es-pa/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/es-pa/wiki_syntax_markdown.html %%WWWDIR%%/public/help/es-pa/wiki_syntax_textile.html %%WWWDIR%%/public/help/es/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/es/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/es/wiki_syntax_markdown.html %%WWWDIR%%/public/help/es/wiki_syntax_textile.html %%WWWDIR%%/public/help/et/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/et/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/et/wiki_syntax_markdown.html %%WWWDIR%%/public/help/et/wiki_syntax_textile.html %%WWWDIR%%/public/help/eu/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/eu/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/eu/wiki_syntax_markdown.html %%WWWDIR%%/public/help/eu/wiki_syntax_textile.html %%WWWDIR%%/public/help/fa/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/fa/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/fa/wiki_syntax_markdown.html %%WWWDIR%%/public/help/fa/wiki_syntax_textile.html %%WWWDIR%%/public/help/fi/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/fi/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/fi/wiki_syntax_markdown.html %%WWWDIR%%/public/help/fi/wiki_syntax_textile.html %%WWWDIR%%/public/help/fr/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/fr/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/fr/wiki_syntax_markdown.html %%WWWDIR%%/public/help/fr/wiki_syntax_textile.html %%WWWDIR%%/public/help/gl/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/gl/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/gl/wiki_syntax_markdown.html %%WWWDIR%%/public/help/gl/wiki_syntax_textile.html %%WWWDIR%%/public/help/he/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/he/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/he/wiki_syntax_markdown.html %%WWWDIR%%/public/help/he/wiki_syntax_textile.html %%WWWDIR%%/public/help/hr/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/hr/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/hr/wiki_syntax_markdown.html %%WWWDIR%%/public/help/hr/wiki_syntax_textile.html %%WWWDIR%%/public/help/hu/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/hu/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/hu/wiki_syntax_markdown.html %%WWWDIR%%/public/help/hu/wiki_syntax_textile.html %%WWWDIR%%/public/help/id/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/id/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/id/wiki_syntax_markdown.html %%WWWDIR%%/public/help/id/wiki_syntax_textile.html %%WWWDIR%%/public/help/it/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/it/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/it/wiki_syntax_markdown.html %%WWWDIR%%/public/help/it/wiki_syntax_textile.html %%WWWDIR%%/public/help/ja/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/ja/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/ja/wiki_syntax_markdown.html %%WWWDIR%%/public/help/ja/wiki_syntax_textile.html %%WWWDIR%%/public/help/ko/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/ko/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/ko/wiki_syntax_markdown.html %%WWWDIR%%/public/help/ko/wiki_syntax_textile.html %%WWWDIR%%/public/help/lt/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/lt/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/lt/wiki_syntax_markdown.html %%WWWDIR%%/public/help/lt/wiki_syntax_textile.html %%WWWDIR%%/public/help/lv/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/lv/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/lv/wiki_syntax_markdown.html %%WWWDIR%%/public/help/lv/wiki_syntax_textile.html %%WWWDIR%%/public/help/mk/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/mk/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/mk/wiki_syntax_markdown.html %%WWWDIR%%/public/help/mk/wiki_syntax_textile.html %%WWWDIR%%/public/help/mn/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/mn/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/mn/wiki_syntax_markdown.html %%WWWDIR%%/public/help/mn/wiki_syntax_textile.html %%WWWDIR%%/public/help/nl/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/nl/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/nl/wiki_syntax_markdown.html %%WWWDIR%%/public/help/nl/wiki_syntax_textile.html %%WWWDIR%%/public/help/no/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/no/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/no/wiki_syntax_markdown.html %%WWWDIR%%/public/help/no/wiki_syntax_textile.html %%WWWDIR%%/public/help/pl/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/pl/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/pl/wiki_syntax_markdown.html %%WWWDIR%%/public/help/pl/wiki_syntax_textile.html %%WWWDIR%%/public/help/pt-br/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/pt-br/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/pt-br/wiki_syntax_markdown.html %%WWWDIR%%/public/help/pt-br/wiki_syntax_textile.html %%WWWDIR%%/public/help/pt/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/pt/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/pt/wiki_syntax_markdown.html %%WWWDIR%%/public/help/pt/wiki_syntax_textile.html %%WWWDIR%%/public/help/ro/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/ro/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/ro/wiki_syntax_markdown.html %%WWWDIR%%/public/help/ro/wiki_syntax_textile.html %%WWWDIR%%/public/help/ru/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/ru/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/ru/wiki_syntax_markdown.html %%WWWDIR%%/public/help/ru/wiki_syntax_textile.html %%WWWDIR%%/public/help/sk/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/sk/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/sk/wiki_syntax_markdown.html %%WWWDIR%%/public/help/sk/wiki_syntax_textile.html %%WWWDIR%%/public/help/sl/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/sl/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/sl/wiki_syntax_markdown.html %%WWWDIR%%/public/help/sl/wiki_syntax_textile.html %%WWWDIR%%/public/help/sq/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/sq/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/sq/wiki_syntax_markdown.html %%WWWDIR%%/public/help/sq/wiki_syntax_textile.html %%WWWDIR%%/public/help/sr-yu/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/sr-yu/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/sr-yu/wiki_syntax_markdown.html %%WWWDIR%%/public/help/sr-yu/wiki_syntax_textile.html %%WWWDIR%%/public/help/sr/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/sr/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/sr/wiki_syntax_markdown.html %%WWWDIR%%/public/help/sr/wiki_syntax_textile.html %%WWWDIR%%/public/help/sv/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/sv/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/sv/wiki_syntax_markdown.html %%WWWDIR%%/public/help/sv/wiki_syntax_textile.html %%WWWDIR%%/public/help/th/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/th/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/th/wiki_syntax_markdown.html %%WWWDIR%%/public/help/th/wiki_syntax_textile.html %%WWWDIR%%/public/help/tr/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/tr/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/tr/wiki_syntax_markdown.html %%WWWDIR%%/public/help/tr/wiki_syntax_textile.html %%WWWDIR%%/public/help/uk/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/uk/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/uk/wiki_syntax_markdown.html %%WWWDIR%%/public/help/uk/wiki_syntax_textile.html %%WWWDIR%%/public/help/vi/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/vi/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/vi/wiki_syntax_markdown.html %%WWWDIR%%/public/help/vi/wiki_syntax_textile.html %%WWWDIR%%/public/help/zh-tw/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/zh-tw/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/zh-tw/wiki_syntax_markdown.html %%WWWDIR%%/public/help/zh-tw/wiki_syntax_textile.html %%WWWDIR%%/public/help/zh/wiki_syntax_detailed_markdown.html %%WWWDIR%%/public/help/zh/wiki_syntax_detailed_textile.html %%WWWDIR%%/public/help/zh/wiki_syntax_markdown.html %%WWWDIR%%/public/help/zh/wiki_syntax_textile.html %%WWWDIR%%/public/htaccess.fcgi.example %%WWWDIR%%/public/images/1downarrow.png %%WWWDIR%%/public/images/1uparrow.png %%WWWDIR%%/public/images/2downarrow.png %%WWWDIR%%/public/images/2uparrow.png %%WWWDIR%%/public/images/add.png %%WWWDIR%%/public/images/arrow_collapsed.png %%WWWDIR%%/public/images/arrow_down.png %%WWWDIR%%/public/images/arrow_expanded.png %%WWWDIR%%/public/images/attachment.png %%WWWDIR%%/public/images/bullet_add.png %%WWWDIR%%/public/images/bullet_arrow_left.png %%WWWDIR%%/public/images/bullet_arrow_right.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/database_key.png %%WWWDIR%%/public/images/delete.png %%WWWDIR%%/public/images/document.png %%WWWDIR%%/public/images/draft.png %%WWWDIR%%/public/images/duplicate.png %%WWWDIR%%/public/images/edit.png %%WWWDIR%%/public/images/email.png %%WWWDIR%%/public/images/email_add.png %%WWWDIR%%/public/images/email_disabled.png %%WWWDIR%%/public/images/exclamation.png %%WWWDIR%%/public/images/external.png %%WWWDIR%%/public/images/false.png %%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_strong.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/openid-bg.gif %%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/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/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/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/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-1.11.1-ui-1.11.0-ujs-3.1.4.js %%WWWDIR%%/public/javascripts/jstoolbar/jstoolbar-textile.min.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 @(%%WWWOWN%%,%%WWWGRP%%,) %%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/animated-overlay.gif %%WWWDIR%%/public/stylesheets/jquery/images/ui-bg_diagonals-thick_18_b81900_40x40.png %%WWWDIR%%/public/stylesheets/jquery/images/ui-bg_diagonals-thick_20_666666_40x40.png %%WWWDIR%%/public/stylesheets/jquery/images/ui-bg_flat_10_000000_40x100.png %%WWWDIR%%/public/stylesheets/jquery/images/ui-bg_glass_100_eef5fd_1x400.png %%WWWDIR%%/public/stylesheets/jquery/images/ui-bg_glass_100_f6f6f6_1x400.png %%WWWDIR%%/public/stylesheets/jquery/images/ui-bg_glass_65_ffffff_1x400.png %%WWWDIR%%/public/stylesheets/jquery/images/ui-bg_gloss-wave_35_759fcf_500x100.png %%WWWDIR%%/public/stylesheets/jquery/images/ui-bg_highlight-soft_100_eeeeee_1x100.png %%WWWDIR%%/public/stylesheets/jquery/images/ui-bg_highlight-soft_75_759fcf_1x100.png %%WWWDIR%%/public/stylesheets/jquery/images/ui-icons_222222_256x240.png %%WWWDIR%%/public/stylesheets/jquery/images/ui-icons_759fcf_256x240.png %%WWWDIR%%/public/stylesheets/jquery/images/ui-icons_ffd27a_256x240.png %%WWWDIR%%/public/stylesheets/jquery/images/ui-icons_ffffff_256x240.png %%WWWDIR%%/public/stylesheets/jquery/jquery-ui-1.11.0.css %%WWWDIR%%/public/stylesheets/jstoolbar.css %%WWWDIR%%/public/stylesheets/responsive.css %%WWWDIR%%/public/stylesheets/rtl.css %%WWWDIR%%/public/stylesheets/scm.css %%WWWDIR%%/public/themes/README %%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 @(,,755) %%WWWDIR%%/script/about @(,,755) %%WWWDIR%%/script/rails %%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/configuration/default.yml %%WWWDIR%%/test/fixtures/configuration/empty.yml %%WWWDIR%%/test/fixtures/configuration/no_default.yml %%WWWDIR%%/test/fixtures/configuration/overrides.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/hg-export.diff %%WWWDIR%%/test/fixtures/files/import_dates.csv %%WWWDIR%%/test/fixtures/files/import_iso8859-1.csv %%WWWDIR%%/test/fixtures/files/import_issues.csv +%%WWWDIR%%/test/fixtures/files/invalid-Shift_JIS.csv %%WWWDIR%%/test/fixtures/files/iso8859-1.txt %%WWWDIR%%/test/fixtures/files/japanese-utf-8.txt %%WWWDIR%%/test/fixtures/files/testfile.txt %%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/fullname_of_sender_as_utf8_encoded.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/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/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/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_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_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_long_subject.eml %%WWWDIR%%/test/fixtures/mail_handler/ticket_with_spaces_between_attribute_and_separator.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/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/darcs_repository.tar.gz %%WWWDIR%%/test/fixtures/repositories/filesystem_repository.tar.gz %%WWWDIR%%/test/fixtures/repositories/git_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/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_openid_test.rb %%WWWDIR%%/test/functional/account_controller_test.rb %%WWWDIR%%/test/functional/activities_controller_test.rb %%WWWDIR%%/test/functional/admin_controller_test.rb %%WWWDIR%%/test/functional/attachments_controller_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_darcs_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/time_entry_reports_controller_test.rb %%WWWDIR%%/test/functional/timelog_controller_test.rb %%WWWDIR%%/test/functional/timelog_custom_fields_visibility_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/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/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/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/jsonp_test.rb %%WWWDIR%%/test/integration/api_test/memberships_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/roles_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/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/users_test.rb %%WWWDIR%%/test/mocks/open_id_authentication_mock.rb %%WWWDIR%%/test/object_helpers.rb %%WWWDIR%%/test/test_helper.rb %%WWWDIR%%/test/ui/base.rb %%WWWDIR%%/test/ui/custom_fields_test_ui.rb %%WWWDIR%%/test/ui/issues_test_ui.rb %%WWWDIR%%/test/ui/sudo_mode_test_ui.rb %%WWWDIR%%/test/ui/timelog_test_ui.rb %%WWWDIR%%/test/unit/activity_test.rb %%WWWDIR%%/test/unit/attachment_test.rb %%WWWDIR%%/test/unit/auth_source_ldap_test.rb %%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/enabled_module_test.rb %%WWWDIR%%/test/unit/enumeration_test.rb %%WWWDIR%%/test/unit/group_test.rb %%WWWDIR%%/test/unit/helpers/activities_helper_test.rb %%WWWDIR%%/test/unit/helpers/application_helper_test.rb %%WWWDIR%%/test/unit/helpers/custom_fields_helper_test.rb %%WWWDIR%%/test/unit/helpers/groups_helper_test.rb %%WWWDIR%%/test/unit/helpers/issues_helper_test.rb %%WWWDIR%%/test/unit/helpers/journals_helper_test.rb %%WWWDIR%%/test/unit/helpers/members_helper_test.rb %%WWWDIR%%/test/unit/helpers/my_helper_test.rb %%WWWDIR%%/test/unit/helpers/projects_helper_test.rb %%WWWDIR%%/test/unit/helpers/queries_helper_test.rb %%WWWDIR%%/test/unit/helpers/routes_helper_test.rb %%WWWDIR%%/test/unit/helpers/search_helper_test.rb %%WWWDIR%%/test/unit/helpers/settings_helper_test.rb %%WWWDIR%%/test/unit/helpers/sort_helper_test.rb %%WWWDIR%%/test/unit/helpers/timelog_helper_test.rb %%WWWDIR%%/test/unit/helpers/version_helper_test.rb %%WWWDIR%%/test/unit/helpers/watchers_helper_test.rb %%WWWDIR%%/test/unit/helpers/wiki_helper_test.rb %%WWWDIR%%/test/unit/initializers/patches_test.rb %%WWWDIR%%/test/unit/issue_category_test.rb %%WWWDIR%%/test/unit/issue_custom_field_test.rb %%WWWDIR%%/test/unit/issue_import_test.rb %%WWWDIR%%/test/unit/issue_nested_set_concurrency_test.rb %%WWWDIR%%/test/unit/issue_nested_set_test.rb %%WWWDIR%%/test/unit/issue_priority_test.rb %%WWWDIR%%/test/unit/issue_relation_test.rb %%WWWDIR%%/test/unit/issue_scopes_test.rb %%WWWDIR%%/test/unit/issue_status_test.rb %%WWWDIR%%/test/unit/issue_subtasking_test.rb %%WWWDIR%%/test/unit/issue_test.rb %%WWWDIR%%/test/unit/issue_transaction_test.rb %%WWWDIR%%/test/unit/journal_observer_test.rb %%WWWDIR%%/test/unit/journal_test.rb %%WWWDIR%%/test/unit/lib/redmine/access_control_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_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/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_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/darcs_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/syntax_highlighting/coderay_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/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_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_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_darcs_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_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_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 %%MYSQL%%%%WWWDIR%%/bundler.d/mysql.rb %%POSTGRESQL%%%%WWWDIR%%/bundler.d/pg.rb %%LDAP%%%%WWWDIR%%/bundler.d/ldap.rb %%MARKDOWN%%%%WWWDIR%%/bundler.d/markdown.rb %%RMAGIC%%%%WWWDIR%%/bundler.d/rmagic.rb %%THIN%%%%WWWDIR%%/bundler.d/thin.rb @sample %%WWWDIR%%/config/settings.yml.sample @(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/pdf/empty @(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/test/empty @(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/thumbnails/empty -@dir %%WWWDIR%%/test/fixtures/mailer -@dir %%WWWDIR%%/test/mocks/development -@dir %%WWWDIR%%/test/mocks/test +@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/test/fixtures/mailer +@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/test/mocks/development +@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/test/mocks/test @dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/cache @dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/imports @dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/pids @dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/sessions @dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/tmp/sockets -@(%%WWWOWN%%,%%WWWGRP%%,0664) %%WWWDIR%%/log/development.log -@dir %%WWWDIR%%/vendor +@(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/log/development.log +@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/vendor +@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/log