在好例子网,分享、交流、成长!
您当前所在位置:首页Java 开发实例常用工具方法 → 项目bug管理系统部署文档

项目bug管理系统部署文档

常用工具方法

下载此实例
  • 开发语言:Java
  • 实例大小:197.88M
  • 下载次数:10
  • 浏览次数:136
  • 发布时间:2022-01-04
  • 实例类别:常用工具方法
  • 发 布 人:li.chen
  • 文件格式:.zip
  • 所需积分:6
 相关标签: 管理系统 bug 项目 部署 管理

实例介绍

【实例简介】redmine项目bug管理系统部署文档

【实例截图】

from clipboardfrom clipboard

【核心代码】.
├── 项目bug管理系统部署文档
│   ├── mysql-5.5.45-winx64.msi
│   ├── mysql-5.6.19-winx64.msi
│   ├── railsinstaller-3.4.0.exe
│   ├── redmine-3.4.6
│   │   └── redmine-3.4.6
│   │       ├── CONTRIBUTING.md
│   │       ├── Gemfile
│   │       ├── README.rdoc
│   │       ├── Rakefile
│   │       ├── app
│   │       │   ├── controllers
│   │       │   │   ├── account_controller.rb
│   │       │   │   ├── activities_controller.rb
│   │       │   │   ├── admin_controller.rb
│   │       │   │   ├── application_controller.rb
│   │       │   │   ├── attachments_controller.rb
│   │       │   │   ├── auth_sources_controller.rb
│   │       │   │   ├── auto_completes_controller.rb
│   │       │   │   ├── boards_controller.rb
│   │       │   │   ├── calendars_controller.rb
│   │       │   │   ├── comments_controller.rb
│   │       │   │   ├── context_menus_controller.rb
│   │       │   │   ├── custom_field_enumerations_controller.rb
│   │       │   │   ├── custom_fields_controller.rb
│   │       │   │   ├── documents_controller.rb
│   │       │   │   ├── email_addresses_controller.rb
│   │       │   │   ├── enumerations_controller.rb
│   │       │   │   ├── files_controller.rb
│   │       │   │   ├── gantts_controller.rb
│   │       │   │   ├── groups_controller.rb
│   │       │   │   ├── imports_controller.rb
│   │       │   │   ├── issue_categories_controller.rb
│   │       │   │   ├── issue_relations_controller.rb
│   │       │   │   ├── issue_statuses_controller.rb
│   │       │   │   ├── issues_controller.rb
│   │       │   │   ├── journals_controller.rb
│   │       │   │   ├── mail_handler_controller.rb
│   │       │   │   ├── members_controller.rb
│   │       │   │   ├── messages_controller.rb
│   │       │   │   ├── my_controller.rb
│   │       │   │   ├── news_controller.rb
│   │       │   │   ├── previews_controller.rb
│   │       │   │   ├── principal_memberships_controller.rb
│   │       │   │   ├── project_enumerations_controller.rb
│   │       │   │   ├── projects_controller.rb
│   │       │   │   ├── queries_controller.rb
│   │       │   │   ├── reports_controller.rb
│   │       │   │   ├── repositories_controller.rb
│   │       │   │   ├── roles_controller.rb
│   │       │   │   ├── search_controller.rb
│   │       │   │   ├── settings_controller.rb
│   │       │   │   ├── sys_controller.rb
│   │       │   │   ├── timelog_controller.rb
│   │       │   │   ├── trackers_controller.rb
│   │       │   │   ├── users_controller.rb
│   │       │   │   ├── versions_controller.rb
│   │       │   │   ├── watchers_controller.rb
│   │       │   │   ├── welcome_controller.rb
│   │       │   │   ├── wiki_controller.rb
│   │       │   │   ├── wikis_controller.rb
│   │       │   │   └── workflows_controller.rb
│   │       │   ├── helpers
│   │       │   │   ├── account_helper.rb
│   │       │   │   ├── activities_helper.rb
│   │       │   │   ├── admin_helper.rb
│   │       │   │   ├── application_helper.rb
│   │       │   │   ├── attachments_helper.rb
│   │       │   │   ├── auth_sources_helper.rb
│   │       │   │   ├── boards_helper.rb
│   │       │   │   ├── calendars_helper.rb
│   │       │   │   ├── context_menus_helper.rb
│   │       │   │   ├── custom_fields_helper.rb
│   │       │   │   ├── documents_helper.rb
│   │       │   │   ├── email_addresses_helper.rb
│   │       │   │   ├── enumerations_helper.rb
│   │       │   │   ├── gantt_helper.rb
│   │       │   │   ├── groups_helper.rb
│   │       │   │   ├── imports_helper.rb
│   │       │   │   ├── issue_categories_helper.rb
│   │       │   │   ├── issue_relations_helper.rb
│   │       │   │   ├── issue_statuses_helper.rb
│   │       │   │   ├── issues_helper.rb
│   │       │   │   ├── journals_helper.rb
│   │       │   │   ├── mail_handler_helper.rb
│   │       │   │   ├── members_helper.rb
│   │       │   │   ├── messages_helper.rb
│   │       │   │   ├── my_helper.rb
│   │       │   │   ├── news_helper.rb
│   │       │   │   ├── principal_memberships_helper.rb
│   │       │   │   ├── projects_helper.rb
│   │       │   │   ├── queries_helper.rb
│   │       │   │   ├── reports_helper.rb
│   │       │   │   ├── repositories_helper.rb
│   │       │   │   ├── roles_helper.rb
│   │       │   │   ├── routes_helper.rb
│   │       │   │   ├── search_helper.rb
│   │       │   │   ├── settings_helper.rb
│   │       │   │   ├── sort_helper.rb
│   │       │   │   ├── timelog_helper.rb
│   │       │   │   ├── trackers_helper.rb
│   │       │   │   ├── users_helper.rb
│   │       │   │   ├── versions_helper.rb
│   │       │   │   ├── watchers_helper.rb
│   │       │   │   ├── welcome_helper.rb
│   │       │   │   ├── wiki_helper.rb
│   │       │   │   └── workflows_helper.rb
│   │       │   ├── models
│   │       │   │   ├── attachment.rb
│   │       │   │   ├── auth_source.rb
│   │       │   │   ├── auth_source_ldap.rb
│   │       │   │   ├── board.rb
│   │       │   │   ├── change.rb
│   │       │   │   ├── changeset.rb
│   │       │   │   ├── comment.rb
│   │       │   │   ├── custom_field.rb
│   │       │   │   ├── custom_field_enumeration.rb
│   │       │   │   ├── custom_field_value.rb
│   │       │   │   ├── custom_value.rb
│   │       │   │   ├── document.rb
│   │       │   │   ├── document_category.rb
│   │       │   │   ├── document_category_custom_field.rb
│   │       │   │   ├── document_custom_field.rb
│   │       │   │   ├── email_address.rb
│   │       │   │   ├── enabled_module.rb
│   │       │   │   ├── enumeration.rb
│   │       │   │   ├── group.rb
│   │       │   │   ├── group_anonymous.rb
│   │       │   │   ├── group_builtin.rb
│   │       │   │   ├── group_custom_field.rb
│   │       │   │   ├── group_non_member.rb
│   │       │   │   ├── import.rb
│   │       │   │   ├── import_item.rb
│   │       │   │   ├── issue.rb
│   │       │   │   ├── issue_category.rb
│   │       │   │   ├── issue_custom_field.rb
│   │       │   │   ├── issue_import.rb
│   │       │   │   ├── issue_priority.rb
│   │       │   │   ├── issue_priority_custom_field.rb
│   │       │   │   ├── issue_query.rb
│   │       │   │   ├── issue_relation.rb
│   │       │   │   ├── issue_status.rb
│   │       │   │   ├── journal.rb
│   │       │   │   ├── journal_detail.rb
│   │       │   │   ├── mail_handler.rb
│   │       │   │   ├── mailer.rb
│   │       │   │   ├── member.rb
│   │       │   │   ├── member_role.rb
│   │       │   │   ├── message.rb
│   │       │   │   ├── news.rb
│   │       │   │   ├── principal.rb
│   │       │   │   ├── project.rb
│   │       │   │   ├── project_custom_field.rb
│   │       │   │   ├── query.rb
│   │       │   │   ├── repository
│   │       │   │   │   ├── bazaar.rb
│   │       │   │   │   ├── cvs.rb
│   │       │   │   │   ├── darcs.rb
│   │       │   │   │   ├── filesystem.rb
│   │       │   │   │   ├── git.rb
│   │       │   │   │   ├── mercurial.rb
│   │       │   │   │   └── subversion.rb
│   │       │   │   ├── repository.rb
│   │       │   │   ├── role.rb
│   │       │   │   ├── setting.rb
│   │       │   │   ├── time_entry.rb
│   │       │   │   ├── time_entry_activity.rb
│   │       │   │   ├── time_entry_activity_custom_field.rb
│   │       │   │   ├── time_entry_custom_field.rb
│   │       │   │   ├── time_entry_query.rb
│   │       │   │   ├── token.rb
│   │       │   │   ├── tracker.rb
│   │       │   │   ├── user.rb
│   │       │   │   ├── user_custom_field.rb
│   │       │   │   ├── user_preference.rb
│   │       │   │   ├── version.rb
│   │       │   │   ├── version_custom_field.rb
│   │       │   │   ├── watcher.rb
│   │       │   │   ├── wiki.rb
│   │       │   │   ├── wiki_content.rb
│   │       │   │   ├── wiki_page.rb
│   │       │   │   ├── wiki_redirect.rb
│   │       │   │   ├── workflow_permission.rb
│   │       │   │   ├── workflow_rule.rb
│   │       │   │   └── workflow_transition.rb
│   │       │   └── views
│   │       │       ├── account
│   │       │       │   ├── login.html.erb
│   │       │       │   ├── logout.html.erb
│   │       │       │   ├── lost_password.html.erb
│   │       │       │   ├── password_recovery.html.erb
│   │       │       │   └── register.html.erb
│   │       │       ├── activities
│   │       │       │   └── index.html.erb
│   │       │       ├── admin
│   │       │       │   ├── _menu.html.erb
│   │       │       │   ├── _no_data.html.erb
│   │       │       │   ├── index.html.erb
│   │       │       │   ├── info.html.erb
│   │       │       │   ├── plugins.html.erb
│   │       │       │   └── projects.html.erb
│   │       │       ├── attachments
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── _links.html.erb
│   │       │       │   ├── destroy.js.erb
│   │       │       │   ├── diff.html.erb
│   │       │       │   ├── edit_all.html.erb
│   │       │       │   ├── file.html.erb
│   │       │       │   ├── image.html.erb
│   │       │       │   ├── other.html.erb
│   │       │       │   ├── show.api.rsb
│   │       │       │   ├── upload.api.rsb
│   │       │       │   └── upload.js.erb
│   │       │       ├── auth_sources
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── _form_auth_source_ldap.html.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── index.html.erb
│   │       │       │   └── new.html.erb
│   │       │       ├── auto_completes
│   │       │       │   └── issues.html.erb
│   │       │       ├── boards
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── index.html.erb
│   │       │       │   ├── new.html.erb
│   │       │       │   └── show.html.erb
│   │       │       ├── calendars
│   │       │       │   └── show.html.erb
│   │       │       ├── common
│   │       │       │   ├── _calendar.html.erb
│   │       │       │   ├── _diff.html.erb
│   │       │       │   ├── _file.html.erb
│   │       │       │   ├── _image.html.erb
│   │       │       │   ├── _other.html.erb
│   │       │       │   ├── _preview.html.erb
│   │       │       │   ├── _tabs.html.erb
│   │       │       │   ├── error.html.erb
│   │       │       │   ├── error_messages.api.rsb
│   │       │       │   └── feed.atom.builder
│   │       │       ├── context_menus
│   │       │       │   ├── issues.html.erb
│   │       │       │   └── time_entries.html.erb
│   │       │       ├── custom_field_enumerations
│   │       │       │   ├── create.js.erb
│   │       │       │   ├── destroy.html.erb
│   │       │       │   └── index.html.erb
│   │       │       ├── custom_fields
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── _index.html.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── formats
│   │       │       │   │   ├── _attachment.html.erb
│   │       │       │   │   ├── _bool.html.erb
│   │       │       │   │   ├── _date.html.erb
│   │       │       │   │   ├── _enumeration.erb
│   │       │       │   │   ├── _link.html.erb
│   │       │       │   │   ├── _list.html.erb
│   │       │       │   │   ├── _numeric.html.erb
│   │       │       │   │   ├── _regexp.html.erb
│   │       │       │   │   ├── _string.html.erb
│   │       │       │   │   ├── _text.html.erb
│   │       │       │   │   ├── _user.html.erb
│   │       │       │   │   └── _version.html.erb
│   │       │       │   ├── index.api.rsb
│   │       │       │   ├── index.html.erb
│   │       │       │   ├── new.html.erb
│   │       │       │   ├── new.js.erb
│   │       │       │   └── select_type.html.erb
│   │       │       ├── documents
│   │       │       │   ├── _document.html.erb
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── index.html.erb
│   │       │       │   ├── new.html.erb
│   │       │       │   └── show.html.erb
│   │       │       ├── email_addresses
│   │       │       │   ├── _index.html.erb
│   │       │       │   ├── index.html.erb
│   │       │       │   └── index.js.erb
│   │       │       ├── enumerations
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── destroy.html.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── index.api.rsb
│   │       │       │   ├── index.html.erb
│   │       │       │   └── new.html.erb
│   │       │       ├── files
│   │       │       │   ├── index.api.rsb
│   │       │       │   ├── index.html.erb
│   │       │       │   └── new.html.erb
│   │       │       ├── gantts
│   │       │       │   └── show.html.erb
│   │       │       ├── groups
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── _general.html.erb
│   │       │       │   ├── _memberships.html.erb
│   │       │       │   ├── _new_users_form.html.erb
│   │       │       │   ├── _new_users_modal.html.erb
│   │       │       │   ├── _users.html.erb
│   │       │       │   ├── add_users.js.erb
│   │       │       │   ├── autocomplete_for_user.js.erb
│   │       │       │   ├── destroy_membership.js.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── edit_membership.js.erb
│   │       │       │   ├── index.api.rsb
│   │       │       │   ├── index.html.erb
│   │       │       │   ├── new.html.erb
│   │       │       │   ├── new_users.html.erb
│   │       │       │   ├── new_users.js.erb
│   │       │       │   ├── remove_user.js.erb
│   │       │       │   ├── show.api.rsb
│   │       │       │   └── show.html.erb
│   │       │       ├── imports
│   │       │       │   ├── _fields_mapping.html.erb
│   │       │       │   ├── mapping.html.erb
│   │       │       │   ├── mapping.js.erb
│   │       │       │   ├── new.html.erb
│   │       │       │   ├── run.html.erb
│   │       │       │   ├── run.js.erb
│   │       │       │   ├── settings.html.erb
│   │       │       │   └── show.html.erb
│   │       │       ├── issue_categories
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── _new_modal.html.erb
│   │       │       │   ├── create.js.erb
│   │       │       │   ├── destroy.html.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── index.api.rsb
│   │       │       │   ├── new.html.erb
│   │       │       │   ├── new.js.erb
│   │       │       │   └── show.api.rsb
│   │       │       ├── issue_relations
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── create.js.erb
│   │       │       │   ├── destroy.js.erb
│   │       │       │   ├── index.api.rsb
│   │       │       │   └── show.api.rsb
│   │       │       ├── issue_statuses
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── index.api.rsb
│   │       │       │   ├── index.html.erb
│   │       │       │   └── new.html.erb
│   │       │       ├── issues
│   │       │       │   ├── _action_menu.html.erb
│   │       │       │   ├── _attributes.html.erb
│   │       │       │   ├── _changesets.html.erb
│   │       │       │   ├── _conflict.html.erb
│   │       │       │   ├── _edit.html.erb
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── _form_custom_fields.html.erb
│   │       │       │   ├── _history.html.erb
│   │       │       │   ├── _list.html.erb
│   │       │       │   ├── _relations.html.erb
│   │       │       │   ├── _sidebar.html.erb
│   │       │       │   ├── _watchers_form.html.erb
│   │       │       │   ├── bulk_edit.html.erb
│   │       │       │   ├── bulk_edit.js.erb
│   │       │       │   ├── destroy.html.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── edit.js.erb
│   │       │       │   ├── index.api.rsb
│   │       │       │   ├── index.html.erb
│   │       │       │   ├── index.pdf.erb
│   │       │       │   ├── new.html.erb
│   │       │       │   ├── new.js.erb
│   │       │       │   ├── show.api.rsb
│   │       │       │   ├── show.html.erb
│   │       │       │   └── show.pdf.erb
│   │       │       ├── journals
│   │       │       │   ├── _notes_form.html.erb
│   │       │       │   ├── diff.html.erb
│   │       │       │   ├── edit.js.erb
│   │       │       │   ├── index.builder
│   │       │       │   ├── new.js.erb
│   │       │       │   └── update.js.erb
│   │       │       ├── layouts
│   │       │       │   ├── _file.html.erb
│   │       │       │   ├── admin.html.erb
│   │       │       │   ├── base.html.erb
│   │       │       │   ├── mailer.html.erb
│   │       │       │   └── mailer.text.erb
│   │       │       ├── mail_handler
│   │       │       │   └── new.html.erb
│   │       │       ├── mailer
│   │       │       │   ├── _issue.html.erb
│   │       │       │   ├── _issue.text.erb
│   │       │       │   ├── account_activated.html.erb
│   │       │       │   ├── account_activated.text.erb
│   │       │       │   ├── account_activation_request.html.erb
│   │       │       │   ├── account_activation_request.text.erb
│   │       │       │   ├── account_information.html.erb
│   │       │       │   ├── account_information.text.erb
│   │       │       │   ├── attachments_added.html.erb
│   │       │       │   ├── attachments_added.text.erb
│   │       │       │   ├── document_added.html.erb
│   │       │       │   ├── document_added.text.erb
│   │       │       │   ├── issue_add.html.erb
│   │       │       │   ├── issue_add.text.erb
│   │       │       │   ├── issue_edit.html.erb
│   │       │       │   ├── issue_edit.text.erb
│   │       │       │   ├── lost_password.html.erb
│   │       │       │   ├── lost_password.text.erb
│   │       │       │   ├── message_posted.html.erb
│   │       │       │   ├── message_posted.text.erb
│   │       │       │   ├── news_added.html.erb
│   │       │       │   ├── news_added.text.erb
│   │       │       │   ├── news_comment_added.html.erb
│   │       │       │   ├── news_comment_added.text.erb
│   │       │       │   ├── register.html.erb
│   │       │       │   ├── register.text.erb
│   │       │       │   ├── reminder.html.erb
│   │       │       │   ├── reminder.text.erb
│   │       │       │   ├── security_notification.html.erb
│   │       │       │   ├── security_notification.text.erb
│   │       │       │   ├── settings_updated.html.erb
│   │       │       │   ├── settings_updated.text.erb
│   │       │       │   ├── test_email.html.erb
│   │       │       │   ├── test_email.text.erb
│   │       │       │   ├── wiki_content_added.html.erb
│   │       │       │   ├── wiki_content_added.text.erb
│   │       │       │   ├── wiki_content_updated.html.erb
│   │       │       │   └── wiki_content_updated.text.erb
│   │       │       ├── members
│   │       │       │   ├── _edit.html.erb
│   │       │       │   ├── _new_form.html.erb
│   │       │       │   ├── _new_modal.html.erb
│   │       │       │   ├── autocomplete.js.erb
│   │       │       │   ├── create.js.erb
│   │       │       │   ├── destroy.js.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── edit.js.erb
│   │       │       │   ├── index.api.rsb
│   │       │       │   ├── new.html.erb
│   │       │       │   ├── new.js.erb
│   │       │       │   ├── show.api.rsb
│   │       │       │   └── update.js.erb
│   │       │       ├── messages
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── new.html.erb
│   │       │       │   ├── quote.js.erb
│   │       │       │   └── show.html.erb
│   │       │       ├── my
│   │       │       │   ├── _sidebar.html.erb
│   │       │       │   ├── account.html.erb
│   │       │       │   ├── add_block.js.erb
│   │       │       │   ├── blocks
│   │       │       │   │   ├── _calendar.html.erb
│   │       │       │   │   ├── _documents.html.erb
│   │       │       │   │   ├── _issue_query_selection.html.erb
│   │       │       │   │   ├── _issues.erb
│   │       │       │   │   ├── _news.html.erb
│   │       │       │   │   └── _timelog.html.erb
│   │       │       │   ├── destroy.html.erb
│   │       │       │   ├── page.html.erb
│   │       │       │   ├── password.html.erb
│   │       │       │   ├── remove_block.js.erb
│   │       │       │   ├── show_api_key.html.erb
│   │       │       │   ├── show_api_key.js.erb
│   │       │       │   └── update_page.js.erb
│   │       │       ├── news
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── _news.html.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── index.api.rsb
│   │       │       │   ├── index.html.erb
│   │       │       │   ├── new.html.erb
│   │       │       │   └── show.html.erb
│   │       │       ├── previews
│   │       │       │   └── issue.html.erb
│   │       │       ├── principal_memberships
│   │       │       │   ├── _edit.html.erb
│   │       │       │   ├── _index.html.erb
│   │       │       │   ├── _new_form.html.erb
│   │       │       │   ├── _new_modal.html.erb
│   │       │       │   ├── create.js.erb
│   │       │       │   ├── destroy.js.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── edit.js.erb
│   │       │       │   ├── new.html.erb
│   │       │       │   ├── new.js.erb
│   │       │       │   └── update.js.erb
│   │       │       ├── projects
│   │       │       │   ├── _edit.html.erb
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── _members_box.html.erb
│   │       │       │   ├── autocomplete.js.erb
│   │       │       │   ├── copy.html.erb
│   │       │       │   ├── destroy.html.erb
│   │       │       │   ├── index.api.rsb
│   │       │       │   ├── index.html.erb
│   │       │       │   ├── new.html.erb
│   │       │       │   ├── settings
│   │       │       │   │   ├── _activities.html.erb
│   │       │       │   │   ├── _boards.html.erb
│   │       │       │   │   ├── _issue_categories.html.erb
│   │       │       │   │   ├── _members.html.erb
│   │       │       │   │   ├── _modules.html.erb
│   │       │       │   │   ├── _repositories.html.erb
│   │       │       │   │   ├── _versions.html.erb
│   │       │       │   │   └── _wiki.html.erb
│   │       │       │   ├── settings.html.erb
│   │       │       │   ├── show.api.rsb
│   │       │       │   └── show.html.erb
│   │       │       ├── queries
│   │       │       │   ├── _columns.html.erb
│   │       │       │   ├── _filters.html.erb
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── _query_form.html.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── index.api.rsb
│   │       │       │   ├── index.html.erb
│   │       │       │   └── new.html.erb
│   │       │       ├── reports
│   │       │       │   ├── _details.html.erb
│   │       │       │   ├── _simple.html.erb
│   │       │       │   ├── issue_report.html.erb
│   │       │       │   └── issue_report_details.html.erb
│   │       │       ├── repositories
│   │       │       │   ├── _breadcrumbs.html.erb
│   │       │       │   ├── _changeset.html.erb
│   │       │       │   ├── _dir_list.html.erb
│   │       │       │   ├── _dir_list_content.html.erb
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── _link_to_functions.html.erb
│   │       │       │   ├── _navigation.html.erb
│   │       │       │   ├── _related_issues.html.erb
│   │       │       │   ├── _revision_graph.html.erb
│   │       │       │   ├── _revisions.html.erb
│   │       │       │   ├── add_related_issue.js.erb
│   │       │       │   ├── annotate.html.erb
│   │       │       │   ├── changes.html.erb
│   │       │       │   ├── committers.html.erb
│   │       │       │   ├── diff.html.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── entry.html.erb
│   │       │       │   ├── new.html.erb
│   │       │       │   ├── new.js.erb
│   │       │       │   ├── remove_related_issue.js.erb
│   │       │       │   ├── revision.html.erb
│   │       │       │   ├── revisions.html.erb
│   │       │       │   ├── show.html.erb
│   │       │       │   └── stats.html.erb
│   │       │       ├── roles
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── index.api.rsb
│   │       │       │   ├── index.html.erb
│   │       │       │   ├── new.html.erb
│   │       │       │   ├── permissions.html.erb
│   │       │       │   └── show.api.rsb
│   │       │       ├── search
│   │       │       │   ├── index.api.rsb
│   │       │       │   └── index.html.erb
│   │       │       ├── settings
│   │       │       │   ├── _api.html.erb
│   │       │       │   ├── _attachments.html.erb
│   │       │       │   ├── _authentication.html.erb
│   │       │       │   ├── _display.html.erb
│   │       │       │   ├── _general.html.erb
│   │       │       │   ├── _issues.html.erb
│   │       │       │   ├── _mail_handler.html.erb
│   │       │       │   ├── _notifications.html.erb
│   │       │       │   ├── _projects.html.erb
│   │       │       │   ├── _repositories.html.erb
│   │       │       │   ├── _timelog.html.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   └── plugin.html.erb
│   │       │       ├── sudo_mode
│   │       │       │   ├── _new_modal.html.erb
│   │       │       │   ├── new.html.erb
│   │       │       │   └── new.js.erb
│   │       │       ├── timelog
│   │       │       │   ├── _date_range.html.erb
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── _list.html.erb
│   │       │       │   ├── _report_criteria.html.erb
│   │       │       │   ├── bulk_edit.html.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── edit.js.erb
│   │       │       │   ├── index.api.rsb
│   │       │       │   ├── index.html.erb
│   │       │       │   ├── new.html.erb
│   │       │       │   ├── new.js.erb
│   │       │       │   ├── report.html.erb
│   │       │       │   └── show.api.rsb
│   │       │       ├── trackers
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── fields.html.erb
│   │       │       │   ├── index.api.rsb
│   │       │       │   ├── index.html.erb
│   │       │       │   └── new.html.erb
│   │       │       ├── users
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── _general.html.erb
│   │       │       │   ├── _groups.html.erb
│   │       │       │   ├── _mail_notifications.html.erb
│   │       │       │   ├── _memberships.html.erb
│   │       │       │   ├── _preferences.html.erb
│   │       │       │   ├── destroy_membership.js.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── edit_membership.js.erb
│   │       │       │   ├── index.api.rsb
│   │       │       │   ├── index.html.erb
│   │       │       │   ├── new.html.erb
│   │       │       │   ├── show.api.rsb
│   │       │       │   └── show.html.erb
│   │       │       ├── versions
│   │       │       │   ├── _form.html.erb
│   │       │       │   ├── _issue_counts.html.erb
│   │       │       │   ├── _new_modal.html.erb
│   │       │       │   ├── _overview.html.erb
│   │       │       │   ├── create.js.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── index.api.rsb
│   │       │       │   ├── index.html.erb
│   │       │       │   ├── new.html.erb
│   │       │       │   ├── new.js.erb
│   │       │       │   ├── show.api.rsb
│   │       │       │   ├── show.html.erb
│   │       │       │   └── status_by.js.erb
│   │       │       ├── watchers
│   │       │       │   ├── _new.html.erb
│   │       │       │   ├── _set_watcher.js.erb
│   │       │       │   ├── _watchers.html.erb
│   │       │       │   ├── append.js.erb
│   │       │       │   ├── autocomplete_for_user.html.erb
│   │       │       │   ├── create.js.erb
│   │       │       │   ├── destroy.js.erb
│   │       │       │   └── new.js.erb
│   │       │       ├── welcome
│   │       │       │   ├── index.html.erb
│   │       │       │   └── robots.html.erb
│   │       │       ├── wiki
│   │       │       │   ├── _content.html.erb
│   │       │       │   ├── _new_modal.html.erb
│   │       │       │   ├── _sidebar.html.erb
│   │       │       │   ├── annotate.html.erb
│   │       │       │   ├── date_index.html.erb
│   │       │       │   ├── destroy.html.erb
│   │       │       │   ├── diff.html.erb
│   │       │       │   ├── edit.html.erb
│   │       │       │   ├── export.html.erb
│   │       │       │   ├── export.pdf.erb
│   │       │       │   ├── export_multiple.html.erb
│   │       │       │   ├── history.html.erb
│   │       │       │   ├── index.api.rsb
│   │       │       │   ├── index.html.erb
│   │       │       │   ├── new.html.erb
│   │       │       │   ├── new.js.erb
│   │       │       │   ├── rename.html.erb
│   │       │       │   ├── show.api.rsb
│   │       │       │   ├── show.html.erb
│   │       │       │   └── show.pdf.erb
│   │       │       ├── wikis
│   │       │       │   ├── destroy.html.erb
│   │       │       │   └── edit.js.erb
│   │       │       └── workflows
│   │       │           ├── _action_menu.html.erb
│   │       │           ├── _form.html.erb
│   │       │           ├── copy.html.erb
│   │       │           ├── edit.html.erb
│   │       │           ├── index.html.erb
│   │       │           └── permissions.html.erb
│   │       ├── appveyor.yml
│   │       ├── bin
│   │       │   ├── about
│   │       │   ├── bundle
│   │       │   ├── rails
│   │       │   └── rake
│   │       ├── config
│   │       │   ├── additional_environment.rb.example
│   │       │   ├── application.rb
│   │       │   ├── boot.rb
│   │       │   ├── configuration.yml.example
│   │       │   ├── database.yml.example
│   │       │   ├── environment.rb
│   │       │   ├── environments
│   │       │   │   ├── development.rb
│   │       │   │   ├── production.rb
│   │       │   │   ├── test.rb
│   │       │   │   ├── test_pgsql.rb
│   │       │   │   └── test_sqlite3.rb
│   │       │   ├── initializers
│   │       │   │   ├── 00-core_plugins.rb
│   │       │   │   ├── 10-patches.rb
│   │       │   │   ├── 20-mime_types.rb
│   │       │   │   ├── 30-redmine.rb
│   │       │   │   ├── backtrace_silencers.rb
│   │       │   │   └── inflections.rb
│   │       │   ├── locales
│   │       │   │   ├── ar.yml
│   │       │   │   ├── az.yml
│   │       │   │   ├── bg.yml
│   │       │   │   ├── bs.yml
│   │       │   │   ├── ca.yml
│   │       │   │   ├── cs.yml
│   │       │   │   ├── da.yml
│   │       │   │   ├── de.yml
│   │       │   │   ├── el.yml
│   │       │   │   ├── en-GB.yml
│   │       │   │   ├── en.yml
│   │       │   │   ├── es-PA.yml
│   │       │   │   ├── es.yml
│   │       │   │   ├── et.yml
│   │       │   │   ├── eu.yml
│   │       │   │   ├── fa.yml
│   │       │   │   ├── fi.yml
│   │       │   │   ├── fr.yml
│   │       │   │   ├── gl.yml
│   │       │   │   ├── he.yml
│   │       │   │   ├── hr.yml
│   │       │   │   ├── hu.yml
│   │       │   │   ├── id.yml
│   │       │   │   ├── it.yml
│   │       │   │   ├── ja.yml
│   │       │   │   ├── ko.yml
│   │       │   │   ├── lt.yml
│   │       │   │   ├── lv.yml
│   │       │   │   ├── mk.yml
│   │       │   │   ├── mn.yml
│   │       │   │   ├── nl.yml
│   │       │   │   ├── no.yml
│   │       │   │   ├── pl.yml
│   │       │   │   ├── pt-BR.yml
│   │       │   │   ├── pt.yml
│   │       │   │   ├── ro.yml
│   │       │   │   ├── ru.yml
│   │       │   │   ├── sk.yml
│   │       │   │   ├── sl.yml
│   │       │   │   ├── sq.yml
│   │       │   │   ├── sr-YU.yml
│   │       │   │   ├── sr.yml
│   │       │   │   ├── sv.yml
│   │       │   │   ├── th.yml
│   │       │   │   ├── tr.yml
│   │       │   │   ├── uk.yml
│   │       │   │   ├── vi.yml
│   │       │   │   ├── zh-TW.yml
│   │       │   │   └── zh.yml
│   │       │   ├── routes.rb
│   │       │   └── settings.yml
│   │       ├── config.ru
│   │       ├── db
│   │       │   └── migrate
│   │       │       ├── 001_setup.rb
│   │       │       ├── 002_issue_move.rb
│   │       │       ├── 003_issue_add_note.rb
│   │       │       ├── 004_export_pdf.rb
│   │       │       ├── 005_issue_start_date.rb
│   │       │       ├── 006_calendar_and_activity.rb
│   │       │       ├── 007_create_journals.rb
│   │       │       ├── 008_create_user_preferences.rb
│   │       │       ├── 009_add_hide_mail_pref.rb
│   │       │       ├── 010_create_comments.rb
│   │       │       ├── 011_add_news_comments_count.rb
│   │       │       ├── 012_add_comments_permissions.rb
│   │       │       ├── 013_create_queries.rb
│   │       │       ├── 014_add_queries_permissions.rb
│   │       │       ├── 015_create_repositories.rb
│   │       │       ├── 016_add_repositories_permissions.rb
│   │       │       ├── 017_create_settings.rb
│   │       │       ├── 018_set_doc_and_files_notifications.rb
│   │       │       ├── 019_add_issue_status_position.rb
│   │       │       ├── 020_add_role_position.rb
│   │       │       ├── 021_add_tracker_position.rb
│   │       │       ├── 022_serialize_possibles_values.rb
│   │       │       ├── 023_add_tracker_is_in_roadmap.rb
│   │       │       ├── 024_add_roadmap_permission.rb
│   │       │       ├── 025_add_search_permission.rb
│   │       │       ├── 026_add_repository_login_and_password.rb
│   │       │       ├── 027_create_wikis.rb
│   │       │       ├── 028_create_wiki_pages.rb
│   │       │       ├── 029_create_wiki_contents.rb
│   │       │       ├── 030_add_projects_feeds_permissions.rb
│   │       │       ├── 031_add_repository_root_url.rb
│   │       │       ├── 032_create_time_entries.rb
│   │       │       ├── 033_add_timelog_permissions.rb
│   │       │       ├── 034_create_changesets.rb
│   │       │       ├── 035_create_changes.rb
│   │       │       ├── 036_add_changeset_commit_date.rb
│   │       │       ├── 037_add_project_identifier.rb
│   │       │       ├── 038_add_custom_field_is_filter.rb
│   │       │       ├── 039_create_watchers.rb
│   │       │       ├── 040_create_changesets_issues.rb
│   │       │       ├── 041_rename_comment_to_comments.rb
│   │       │       ├── 042_create_issue_relations.rb
│   │       │       ├── 043_add_relations_permissions.rb
│   │       │       ├── 044_set_language_length_to_five.rb
│   │       │       ├── 045_create_boards.rb
│   │       │       ├── 046_create_messages.rb
│   │       │       ├── 047_add_boards_permissions.rb
│   │       │       ├── 048_allow_null_version_effective_date.rb
│   │       │       ├── 049_add_wiki_destroy_page_permission.rb
│   │       │       ├── 050_add_wiki_attachments_permissions.rb
│   │       │       ├── 051_add_project_status.rb
│   │       │       ├── 052_add_changes_revision.rb
│   │       │       ├── 053_add_changes_branch.rb
│   │       │       ├── 054_add_changesets_scmid.rb
│   │       │       ├── 055_add_repositories_type.rb
│   │       │       ├── 056_add_repositories_changes_permission.rb
│   │       │       ├── 057_add_versions_wiki_page_title.rb
│   │       │       ├── 058_add_issue_categories_assigned_to_id.rb
│   │       │       ├── 059_add_roles_assignable.rb
│   │       │       ├── 060_change_changesets_committer_limit.rb
│   │       │       ├── 061_add_roles_builtin.rb
│   │       │       ├── 062_insert_builtin_roles.rb
│   │       │       ├── 063_add_roles_permissions.rb
│   │       │       ├── 064_drop_permissions.rb
│   │       │       ├── 065_add_settings_updated_on.rb
│   │       │       ├── 066_add_custom_value_customized_index.rb
│   │       │       ├── 067_create_wiki_redirects.rb
│   │       │       ├── 068_create_enabled_modules.rb
│   │       │       ├── 069_add_issues_estimated_hours.rb
│   │       │       ├── 070_change_attachments_content_type_limit.rb
│   │       │       ├── 071_add_queries_column_names.rb
│   │       │       ├── 072_add_enumerations_position.rb
│   │       │       ├── 073_add_enumerations_is_default.rb
│   │       │       ├── 074_add_auth_sources_tls.rb
│   │       │       ├── 075_add_members_mail_notification.rb
│   │       │       ├── 076_allow_null_position.rb
│   │       │       ├── 077_remove_issue_statuses_html_color.rb
│   │       │       ├── 078_add_custom_fields_position.rb
│   │       │       ├── 079_add_user_preferences_time_zone.rb
│   │       │       ├── 080_add_users_type.rb
│   │       │       ├── 081_create_projects_trackers.rb
│   │       │       ├── 082_add_messages_locked.rb
│   │       │       ├── 083_add_messages_sticky.rb
│   │       │       ├── 084_change_auth_sources_account_limit.rb
│   │       │       ├── 085_add_role_tracker_old_status_index_to_workflows.rb
│   │       │       ├── 086_add_custom_fields_searchable.rb
│   │       │       ├── 087_change_projects_description_to_text.rb
│   │       │       ├── 088_add_custom_fields_default_value.rb
│   │       │       ├── 089_add_attachments_description.rb
│   │       │       ├── 090_change_versions_name_limit.rb
│   │       │       ├── 091_change_changesets_revision_to_string.rb
│   │       │       ├── 092_change_changes_from_revision_to_string.rb
│   │       │       ├── 093_add_wiki_pages_protected.rb
│   │       │       ├── 094_change_projects_homepage_limit.rb
│   │       │       ├── 095_add_wiki_pages_parent_id.rb
│   │       │       ├── 096_add_commit_access_permission.rb
│   │       │       ├── 097_add_view_wiki_edits_permission.rb
│   │       │       ├── 098_set_topic_authors_as_watchers.rb
│   │       │       ├── 099_add_delete_wiki_pages_attachments_permission.rb
│   │       │       ├── 100_add_changesets_user_id.rb
│   │       │       ├── 101_populate_changesets_user_id.rb
│   │       │       ├── 102_add_custom_fields_editable.rb
│   │       │       ├── 103_set_custom_fields_editable.rb
│   │       │       ├── 104_add_projects_lft_and_rgt.rb
│   │       │       ├── 105_build_projects_tree.rb
│   │       │       ├── 106_remove_projects_projects_count.rb
│   │       │       ├── 107_add_open_id_authentication_tables.rb
│   │       │       ├── 108_add_identity_url_to_users.rb
│   │       │       ├── 20090214190337_add_watchers_user_id_type_index.rb
│   │       │       ├── 20090312172426_add_queries_sort_criteria.rb
│   │       │       ├── 20090312194159_add_projects_trackers_unique_index.rb
│   │       │       ├── 20090318181151_extend_settings_name.rb
│   │       │       ├── 20090323224724_add_type_to_enumerations.rb
│   │       │       ├── 20090401221305_update_enumerations_to_sti.rb
│   │       │       ├── 20090401231134_add_active_field_to_enumerations.rb
│   │       │       ├── 20090403001910_add_project_to_enumerations.rb
│   │       │       ├── 20090406161854_add_parent_id_to_enumerations.rb
│   │       │       ├── 20090425161243_add_queries_group_by.rb
│   │       │       ├── 20090503121501_create_member_roles.rb
│   │       │       ├── 20090503121505_populate_member_roles.rb
│   │       │       ├── 20090503121510_drop_members_role_id.rb
│   │       │       ├── 20090614091200_fix_messages_sticky_null.rb
│   │       │       ├── 20090704172350_populate_users_type.rb
│   │       │       ├── 20090704172355_create_groups_users.rb
│   │       │       ├── 20090704172358_add_member_roles_inherited_from.rb
│   │       │       ├── 20091010093521_fix_users_custom_values.rb
│   │       │       ├── 20091017212227_add_missing_indexes_to_workflows.rb
│   │       │       ├── 20091017212457_add_missing_indexes_to_custom_fields_projects.rb
│   │       │       ├── 20091017212644_add_missing_indexes_to_messages.rb
│   │       │       ├── 20091017212938_add_missing_indexes_to_repositories.rb
│   │       │       ├── 20091017213027_add_missing_indexes_to_comments.rb
│   │       │       ├── 20091017213113_add_missing_indexes_to_enumerations.rb
│   │       │       ├── 20091017213151_add_missing_indexes_to_wiki_pages.rb
│   │       │       ├── 20091017213228_add_missing_indexes_to_watchers.rb
│   │       │       ├── 20091017213257_add_missing_indexes_to_auth_sources.rb
│   │       │       ├── 20091017213332_add_missing_indexes_to_documents.rb
│   │       │       ├── 20091017213444_add_missing_indexes_to_tokens.rb
│   │       │       ├── 20091017213536_add_missing_indexes_to_changesets.rb
│   │       │       ├── 20091017213642_add_missing_indexes_to_issue_categories.rb
│   │       │       ├── 20091017213716_add_missing_indexes_to_member_roles.rb
│   │       │       ├── 20091017213757_add_missing_indexes_to_boards.rb
│   │       │       ├── 20091017213835_add_missing_indexes_to_user_preferences.rb
│   │       │       ├── 20091017213910_add_missing_indexes_to_issues.rb
│   │       │       ├── 20091017214015_add_missing_indexes_to_members.rb
│   │       │       ├── 20091017214107_add_missing_indexes_to_custom_fields.rb
│   │       │       ├── 20091017214136_add_missing_indexes_to_queries.rb
│   │       │       ├── 20091017214236_add_missing_indexes_to_time_entries.rb
│   │       │       ├── 20091017214308_add_missing_indexes_to_news.rb
│   │       │       ├── 20091017214336_add_missing_indexes_to_users.rb
│   │       │       ├── 20091017214406_add_missing_indexes_to_attachments.rb
│   │       │       ├── 20091017214440_add_missing_indexes_to_wiki_contents.rb
│   │       │       ├── 20091017214519_add_missing_indexes_to_custom_values.rb
│   │       │       ├── 20091017214611_add_missing_indexes_to_journals.rb
│   │       │       ├── 20091017214644_add_missing_indexes_to_issue_relations.rb
│   │       │       ├── 20091017214720_add_missing_indexes_to_wiki_redirects.rb
│   │       │       ├── 20091017214750_add_missing_indexes_to_custom_fields_trackers.rb
│   │       │       ├── 20091025163651_add_activity_indexes.rb
│   │       │       ├── 20091108092559_add_versions_status.rb
│   │       │       ├── 20091114105931_add_view_issues_permission.rb
│   │       │       ├── 20091123212029_add_default_done_ratio_to_issue_status.rb
│   │       │       ├── 20091205124427_add_versions_sharing.rb
│   │       │       ├── 20091220183509_add_lft_and_rgt_indexes_to_projects.rb
│   │       │       ├── 20091220183727_add_index_to_settings_name.rb
│   │       │       ├── 20091220184736_add_indexes_to_issue_status.rb
│   │       │       ├── 20091225164732_remove_enumerations_opt.rb
│   │       │       ├── 20091227112908_change_wiki_contents_text_limit.rb
│   │       │       ├── 20100129193402_change_users_mail_notification_to_string.rb
│   │       │       ├── 20100129193813_update_mail_notification_values.rb
│   │       │       ├── 20100221100219_add_index_on_changesets_scmid.rb
│   │       │       ├── 20100313132032_add_issues_nested_sets_columns.rb
│   │       │       ├── 20100313171051_add_index_on_issues_nested_set.rb
│   │       │       ├── 20100705164950_change_changes_path_length_limit.rb
│   │       │       ├── 20100819172912_enable_calendar_and_gantt_modules_where_appropriate.rb
│   │       │       ├── 20101104182107_add_unique_index_on_members.rb
│   │       │       ├── 20101107130441_add_custom_fields_visible.rb
│   │       │       ├── 20101114115114_change_projects_name_limit.rb
│   │       │       ├── 20101114115359_change_projects_identifier_limit.rb
│   │       │       ├── 20110220160626_add_workflows_assignee_and_author.rb
│   │       │       ├── 20110223180944_add_users_salt.rb
│   │       │       ├── 20110223180953_salt_user_passwords.rb
│   │       │       ├── 20110224000000_add_repositories_path_encoding.rb
│   │       │       ├── 20110226120112_change_repositories_password_limit.rb
│   │       │       ├── 20110226120132_change_auth_sources_account_password_limit.rb
│   │       │       ├── 20110227125750_change_journal_details_values_to_text.rb
│   │       │       ├── 20110228000000_add_repositories_log_encoding.rb
│   │       │       ├── 20110228000100_copy_repositories_log_encoding.rb
│   │       │       ├── 20110401192910_add_index_to_users_type.rb
│   │       │       ├── 20110408103312_add_roles_issues_visibility.rb
│   │       │       ├── 20110412065600_add_issues_is_private.rb
│   │       │       ├── 20110511000000_add_repositories_extra_info.rb
│   │       │       ├── 20110902000000_create_changeset_parents.rb
│   │       │       ├── 20111201201315_add_unique_index_to_issue_relations.rb
│   │       │       ├── 20120115143024_add_repositories_identifier.rb
│   │       │       ├── 20120115143100_add_repositories_is_default.rb
│   │       │       ├── 20120115143126_set_default_repositories.rb
│   │       │       ├── 20120127174243_add_custom_fields_multiple.rb
│   │       │       ├── 20120205111326_change_users_login_limit.rb
│   │       │       ├── 20120223110929_change_attachments_container_defaults.rb
│   │       │       ├── 20120301153455_add_auth_sources_filter.rb
│   │       │       ├── 20120422150750_change_repositories_to_full_sti.rb
│   │       │       ├── 20120705074331_add_trackers_fields_bits.rb
│   │       │       ├── 20120707064544_add_auth_sources_timeout.rb
│   │       │       ├── 20120714122000_add_workflows_type.rb
│   │       │       ├── 20120714122100_update_workflows_to_sti.rb
│   │       │       ├── 20120714122200_add_workflows_rule_fields.rb
│   │       │       ├── 20120731164049_add_boards_parent_id.rb
│   │       │       ├── 20120930112914_add_journals_private_notes.rb
│   │       │       ├── 20121026002032_add_enumerations_position_name.rb
│   │       │       ├── 20121026003537_populate_enumerations_position_name.rb
│   │       │       ├── 20121209123234_add_queries_type.rb
│   │       │       ├── 20121209123358_update_queries_to_sti.rb
│   │       │       ├── 20121213084931_add_attachments_disk_directory.rb
│   │       │       ├── 20130110122628_split_documents_permissions.rb
│   │       │       ├── 20130201184705_add_unique_index_on_tokens_value.rb
│   │       │       ├── 20130202090625_add_projects_inherit_members.rb
│   │       │       ├── 20130207175206_add_unique_index_on_custom_fields_trackers.rb
│   │       │       ├── 20130207181455_add_unique_index_on_custom_fields_projects.rb
│   │       │       ├── 20130215073721_change_users_lastname_length_to_255.rb
│   │       │       ├── 20130215111127_add_issues_closed_on.rb
│   │       │       ├── 20130215111141_populate_issues_closed_on.rb
│   │       │       ├── 20130217094251_remove_issues_default_fk_values.rb
│   │       │       ├── 20130602092539_create_queries_roles.rb
│   │       │       ├── 20130710182539_add_queries_visibility.rb
│   │       │       ├── 20130713104233_create_custom_fields_roles.rb
│   │       │       ├── 20130713111657_add_queries_options.rb
│   │       │       ├── 20130729070143_add_users_must_change_passwd.rb
│   │       │       ├── 20130911193200_remove_eols_from_attachments_filename.rb
│   │       │       ├── 20131004113137_support_for_multiple_commit_keywords.rb
│   │       │       ├── 20131005100610_add_repositories_created_on.rb
│   │       │       ├── 20131124175346_add_custom_fields_format_store.rb
│   │       │       ├── 20131210180802_add_custom_fields_description.rb
│   │       │       ├── 20131214094309_remove_custom_fields_min_max_length_default_values.rb
│   │       │       ├── 20131215104612_store_relation_type_in_journal_details.rb
│   │       │       ├── 20131218183023_delete_orphan_time_entries_custom_values.rb
│   │       │       ├── 20140228130325_change_changesets_comments_limit.rb
│   │       │       ├── 20140903143914_add_password_changed_at_to_user.rb
│   │       │       ├── 20140920094058_insert_builtin_groups.rb
│   │       │       ├── 20141029181752_add_trackers_default_status_id.rb
│   │       │       ├── 20141029181824_remove_issue_statuses_is_default.rb
│   │       │       ├── 20141109112308_add_roles_users_visibility.rb
│   │       │       ├── 20141122124142_add_wiki_redirects_redirects_to_wiki_id.rb
│   │       │       ├── 20150113194759_create_email_addresses.rb
│   │       │       ├── 20150113211532_populate_email_addresses.rb
│   │       │       ├── 20150113213922_remove_users_mail.rb
│   │       │       ├── 20150113213955_add_email_addresses_user_id_index.rb
│   │       │       ├── 20150208105930_replace_move_issues_permission.rb
│   │       │       ├── 20150510083747_change_documents_title_limit.rb
│   │       │       ├── 20150525103953_clear_estimated_hours_on_parent_issues.rb
│   │       │       ├── 20150526183158_add_roles_time_entries_visibility.rb
│   │       │       ├── 20150528084820_add_roles_all_roles_managed.rb
│   │       │       ├── 20150528092912_create_roles_managed_roles.rb
│   │       │       ├── 20150528093249_add_unique_index_on_roles_managed_roles.rb
│   │       │       ├── 20150725112753_insert_allowed_statuses_for_new_issues.rb
│   │       │       ├── 20150730122707_create_imports.rb
│   │       │       ├── 20150730122735_create_import_items.rb
│   │       │       ├── 20150921204850_change_time_entries_comments_limit_to_1024.rb
│   │       │       ├── 20150921210243_change_wiki_contents_comments_limit_to_1024.rb
│   │       │       ├── 20151020182334_change_attachments_filesize_limit_to_8.rb
│   │       │       ├── 20151020182731_fix_comma_in_user_format_setting_value.rb
│   │       │       ├── 20151021184614_change_issue_categories_name_limit_to_60.rb
│   │       │       ├── 20151021185456_change_auth_sources_filter_to_text.rb
│   │       │       ├── 20151021190616_change_user_preferences_hide_mail_default_to_true.rb
│   │       │       ├── 20151024082034_add_tokens_updated_on.rb
│   │       │       ├── 20151025072118_create_custom_field_enumerations.rb
│   │       │       ├── 20151031095005_add_projects_default_version_id.rb
│   │       │       ├── 20160404080304_force_password_reset_during_setup.rb
│   │       │       ├── 20160416072926_remove_position_defaults.rb
│   │       │       ├── 20160529063352_add_roles_settings.rb
│   │       │       ├── 20161001122012_add_tracker_id_index_to_workflows.rb
│   │       │       ├── 20161002133421_add_index_on_member_roles_inherited_from.rb
│   │       │       ├── 20161010081301_change_issues_description_limit.rb
│   │       │       ├── 20161010081528_change_journal_details_value_limit.rb
│   │       │       ├── 20161010081600_change_journals_notes_limit.rb
│   │       │       ├── 20161126094932_add_index_on_changesets_issues_issue_id.rb
│   │       │       ├── 20161220091118_add_index_on_issues_parent_id.rb
│   │       │       ├── 20170207050700_add_index_on_disk_filename_to_attachments.rb
│   │       │       ├── 20170302015225_change_attachments_digest_limit_to_64.rb
│   │       │       ├── 20170309214320_add_project_default_assigned_to_id.rb
│   │       │       ├── 20170320051650_change_repositories_extra_info_limit.rb
│   │       │       ├── 20170418090031_add_view_news_to_all_existing_roles.rb
│   │       │       └── 20170419144536_add_view_messages_to_all_existing_roles.rb
│   │       ├── doc
│   │       │   ├── CHANGELOG
│   │       │   ├── COPYING
│   │       │   ├── INSTALL
│   │       │   ├── README_FOR_APP
│   │       │   ├── RUNNING_TESTS
│   │       │   └── UPGRADING
│   │       ├── extra
│   │       │   ├── mail_handler
│   │       │   │   └── rdm-mailhandler.rb
│   │       │   ├── sample_plugin
│   │       │   │   ├── README
│   │       │   │   ├── app
│   │       │   │   │   ├── controllers
│   │       │   │   │   │   └── example_controller.rb
│   │       │   │   │   ├── models
│   │       │   │   │   │   └── meeting.rb
│   │       │   │   │   └── views
│   │       │   │   │       ├── example
│   │       │   │   │       │   ├── say_goodbye.html.erb
│   │       │   │   │       │   └── say_hello.html.erb
│   │       │   │   │       ├── my
│   │       │   │   │       │   └── blocks
│   │       │   │   │       │       └── _sample_block.html.erb
│   │       │   │   │       └── settings
│   │       │   │   │           └── _sample_plugin_settings.html.erb
│   │       │   │   ├── assets
│   │       │   │   │   ├── images
│   │       │   │   │   │   └── it_works.png
│   │       │   │   │   └── stylesheets
│   │       │   │   │       └── example.css
│   │       │   │   ├── config
│   │       │   │   │   ├── locales
│   │       │   │   │   │   ├── en.yml
│   │       │   │   │   │   └── fr.yml
│   │       │   │   │   └── routes.rb
│   │       │   │   ├── db
│   │       │   │   │   └── migrate
│   │       │   │   │       └── 001_create_meetings.rb
│   │       │   │   ├── init.rb
│   │       │   │   └── test
│   │       │   │       └── integration
│   │       │   │           └── routing_test.rb
│   │       │   └── svn
│   │       │       ├── Redmine.pm
│   │       │       └── reposman.rb
│   │       ├── files
│   │       │   └── delete.me
│   │       ├── lib
│   │       │   ├── SVG
│   │       │   │   ├── GPL.txt
│   │       │   │   ├── Graph
│   │       │   │   │   ├── Bar.rb
│   │       │   │   │   ├── BarBase.rb
│   │       │   │   │   ├── BarHorizontal.rb
│   │       │   │   │   ├── Graph.rb
│   │       │   │   │   ├── Line.rb
│   │       │   │   │   ├── Pie.rb
│   │       │   │   │   ├── Plot.rb
│   │       │   │   │   ├── Schedule.rb
│   │       │   │   │   └── TimeSeries.rb
│   │       │   │   └── LICENSE.txt
│   │       │   ├── diff.rb
│   │       │   ├── generators
│   │       │   │   ├── redmine_plugin
│   │       │   │   │   ├── USAGE
│   │       │   │   │   ├── redmine_plugin_generator.rb
│   │       │   │   │   └── templates
│   │       │   │   │       ├── README.rdoc
│   │       │   │   │       ├── en_rails_i18n.yml
│   │       │   │   │       ├── init.rb.erb
│   │       │   │   │       ├── routes.rb
│   │       │   │   │       └── test_helper.rb.erb
│   │       │   │   ├── redmine_plugin_controller
│   │       │   │   │   ├── USAGE
│   │       │   │   │   ├── redmine_plugin_controller_generator.rb
│   │       │   │   │   └── templates
│   │       │   │   │       ├── controller.rb.erb
│   │       │   │   │       ├── functional_test.rb.erb
│   │       │   │   │       ├── helper.rb.erb
│   │       │   │   │       └── view.html.erb
│   │       │   │   └── redmine_plugin_model
│   │       │   │       ├── USAGE
│   │       │   │       ├── redmine_plugin_model_generator.rb
│   │       │   │       └── templates
│   │       │   │           ├── migration.rb
│   │       │   │           ├── model.rb.erb
│   │       │   │           └── unit_test.rb.erb
│   │       │   ├── plugins
│   │       │   │   ├── acts_as_activity_provider
│   │       │   │   │   ├── init.rb
│   │       │   │   │   └── lib
│   │       │   │   │       └── acts_as_activity_provider.rb
│   │       │   │   ├── acts_as_attachable
│   │       │   │   │   ├── init.rb
│   │       │   │   │   └── lib
│   │       │   │   │       └── acts_as_attachable.rb
│   │       │   │   ├── acts_as_customizable
│   │       │   │   │   ├── init.rb
│   │       │   │   │   └── lib
│   │       │   │   │       └── acts_as_customizable.rb
│   │       │   │   ├── acts_as_event
│   │       │   │   │   ├── init.rb
│   │       │   │   │   └── lib
│   │       │   │   │       └── acts_as_event.rb
│   │       │   │   ├── acts_as_list
│   │       │   │   │   ├── README
│   │       │   │   │   ├── init.rb
│   │       │   │   │   ├── lib
│   │       │   │   │   │   └── active_record
│   │       │   │   │   │       └── acts
│   │       │   │   │   │           └── list.rb
│   │       │   │   │   └── test
│   │       │   │   │       └── list_test.rb
│   │       │   │   ├── acts_as_searchable
│   │       │   │   │   ├── init.rb
│   │       │   │   │   └── lib
│   │       │   │   │       └── acts_as_searchable.rb
│   │       │   │   ├── acts_as_tree
│   │       │   │   │   ├── README
│   │       │   │   │   ├── Rakefile
│   │       │   │   │   ├── init.rb
│   │       │   │   │   ├── lib
│   │       │   │   │   │   └── active_record
│   │       │   │   │   │       └── acts
│   │       │   │   │   │           └── tree.rb
│   │       │   │   │   └── test
│   │       │   │   │       ├── abstract_unit.rb
│   │       │   │   │       ├── acts_as_tree_test.rb
│   │       │   │   │       ├── database.yml
│   │       │   │   │       ├── fixtures
│   │       │   │   │       │   ├── mixin.rb
│   │       │   │   │       │   └── mixins.yml
│   │       │   │   │       └── schema.rb
│   │       │   │   ├── acts_as_versioned
│   │       │   │   │   ├── CHANGELOG
│   │       │   │   │   ├── MIT-LICENSE
│   │       │   │   │   ├── README
│   │       │   │   │   ├── RUNNING_UNIT_TESTS
│   │       │   │   │   ├── Rakefile
│   │       │   │   │   ├── init.rb
│   │       │   │   │   ├── lib
│   │       │   │   │   │   └── acts_as_versioned.rb
│   │       │   │   │   └── test
│   │       │   │   │       ├── abstract_unit.rb
│   │       │   │   │       ├── database.yml
│   │       │   │   │       ├── fixtures
│   │       │   │   │       │   ├── authors.yml
│   │       │   │   │       │   ├── landmark.rb
│   │       │   │   │       │   ├── landmark_versions.yml
│   │       │   │   │       │   ├── landmarks.yml
│   │       │   │   │       │   ├── locked_pages.yml
│   │       │   │   │       │   ├── locked_pages_revisions.yml
│   │       │   │   │       │   ├── migrations
│   │       │   │   │       │   │   └── 1_add_versioned_tables.rb
│   │       │   │   │       │   ├── page.rb
│   │       │   │   │       │   ├── page_versions.yml
│   │       │   │   │       │   ├── pages.yml
│   │       │   │   │       │   └── widget.rb
│   │       │   │   │       ├── migration_test.rb
│   │       │   │   │       ├── schema.rb
│   │       │   │   │       └── versioned_test.rb
│   │       │   │   ├── acts_as_watchable
│   │       │   │   │   ├── init.rb
│   │       │   │   │   └── lib
│   │       │   │   │       └── acts_as_watchable.rb
│   │       │   │   ├── gravatar
│   │       │   │   │   ├── MIT-LICENSE
│   │       │   │   │   ├── README.rdoc
│   │       │   │   │   ├── Rakefile
│   │       │   │   │   ├── about.yml
│   │       │   │   │   ├── init.rb
│   │       │   │   │   ├── lib
│   │       │   │   │   │   └── gravatar.rb
│   │       │   │   │   └── spec
│   │       │   │   │       └── gravatar_spec.rb
│   │       │   │   └── open_id_authentication
│   │       │   │       ├── CHANGELOG
│   │       │   │       ├── README
│   │       │   │       ├── Rakefile
│   │       │   │       ├── generators
│   │       │   │       │   ├── open_id_authentication_tables
│   │       │   │       │   │   ├── open_id_authentication_tables_generator.rb
│   │       │   │       │   │   └── templates
│   │       │   │       │   │       └── migration.rb
│   │       │   │       │   └── upgrade_open_id_authentication_tables
│   │       │   │       │       ├── templates
│   │       │   │       │       │   └── migration.rb
│   │       │   │       │       └── upgrade_open_id_authentication_tables_generator.rb
│   │       │   │       ├── init.rb
│   │       │   │       ├── lib
│   │       │   │       │   ├── open_id_authentication
│   │       │   │       │   │   ├── association.rb
│   │       │   │       │   │   ├── db_store.rb
│   │       │   │       │   │   ├── mem_cache_store.rb
│   │       │   │       │   │   ├── nonce.rb
│   │       │   │       │   │   ├── request.rb
│   │       │   │       │   │   └── timeout_fixes.rb
│   │       │   │       │   ├── open_id_authentication.rb
│   │       │   │       │   └── tasks
│   │       │   │       │       └── open_id_authentication_tasks.rake
│   │       │   │       └── test
│   │       │   │           ├── mem_cache_store_test.rb
│   │       │   │           ├── normalize_test.rb
│   │       │   │           ├── open_id_authentication_test.rb
│   │       │   │           ├── status_test.rb
│   │       │   │           └── test_helper.rb
│   │       │   ├── redmine
│   │       │   │   ├── access_control.rb
│   │       │   │   ├── access_keys.rb
│   │       │   │   ├── activity
│   │       │   │   │   └── fetcher.rb
│   │       │   │   ├── activity.rb
│   │       │   │   ├── acts
│   │       │   │   │   └── positioned.rb
│   │       │   │   ├── ciphering.rb
│   │       │   │   ├── codeset_util.rb
│   │       │   │   ├── configuration.rb
│   │       │   │   ├── core_ext
│   │       │   │   │   ├── active_record.rb
│   │       │   │   │   ├── date
│   │       │   │   │   │   └── calculations.rb
│   │       │   │   │   ├── date.rb
│   │       │   │   │   ├── string
│   │       │   │   │   │   ├── conversions.rb
│   │       │   │   │   │   └── inflections.rb
│   │       │   │   │   └── string.rb
│   │       │   │   ├── core_ext.rb
│   │       │   │   ├── database.rb
│   │       │   │   ├── default_data
│   │       │   │   │   └── loader.rb
│   │       │   │   ├── export
│   │       │   │   │   ├── csv.rb
│   │       │   │   │   ├── pdf
│   │       │   │   │   │   ├── issues_pdf_helper.rb
│   │       │   │   │   │   └── wiki_pdf_helper.rb
│   │       │   │   │   └── pdf.rb
│   │       │   │   ├── field_format.rb
│   │       │   │   ├── helpers
│   │       │   │   │   ├── calendar.rb
│   │       │   │   │   ├── diff.rb
│   │       │   │   │   ├── gantt.rb
│   │       │   │   │   ├── time_report.rb
│   │       │   │   │   └── url.rb
│   │       │   │   ├── hook
│   │       │   │   │   ├── listener.rb
│   │       │   │   │   └── view_listener.rb
│   │       │   │   ├── hook.rb
│   │       │   │   ├── i18n.rb
│   │       │   │   ├── imap.rb
│   │       │   │   ├── info.rb
│   │       │   │   ├── menu_manager.rb
│   │       │   │   ├── mime_type.rb
│   │       │   │   ├── my_page.rb
│   │       │   │   ├── nested_set
│   │       │   │   │   ├── issue_nested_set.rb
│   │       │   │   │   ├── project_nested_set.rb
│   │       │   │   │   └── traversing.rb
│   │       │   │   ├── notifiable.rb
│   │       │   │   ├── pagination.rb
│   │       │   │   ├── platform.rb
│   │       │   │   ├── plugin.rb
│   │       │   │   ├── pop3.rb
│   │       │   │   ├── safe_attributes.rb
│   │       │   │   ├── scm
│   │       │   │   │   ├── adapters
│   │       │   │   │   │   ├── abstract_adapter.rb
│   │       │   │   │   │   ├── bazaar_adapter.rb
│   │       │   │   │   │   ├── command_failed.rb
│   │       │   │   │   │   ├── cvs_adapter.rb
│   │       │   │   │   │   ├── darcs_adapter.rb
│   │       │   │   │   │   ├── filesystem_adapter.rb
│   │       │   │   │   │   ├── git_adapter.rb
│   │       │   │   │   │   ├── mercurial
│   │       │   │   │   │   │   ├── hg-template-1.0.tmpl
│   │       │   │   │   │   │   └── redminehelper.py
│   │       │   │   │   │   ├── mercurial_adapter.rb
│   │       │   │   │   │   └── subversion_adapter.rb
│   │       │   │   │   ├── adapters.rb
│   │       │   │   │   └── base.rb
│   │       │   │   ├── search.rb
│   │       │   │   ├── sort_criteria.rb
│   │       │   │   ├── subclass_factory.rb
│   │       │   │   ├── sudo_mode.rb
│   │       │   │   ├── syntax_highlighting.rb
│   │       │   │   ├── themes.rb
│   │       │   │   ├── thumbnail.rb
│   │       │   │   ├── unified_diff.rb
│   │       │   │   ├── utils.rb
│   │       │   │   ├── version.rb
│   │       │   │   ├── views
│   │       │   │   │   ├── api_template_handler.rb
│   │       │   │   │   ├── builders
│   │       │   │   │   │   ├── json.rb
│   │       │   │   │   │   ├── structure.rb
│   │       │   │   │   │   └── xml.rb
│   │       │   │   │   ├── builders.rb
│   │       │   │   │   ├── labelled_form_builder.rb
│   │       │   │   │   └── other_formats_builder.rb
│   │       │   │   ├── wiki_formatting
│   │       │   │   │   ├── html_parser.rb
│   │       │   │   │   ├── macros.rb
│   │       │   │   │   ├── markdown
│   │       │   │   │   │   ├── formatter.rb
│   │       │   │   │   │   ├── helper.rb
│   │       │   │   │   │   └── html_parser.rb
│   │       │   │   │   └── textile
│   │       │   │   │       ├── formatter.rb
│   │       │   │   │       ├── helper.rb
│   │       │   │   │       ├── html_parser.rb
│   │       │   │   │       └── redcloth3.rb
│   │       │   │   └── wiki_formatting.rb
│   │       │   ├── redmine.rb
│   │       │   └── tasks
│   │       │       ├── ci.rake
│   │       │       ├── ciphering.rake
│   │       │       ├── deprecated.rake
│   │       │       ├── email.rake
│   │       │       ├── extract_fixtures.rake
│   │       │       ├── initializers.rake
│   │       │       ├── load_default_data.rake
│   │       │       ├── locales.rake
│   │       │       ├── metrics.rake
│   │       │       ├── migrate_from_mantis.rake
│   │       │       ├── migrate_from_trac.rake
│   │       │       ├── permissions.rake
│   │       │       ├── redmine.rake
│   │       │       ├── reminder.rake
│   │       │       ├── testing.rake
│   │       │       └── yardoc.rake
│   │       ├── log
│   │       │   └── delete.me
│   │       ├── plugins
│   │       │   └── README
│   │       ├── public
│   │       │   ├── 404.html
│   │       │   ├── 500.html
│   │       │   ├── dispatch.fcgi.example
│   │       │   ├── favicon.ico
│   │       │   ├── help
│   │       │   │   ├── ar
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── az
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── bg
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── bs
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── ca
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── cs
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── da
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── de
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── el
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── en
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── en-gb
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── es
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── es-pa
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── et
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── eu
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── fa
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── fi
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── fr
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── gl
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── he
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── hr
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── hu
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── id
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── it
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── ja
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── ko
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── lt
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── lv
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── mk
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── mn
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── nl
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── no
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── pl
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── pt
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── pt-br
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── ro
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── ru
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── sk
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── sl
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── sq
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── sr
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── sr-yu
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── sv
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── th
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── tr
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── uk
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── vi
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   ├── wiki_syntax.css
│   │       │   │   ├── wiki_syntax_detailed.css
│   │       │   │   ├── zh
│   │       │   │   │   ├── wiki_syntax_detailed_markdown.html
│   │       │   │   │   ├── wiki_syntax_detailed_textile.html
│   │       │   │   │   ├── wiki_syntax_markdown.html
│   │       │   │   │   └── wiki_syntax_textile.html
│   │       │   │   └── zh-tw
│   │       │   │       ├── wiki_syntax_detailed_markdown.html
│   │       │   │       ├── wiki_syntax_detailed_textile.html
│   │       │   │       ├── wiki_syntax_markdown.html
│   │       │   │       └── wiki_syntax_textile.html
│   │       │   ├── htaccess.fcgi.example
│   │       │   ├── images
│   │       │   │   ├── 1downarrow.png
│   │       │   │   ├── 1uparrow.png
│   │       │   │   ├── 2downarrow.png
│   │       │   │   ├── 2uparrow.png
│   │       │   │   ├── add.png
│   │       │   │   ├── anonymous.png
│   │       │   │   ├── arrow_collapsed.png
│   │       │   │   ├── arrow_down.png
│   │       │   │   ├── arrow_expanded.png
│   │       │   │   ├── attachment.png
│   │       │   │   ├── bullet_add.png
│   │       │   │   ├── bullet_arrow_left.png
│   │       │   │   ├── bullet_arrow_right.png
│   │       │   │   ├── bullet_black.png
│   │       │   │   ├── bullet_blue.png
│   │       │   │   ├── bullet_delete.png
│   │       │   │   ├── bullet_diamond.png
│   │       │   │   ├── bullet_end.png
│   │       │   │   ├── bullet_go.png
│   │       │   │   ├── bullet_orange.png
│   │       │   │   ├── bullet_purple.png
│   │       │   │   ├── bullet_toggle_minus.png
│   │       │   │   ├── bullet_toggle_plus.png
│   │       │   │   ├── calendar.png
│   │       │   │   ├── cancel.png
│   │       │   │   ├── changeset.png
│   │       │   │   ├── close.png
│   │       │   │   ├── close_hl.png
│   │       │   │   ├── comment.png
│   │       │   │   ├── comments.png
│   │       │   │   ├── copy.png
│   │       │   │   ├── database_key.png
│   │       │   │   ├── delete.png
│   │       │   │   ├── document.png
│   │       │   │   ├── download.png
│   │       │   │   ├── draft.png
│   │       │   │   ├── duplicate.png
│   │       │   │   ├── edit.png
│   │       │   │   ├── email.png
│   │       │   │   ├── email_add.png
│   │       │   │   ├── email_disabled.png
│   │       │   │   ├── exclamation.png
│   │       │   │   ├── external.png
│   │       │   │   ├── false.png
│   │       │   │   ├── fav.png
│   │       │   │   ├── fav_off.png
│   │       │   │   ├── feed.png
│   │       │   │   ├── files
│   │       │   │   │   ├── c.png
│   │       │   │   │   ├── csharp.png
│   │       │   │   │   ├── css.png
│   │       │   │   │   ├── default.png
│   │       │   │   │   ├── html.png
│   │       │   │   │   ├── image.png
│   │       │   │   │   ├── java.png
│   │       │   │   │   ├── js.png
│   │       │   │   │   ├── pdf.png
│   │       │   │   │   ├── php.png
│   │       │   │   │   ├── ruby.png
│   │       │   │   │   ├── text.png
│   │       │   │   │   ├── xml.png
│   │       │   │   │   └── zip.png
│   │       │   │   ├── folder.png
│   │       │   │   ├── folder_open.png
│   │       │   │   ├── folder_open_add.png
│   │       │   │   ├── folder_open_orange.png
│   │       │   │   ├── group.png
│   │       │   │   ├── help.png
│   │       │   │   ├── history.png
│   │       │   │   ├── hourglass.png
│   │       │   │   ├── jstoolbar
│   │       │   │   │   ├── bt_bq.png
│   │       │   │   │   ├── bt_bq_remove.png
│   │       │   │   │   ├── bt_code.png
│   │       │   │   │   ├── bt_del.png
│   │       │   │   │   ├── bt_em.png
│   │       │   │   │   ├── bt_h1.png
│   │       │   │   │   ├── bt_h2.png
│   │       │   │   │   ├── bt_h3.png
│   │       │   │   │   ├── bt_img.png
│   │       │   │   │   ├── bt_ins.png
│   │       │   │   │   ├── bt_link.png
│   │       │   │   │   ├── bt_ol.png
│   │       │   │   │   ├── bt_pre.png
│   │       │   │   │   ├── bt_precode.png
│   │       │   │   │   ├── bt_strong.png
│   │       │   │   │   └── bt_ul.png
│   │       │   │   ├── lightning.png
│   │       │   │   ├── link.png
│   │       │   │   ├── link_break.png
│   │       │   │   ├── loading.gif
│   │       │   │   ├── locked.png
│   │       │   │   ├── magnifier.png
│   │       │   │   ├── message.png
│   │       │   │   ├── milestone_done.png
│   │       │   │   ├── milestone_late.png
│   │       │   │   ├── milestone_todo.png
│   │       │   │   ├── move.png
│   │       │   │   ├── news.png
│   │       │   │   ├── openid-bg.gif
│   │       │   │   ├── package.png
│   │       │   │   ├── plugin.png
│   │       │   │   ├── project_marker.png
│   │       │   │   ├── projects.png
│   │       │   │   ├── reload.png
│   │       │   │   ├── reorder.png
│   │       │   │   ├── report.png
│   │       │   │   ├── save.png
│   │       │   │   ├── server_key.png
│   │       │   │   ├── sort_asc.png
│   │       │   │   ├── sort_desc.png
│   │       │   │   ├── stats.png
│   │       │   │   ├── table_multiple.png
│   │       │   │   ├── task_done.png
│   │       │   │   ├── task_late.png
│   │       │   │   ├── task_parent_end.png
│   │       │   │   ├── task_todo.png
│   │       │   │   ├── text_list_bullets.png
│   │       │   │   ├── textfield.png
│   │       │   │   ├── textfield_key.png
│   │       │   │   ├── ticket.png
│   │       │   │   ├── ticket_checked.png
│   │       │   │   ├── ticket_edit.png
│   │       │   │   ├── ticket_go.png
│   │       │   │   ├── ticket_note.png
│   │       │   │   ├── time.png
│   │       │   │   ├── time_add.png
│   │       │   │   ├── toggle_check.png
│   │       │   │   ├── true.png
│   │       │   │   ├── unlock.png
│   │       │   │   ├── user.png
│   │       │   │   ├── version_marker.png
│   │       │   │   ├── warning.png
│   │       │   │   ├── wiki_edit.png
│   │       │   │   ├── zoom_in.png
│   │       │   │   └── zoom_out.png
│   │       │   ├── javascripts
│   │       │   │   ├── application.js
│   │       │   │   ├── attachments.js
│   │       │   │   ├── context_menu.js
│   │       │   │   ├── gantt.js
│   │       │   │   ├── i18n
│   │       │   │   │   ├── datepicker-ar.js
│   │       │   │   │   ├── datepicker-az.js
│   │       │   │   │   ├── datepicker-bg.js
│   │       │   │   │   ├── datepicker-bs.js
│   │       │   │   │   ├── datepicker-ca.js
│   │       │   │   │   ├── datepicker-cs.js
│   │       │   │   │   ├── datepicker-da.js
│   │       │   │   │   ├── datepicker-de.js
│   │       │   │   │   ├── datepicker-el.js
│   │       │   │   │   ├── datepicker-en-GB.js
│   │       │   │   │   ├── datepicker-es.js
│   │       │   │   │   ├── datepicker-et.js
│   │       │   │   │   ├── datepicker-eu.js
│   │       │   │   │   ├── datepicker-fa.js
│   │       │   │   │   ├── datepicker-fi.js
│   │       │   │   │   ├── datepicker-fr.js
│   │       │   │   │   ├── datepicker-gl.js
│   │       │   │   │   ├── datepicker-he.js
│   │       │   │   │   ├── datepicker-hr.js
│   │       │   │   │   ├── datepicker-hu.js
│   │       │   │   │   ├── datepicker-id.js
│   │       │   │   │   ├── datepicker-it.js
│   │       │   │   │   ├── datepicker-ja.js
│   │       │   │   │   ├── datepicker-ko.js
│   │       │   │   │   ├── datepicker-lt.js
│   │       │   │   │   ├── datepicker-lv.js
│   │       │   │   │   ├── datepicker-mk.js
│   │       │   │   │   ├── datepicker-nl.js
│   │       │   │   │   ├── datepicker-no.js
│   │       │   │   │   ├── datepicker-pl.js
│   │       │   │   │   ├── datepicker-pt-BR.js
│   │       │   │   │   ├── datepicker-pt.js
│   │       │   │   │   ├── datepicker-ro.js
│   │       │   │   │   ├── datepicker-ru.js
│   │       │   │   │   ├── datepicker-sk.js
│   │       │   │   │   ├── datepicker-sl.js
│   │       │   │   │   ├── datepicker-sq.js
│   │       │   │   │   ├── datepicker-sr.js
│   │       │   │   │   ├── datepicker-sv.js
│   │       │   │   │   ├── datepicker-th.js
│   │       │   │   │   ├── datepicker-tr.js
│   │       │   │   │   ├── datepicker-uk.js
│   │       │   │   │   ├── datepicker-vi.js
│   │       │   │   │   ├── datepicker-zh-CN.js
│   │       │   │   │   └── datepicker-zh-TW.js
│   │       │   │   ├── jquery-1.11.1-ui-1.11.0-ujs-3.1.4.js
│   │       │   │   ├── jstoolbar
│   │       │   │   │   ├── jstoolbar-textile.min.js
│   │       │   │   │   ├── jstoolbar.js
│   │       │   │   │   ├── lang
│   │       │   │   │   │   ├── jstoolbar-ar.js
│   │       │   │   │   │   ├── jstoolbar-az.js
│   │       │   │   │   │   ├── jstoolbar-bg.js
│   │       │   │   │   │   ├── jstoolbar-bs.js
│   │       │   │   │   │   ├── jstoolbar-ca.js
│   │       │   │   │   │   ├── jstoolbar-cs.js
│   │       │   │   │   │   ├── jstoolbar-da.js
│   │       │   │   │   │   ├── jstoolbar-de.js
│   │       │   │   │   │   ├── jstoolbar-en-gb.js
│   │       │   │   │   │   ├── jstoolbar-en.js
│   │       │   │   │   │   ├── jstoolbar-es-pa.js
│   │       │   │   │   │   ├── jstoolbar-es.js
│   │       │   │   │   │   ├── jstoolbar-et.js
│   │       │   │   │   │   ├── jstoolbar-eu.js
│   │       │   │   │   │   ├── jstoolbar-fa.js
│   │       │   │   │   │   ├── jstoolbar-fi.js
│   │       │   │   │   │   ├── jstoolbar-fr.js
│   │       │   │   │   │   ├── jstoolbar-gl.js
│   │       │   │   │   │   ├── jstoolbar-he.js
│   │       │   │   │   │   ├── jstoolbar-hr.js
│   │       │   │   │   │   ├── jstoolbar-hu.js
│   │       │   │   │   │   ├── jstoolbar-id.js
│   │       │   │   │   │   ├── jstoolbar-it.js
│   │       │   │   │   │   ├── jstoolbar-ja.js
│   │       │   │   │   │   ├── jstoolbar-ko.js
│   │       │   │   │   │   ├── jstoolbar-lt.js
│   │       │   │   │   │   ├── jstoolbar-lv.js
│   │       │   │   │   │   ├── jstoolbar-mk.js
│   │       │   │   │   │   ├── jstoolbar-mn.js
│   │       │   │   │   │   ├── jstoolbar-nl.js
│   │       │   │   │   │   ├── jstoolbar-no.js
│   │       │   │   │   │   ├── jstoolbar-pl.js
│   │       │   │   │   │   ├── jstoolbar-pt-br.js
│   │       │   │   │   │   ├── jstoolbar-pt.js
│   │       │   │   │   │   ├── jstoolbar-ro.js
│   │       │   │   │   │   ├── jstoolbar-ru.js
│   │       │   │   │   │   ├── jstoolbar-sk.js
│   │       │   │   │   │   ├── jstoolbar-sl.js
│   │       │   │   │   │   ├── jstoolbar-sq.js
│   │       │   │   │   │   ├── jstoolbar-sr-yu.js
│   │       │   │   │   │   ├── jstoolbar-sr.js
│   │       │   │   │   │   ├── jstoolbar-sv.js
│   │       │   │   │   │   ├── jstoolbar-th.js
│   │       │   │   │   │   ├── jstoolbar-tr.js
│   │       │   │   │   │   ├── jstoolbar-uk.js
│   │       │   │   │   │   ├── jstoolbar-vi.js
│   │       │   │   │   │   ├── jstoolbar-zh-tw.js
│   │       │   │   │   │   └── jstoolbar-zh.js
│   │       │   │   │   ├── markdown.js
│   │       │   │   │   └── textile.js
│   │       │   │   ├── project_identifier.js
│   │       │   │   ├── raphael.js
│   │       │   │   ├── repository_navigation.js
│   │       │   │   ├── responsive.js
│   │       │   │   └── revision_graph.js
│   │       │   ├── plugin_assets
│   │       │   │   └── empty
│   │       │   ├── stylesheets
│   │       │   │   ├── application.css
│   │       │   │   ├── context_menu.css
│   │       │   │   ├── context_menu_rtl.css
│   │       │   │   ├── jquery
│   │       │   │   │   ├── images
│   │       │   │   │   │   ├── animated-overlay.gif
│   │       │   │   │   │   ├── ui-bg_diagonals-thick_18_b81900_40x40.png
│   │       │   │   │   │   ├── ui-bg_diagonals-thick_20_666666_40x40.png
│   │       │   │   │   │   ├── ui-bg_flat_10_000000_40x100.png
│   │       │   │   │   │   ├── ui-bg_glass_100_eef5fd_1x400.png
│   │       │   │   │   │   ├── ui-bg_glass_100_f6f6f6_1x400.png
│   │       │   │   │   │   ├── ui-bg_glass_65_ffffff_1x400.png
│   │       │   │   │   │   ├── ui-bg_gloss-wave_35_759fcf_500x100.png
│   │       │   │   │   │   ├── ui-bg_highlight-soft_100_eeeeee_1x100.png
│   │       │   │   │   │   ├── ui-bg_highlight-soft_75_759fcf_1x100.png
│   │       │   │   │   │   ├── ui-icons_222222_256x240.png
│   │       │   │   │   │   ├── ui-icons_759fcf_256x240.png
│   │       │   │   │   │   ├── ui-icons_ffd27a_256x240.png
│   │       │   │   │   │   └── ui-icons_ffffff_256x240.png
│   │       │   │   │   └── jquery-ui-1.11.0.css
│   │       │   │   ├── jstoolbar.css
│   │       │   │   ├── responsive.css
│   │       │   │   ├── rtl.css
│   │       │   │   └── scm.css
│   │       │   └── themes
│   │       │       ├── README
│   │       │       ├── alternate
│   │       │       │   └── stylesheets
│   │       │       │       └── application.css
│   │       │       └── classic
│   │       │           ├── images
│   │       │           │   ├── home.png
│   │       │           │   └── wrench.png
│   │       │           └── stylesheets
│   │       │               └── application.css
│   │       ├── script
│   │       │   ├── about
│   │       │   └── rails
│   │       ├── test
│   │       │   ├── coverage
│   │       │   │   ├── html_formatter.rb
│   │       │   │   └── views
│   │       │   │       ├── index.erb
│   │       │   │       └── source.erb
│   │       │   ├── extra
│   │       │   │   └── redmine_pm
│   │       │   │       ├── repository_git_test_pm.rb
│   │       │   │       ├── repository_subversion_test_pm.rb
│   │       │   │       └── test_case.rb
│   │       │   ├── fixtures
│   │       │   │   ├── attachments.yml
│   │       │   │   ├── auth_sources.yml
│   │       │   │   ├── boards.yml
│   │       │   │   ├── changes.yml
│   │       │   │   ├── changesets.yml
│   │       │   │   ├── comments.yml
│   │       │   │   ├── configuration
│   │       │   │   │   ├── default.yml
│   │       │   │   │   ├── empty.yml
│   │       │   │   │   ├── no_default.yml
│   │       │   │   │   └── overrides.yml
│   │       │   │   ├── custom_fields.yml
│   │       │   │   ├── custom_fields_projects.yml
│   │       │   │   ├── custom_fields_trackers.yml
│   │       │   │   ├── custom_values.yml
│   │       │   │   ├── diffs
│   │       │   │   │   ├── issue-12641-ja.diff
│   │       │   │   │   ├── issue-12641-ru.diff
│   │       │   │   │   ├── issue-13644-1.diff
│   │       │   │   │   ├── issue-13644-2.diff
│   │       │   │   │   ├── issue-13644-3.diff
│   │       │   │   │   ├── issue-13644-4.diff
│   │       │   │   │   ├── issue-13644-5.diff
│   │       │   │   │   ├── partials.diff
│   │       │   │   │   └── subversion.diff
│   │       │   │   ├── documents.yml
│   │       │   │   ├── email_addresses.yml
│   │       │   │   ├── enabled_modules.yml
│   │       │   │   ├── encoding
│   │       │   │   │   └── iso-8859-1.txt
│   │       │   │   ├── enumerations.yml
│   │       │   │   ├── files
│   │       │   │   │   ├── 2006
│   │       │   │   │   │   └── 07
│   │       │   │   │   │       ├── 060719210727_archive.zip
│   │       │   │   │   │       ├── 060719210727_changeset_iso8859-1.diff
│   │       │   │   │   │       ├── 060719210727_changeset_utf8.diff
│   │       │   │   │   │       └── 060719210727_source.rb
│   │       │   │   │   ├── 2010
│   │       │   │   │   │   ├── 11
│   │       │   │   │   │   │   └── 101123161450_testfile_1.png
│   │       │   │   │   │   └── 12
│   │       │   │   │   │       └── 101223161450_testfile_2.png
│   │       │   │   │   ├── 2016
│   │       │   │   │   │   └── 12
│   │       │   │   │   ├── hg-export.diff
│   │       │   │   │   ├── import_dates.csv
│   │       │   │   │   ├── import_iso8859-1.csv
│   │       │   │   │   ├── import_issues.csv
│   │       │   │   │   ├── import_subtasks.csv
│   │       │   │   │   ├── invalid-Shift_JIS.csv
│   │       │   │   │   ├── iso8859-1.txt
│   │       │   │   │   ├── japanese-utf-8.txt
│   │       │   │   │   └── testfile.txt
│   │       │   │   ├── groups_users.yml
│   │       │   │   ├── issue_categories.yml
│   │       │   │   ├── issue_relations.yml
│   │       │   │   ├── issue_statuses.yml
│   │       │   │   ├── issues.yml
│   │       │   │   ├── journal_details.yml
│   │       │   │   ├── journals.yml
│   │       │   │   ├── ldap
│   │       │   │   │   ├── slapd.centos6.conf
│   │       │   │   │   ├── slapd.conf
│   │       │   │   │   ├── slapd.ubuntu.12.04.conf
│   │       │   │   │   └── test-ldap.ldif
│   │       │   │   ├── mail_handler
│   │       │   │   │   ├── apple_mail_with_attachment.eml
│   │       │   │   │   ├── body_ks_c_5601-1987.eml
│   │       │   │   │   ├── empty_text_and_html_part.eml
│   │       │   │   │   ├── empty_text_part.eml
│   │       │   │   │   ├── fullname_of_sender_as_utf8_encoded.eml
│   │       │   │   │   ├── gmail-iso8859-2.eml
│   │       │   │   │   ├── gmail_with_attachment_iso-8859-1.eml
│   │       │   │   │   ├── gmail_with_attachment_ja.eml
│   │       │   │   │   ├── invalid_utf8.eml
│   │       │   │   │   ├── issue_update_with_cc.eml
│   │       │   │   │   ├── issue_update_with_multiple_quoted_reply_above.eml
│   │       │   │   │   ├── issue_update_with_quoted_reply_above.eml
│   │       │   │   │   ├── japanese_keywords_iso_2022_jp.eml
│   │       │   │   │   ├── message_reply.eml
│   │       │   │   │   ├── message_reply_by_subject.eml
│   │       │   │   │   ├── multiple_text_parts.eml
│   │       │   │   │   ├── no_subject_header.eml
│   │       │   │   │   ├── outlook_2010_html_only.eml
│   │       │   │   │   ├── outlook_web_access_2010_html_only.eml
│   │       │   │   │   ├── quoted_printable_utf8.eml
│   │       │   │   │   ├── subject_as_iso-8859-1.eml
│   │       │   │   │   ├── subject_japanese_1.eml
│   │       │   │   │   ├── subject_japanese_2.eml
│   │       │   │   │   ├── thunderbird_with_attachment_iso-8859-1.eml
│   │       │   │   │   ├── thunderbird_with_attachment_ja.eml
│   │       │   │   │   ├── ticket_by_empty_user.eml
│   │       │   │   │   ├── ticket_by_unknown_user.eml
│   │       │   │   │   ├── ticket_from_emission_address.eml
│   │       │   │   │   ├── ticket_html_only.eml
│   │       │   │   │   ├── ticket_on_given_project.eml
│   │       │   │   │   ├── ticket_on_project_given_by_to_header.eml
│   │       │   │   │   ├── ticket_reply.eml
│   │       │   │   │   ├── ticket_reply_from_mail.eml
│   │       │   │   │   ├── ticket_reply_with_status.eml
│   │       │   │   │   ├── ticket_with_attachment.eml
│   │       │   │   │   ├── ticket_with_attributes.eml
│   │       │   │   │   ├── ticket_with_cc.eml
│   │       │   │   │   ├── ticket_with_custom_fields.eml
│   │       │   │   │   ├── ticket_with_duplicate_keyword.eml
│   │       │   │   │   ├── ticket_with_empty_attachment.eml
│   │       │   │   │   ├── ticket_with_invalid_attributes.eml
│   │       │   │   │   ├── ticket_with_keyword_after_delimiter.eml
│   │       │   │   │   ├── ticket_with_localized_attributes.eml
│   │       │   │   │   ├── ticket_with_long_subject.eml
│   │       │   │   │   ├── ticket_with_spaces_between_attribute_and_separator.eml
│   │       │   │   │   ├── ticket_with_text_attachment_iso-8859-2.eml
│   │       │   │   │   └── ticket_without_from_header.eml
│   │       │   │   ├── mailer
│   │       │   │   ├── member_roles.yml
│   │       │   │   ├── members.yml
│   │       │   │   ├── messages.yml
│   │       │   │   ├── news.yml
│   │       │   │   ├── plugins
│   │       │   │   │   └── foo_plugin
│   │       │   │   │       └── _foo_plugin_settings.html.erb
│   │       │   │   ├── projects.yml
│   │       │   │   ├── projects_trackers.yml
│   │       │   │   ├── queries.yml
│   │       │   │   ├── repositories
│   │       │   │   │   ├── bazaar_repository.tar.gz
│   │       │   │   │   ├── cvs_repository.tar.gz
│   │       │   │   │   ├── darcs_repository.tar.gz
│   │       │   │   │   ├── filesystem_repository.tar.gz
│   │       │   │   │   ├── git_repository.tar.gz
│   │       │   │   │   ├── mercurial_repository.hg
│   │       │   │   │   └── subversion_repository.dump.gz
│   │       │   │   ├── repositories.yml
│   │       │   │   ├── roles.yml
│   │       │   │   ├── time_entries.yml
│   │       │   │   ├── tokens.yml
│   │       │   │   ├── trackers.yml
│   │       │   │   ├── user_preferences.yml
│   │       │   │   ├── users.yml
│   │       │   │   ├── versions.yml
│   │       │   │   ├── watchers.yml
│   │       │   │   ├── wiki_content_versions.yml
│   │       │   │   ├── wiki_contents.yml
│   │       │   │   ├── wiki_pages.yml
│   │       │   │   ├── wikis.yml
│   │       │   │   └── workflows.yml
│   │       │   ├── functional
│   │       │   │   ├── account_controller_openid_test.rb
│   │       │   │   ├── account_controller_test.rb
│   │       │   │   ├── activities_controller_test.rb
│   │       │   │   ├── admin_controller_test.rb
│   │       │   │   ├── attachments_controller_test.rb
│   │       │   │   ├── attachments_visibility_test.rb
│   │       │   │   ├── auth_sources_controller_test.rb
│   │       │   │   ├── auto_completes_controller_test.rb
│   │       │   │   ├── boards_controller_test.rb
│   │       │   │   ├── calendars_controller_test.rb
│   │       │   │   ├── comments_controller_test.rb
│   │       │   │   ├── context_menus_controller_test.rb
│   │       │   │   ├── custom_field_enumerations_controller_test.rb
│   │       │   │   ├── custom_fields_controller_test.rb
│   │       │   │   ├── documents_controller_test.rb
│   │       │   │   ├── email_addresses_controller_test.rb
│   │       │   │   ├── enumerations_controller_test.rb
│   │       │   │   ├── files_controller_test.rb
│   │       │   │   ├── gantts_controller_test.rb
│   │       │   │   ├── groups_controller_test.rb
│   │       │   │   ├── imports_controller_test.rb
│   │       │   │   ├── issue_categories_controller_test.rb
│   │       │   │   ├── issue_relations_controller_test.rb
│   │       │   │   ├── issue_statuses_controller_test.rb
│   │       │   │   ├── issues_controller_test.rb
│   │       │   │   ├── issues_controller_transaction_test.rb
│   │       │   │   ├── issues_custom_fields_visibility_test.rb
│   │       │   │   ├── journals_controller_test.rb
│   │       │   │   ├── mail_handler_controller_test.rb
│   │       │   │   ├── members_controller_test.rb
│   │       │   │   ├── messages_controller_test.rb
│   │       │   │   ├── my_controller_test.rb
│   │       │   │   ├── news_controller_test.rb
│   │       │   │   ├── previews_controller_test.rb
│   │       │   │   ├── principal_memberships_controller_test.rb
│   │       │   │   ├── project_enumerations_controller_test.rb
│   │       │   │   ├── projects_controller_test.rb
│   │       │   │   ├── queries_controller_test.rb
│   │       │   │   ├── reports_controller_test.rb
│   │       │   │   ├── repositories_bazaar_controller_test.rb
│   │       │   │   ├── repositories_controller_test.rb
│   │       │   │   ├── repositories_cvs_controller_test.rb
│   │       │   │   ├── repositories_darcs_controller_test.rb
│   │       │   │   ├── repositories_filesystem_controller_test.rb
│   │       │   │   ├── repositories_git_controller_test.rb
│   │       │   │   ├── repositories_mercurial_controller_test.rb
│   │       │   │   ├── repositories_subversion_controller_test.rb
│   │       │   │   ├── roles_controller_test.rb
│   │       │   │   ├── search_controller_test.rb
│   │       │   │   ├── search_custom_fields_visibility_test.rb
│   │       │   │   ├── sessions_controller_test.rb
│   │       │   │   ├── settings_controller_test.rb
│   │       │   │   ├── sys_controller_test.rb
│   │       │   │   ├── time_entry_reports_controller_test.rb
│   │       │   │   ├── timelog_controller_test.rb
│   │       │   │   ├── timelog_custom_fields_visibility_test.rb
│   │       │   │   ├── trackers_controller_test.rb
│   │       │   │   ├── users_controller_test.rb
│   │       │   │   ├── versions_controller_test.rb
│   │       │   │   ├── watchers_controller_test.rb
│   │       │   │   ├── welcome_controller_test.rb
│   │       │   │   ├── wiki_controller_test.rb
│   │       │   │   ├── wikis_controller_test.rb
│   │       │   │   └── workflows_controller_test.rb
│   │       │   ├── integration
│   │       │   │   ├── account_test.rb
│   │       │   │   ├── admin_test.rb
│   │       │   │   ├── api_test
│   │       │   │   │   ├── api_routing_test.rb
│   │       │   │   │   ├── api_test.rb
│   │       │   │   │   ├── attachments_test.rb
│   │       │   │   │   ├── authentication_test.rb
│   │       │   │   │   ├── custom_fields_attribute_test.rb
│   │       │   │   │   ├── custom_fields_test.rb
│   │       │   │   │   ├── disabled_rest_api_test.rb
│   │       │   │   │   ├── enumerations_test.rb
│   │       │   │   │   ├── files_test.rb
│   │       │   │   │   ├── groups_test.rb
│   │       │   │   │   ├── issue_categories_test.rb
│   │       │   │   │   ├── issue_relations_test.rb
│   │       │   │   │   ├── issue_statuses_test.rb
│   │       │   │   │   ├── issues_test.rb
│   │       │   │   │   ├── jsonp_test.rb
│   │       │   │   │   ├── memberships_test.rb
│   │       │   │   │   ├── news_test.rb
│   │       │   │   │   ├── projects_test.rb
│   │       │   │   │   ├── queries_test.rb
│   │       │   │   │   ├── roles_test.rb
│   │       │   │   │   ├── search_test.rb
│   │       │   │   │   ├── time_entries_test.rb
│   │       │   │   │   ├── trackers_test.rb
│   │       │   │   │   ├── users_test.rb
│   │       │   │   │   ├── versions_test.rb
│   │       │   │   │   └── wiki_pages_test.rb
│   │       │   │   ├── application_test.rb
│   │       │   │   ├── attachments_test.rb
│   │       │   │   ├── feeds_test.rb
│   │       │   │   ├── issues_test.rb
│   │       │   │   ├── layout_test.rb
│   │       │   │   ├── lib
│   │       │   │   │   └── redmine
│   │       │   │   │       ├── field_format
│   │       │   │   │       │   └── attachment_format_test.rb
│   │       │   │   │       ├── hook_test.rb
│   │       │   │   │       ├── menu_manager_test.rb
│   │       │   │   │       └── themes_test.rb
│   │       │   │   ├── projects_test.rb
│   │       │   │   ├── repositories_git_test.rb
│   │       │   │   ├── routing
│   │       │   │   │   ├── account_test.rb
│   │       │   │   │   ├── activities_test.rb
│   │       │   │   │   ├── admin_test.rb
│   │       │   │   │   ├── attachments_test.rb
│   │       │   │   │   ├── auth_sources_test.rb
│   │       │   │   │   ├── auto_completes_test.rb
│   │       │   │   │   ├── boards_test.rb
│   │       │   │   │   ├── calendars_test.rb
│   │       │   │   │   ├── comments_test.rb
│   │       │   │   │   ├── context_menus_test.rb
│   │       │   │   │   ├── custom_fields_test.rb
│   │       │   │   │   ├── documents_test.rb
│   │       │   │   │   ├── enumerations_test.rb
│   │       │   │   │   ├── files_test.rb
│   │       │   │   │   ├── gantts_test.rb
│   │       │   │   │   ├── groups_test.rb
│   │       │   │   │   ├── imports_test.rb
│   │       │   │   │   ├── issue_categories_test.rb
│   │       │   │   │   ├── issue_relations_test.rb
│   │       │   │   │   ├── issue_statuses_test.rb
│   │       │   │   │   ├── issues_test.rb
│   │       │   │   │   ├── journals_test.rb
│   │       │   │   │   ├── mail_handler_test.rb
│   │       │   │   │   ├── members_test.rb
│   │       │   │   │   ├── messages_test.rb
│   │       │   │   │   ├── my_test.rb
│   │       │   │   │   ├── news_test.rb
│   │       │   │   │   ├── previews_test.rb
│   │       │   │   │   ├── principal_memberships_test.rb
│   │       │   │   │   ├── project_enumerations_test.rb
│   │       │   │   │   ├── projects_test.rb
│   │       │   │   │   ├── queries_test.rb
│   │       │   │   │   ├── reports_test.rb
│   │       │   │   │   ├── repositories_test.rb
│   │       │   │   │   ├── roles_test.rb
│   │       │   │   │   ├── search_test.rb
│   │       │   │   │   ├── settings_test.rb
│   │       │   │   │   ├── sys_test.rb
│   │       │   │   │   ├── timelog_test.rb
│   │       │   │   │   ├── trackers_test.rb
│   │       │   │   │   ├── users_test.rb
│   │       │   │   │   ├── versions_test.rb
│   │       │   │   │   ├── watchers_test.rb
│   │       │   │   │   ├── welcome_test.rb
│   │       │   │   │   ├── wiki_test.rb
│   │       │   │   │   ├── wikis_test.rb
│   │       │   │   │   └── workflows_test.rb
│   │       │   │   ├── sessions_test.rb
│   │       │   │   ├── sudo_mode_test.rb
│   │       │   │   └── users_test.rb
│   │       │   ├── mocks
│   │       │   │   ├── development
│   │       │   │   ├── open_id_authentication_mock.rb
│   │       │   │   └── test
│   │       │   ├── object_helpers.rb
│   │       │   ├── test_helper.rb
│   │       │   ├── ui
│   │       │   │   ├── base.rb
│   │       │   │   ├── issues_test_ui.rb
│   │       │   │   ├── my_page_test_ui.rb
│   │       │   │   ├── sudo_mode_test_ui.rb
│   │       │   │   └── timelog_test_ui.rb
│   │       │   └── unit
│   │       │       ├── activity_test.rb
│   │       │       ├── attachment_test.rb
│   │       │       ├── attachment_transaction_test.rb
│   │       │       ├── auth_source_ldap_test.rb
│   │       │       ├── board_test.rb
│   │       │       ├── changeset_test.rb
│   │       │       ├── comment_test.rb
│   │       │       ├── custom_field_test.rb
│   │       │       ├── custom_field_user_format_test.rb
│   │       │       ├── custom_field_version_format_test.rb
│   │       │       ├── custom_value_test.rb
│   │       │       ├── default_data_test.rb
│   │       │       ├── document_category_test.rb
│   │       │       ├── document_test.rb
│   │       │       ├── enabled_module_test.rb
│   │       │       ├── enumeration_test.rb
│   │       │       ├── group_test.rb
│   │       │       ├── helpers
│   │       │       │   ├── activities_helper_test.rb
│   │       │       │   ├── application_helper_test.rb
│   │       │       │   ├── custom_fields_helper_test.rb
│   │       │       │   ├── groups_helper_test.rb
│   │       │       │   ├── issues_helper_test.rb
│   │       │       │   ├── journals_helper_test.rb
│   │       │       │   ├── members_helper_test.rb
│   │       │       │   ├── projects_helper_test.rb
│   │       │       │   ├── queries_helper_test.rb
│   │       │       │   ├── routes_helper_test.rb
│   │       │       │   ├── search_helper_test.rb
│   │       │       │   ├── settings_helper_test.rb
│   │       │       │   ├── sort_helper_test.rb
│   │       │       │   ├── timelog_helper_test.rb
│   │       │       │   ├── version_helper_test.rb
│   │       │       │   ├── watchers_helper_test.rb
│   │       │       │   └── wiki_helper_test.rb
│   │       │       ├── initializers
│   │       │       │   └── patches_test.rb
│   │       │       ├── issue_category_test.rb
│   │       │       ├── issue_custom_field_test.rb
│   │       │       ├── issue_import_test.rb
│   │       │       ├── issue_nested_set_concurrency_test.rb
│   │       │       ├── issue_nested_set_test.rb
│   │       │       ├── issue_priority_test.rb
│   │       │       ├── issue_relation_test.rb
│   │       │       ├── issue_scopes_test.rb
│   │       │       ├── issue_status_test.rb
│   │       │       ├── issue_subtasking_test.rb
│   │       │       ├── issue_test.rb
│   │       │       ├── issue_transaction_test.rb
│   │       │       ├── journal_observer_test.rb
│   │       │       ├── journal_test.rb
│   │       │       ├── lib
│   │       │       │   ├── redmine
│   │       │       │   │   ├── access_control_test.rb
│   │       │       │   │   ├── acts
│   │       │       │   │   │   ├── positioned_with_scope_test.rb
│   │       │       │   │   │   └── positioned_without_scope_test.rb
│   │       │       │   │   ├── ciphering_test.rb
│   │       │       │   │   ├── codeset_util_test.rb
│   │       │       │   │   ├── configuration_test.rb
│   │       │       │   │   ├── export
│   │       │       │   │   │   ├── csv_test.rb
│   │       │       │   │   │   └── pdf_test.rb
│   │       │       │   │   ├── field_format
│   │       │       │   │   │   ├── attachment_format_test.rb
│   │       │       │   │   │   ├── attachment_format_visibility_test.rb
│   │       │       │   │   │   ├── bool_format_test.rb
│   │       │       │   │   │   ├── enumeration_format_test.rb
│   │       │       │   │   │   ├── field_format_test.rb
│   │       │       │   │   │   ├── link_format_test.rb
│   │       │       │   │   │   ├── list_format_test.rb
│   │       │       │   │   │   ├── numeric_format_test.rb
│   │       │       │   │   │   ├── user_field_format_test.rb
│   │       │       │   │   │   └── version_field_format_test.rb
│   │       │       │   │   ├── helpers
│   │       │       │   │   │   ├── calendar_test.rb
│   │       │       │   │   │   ├── diff_test.rb
│   │       │       │   │   │   └── gantt_test.rb
│   │       │       │   │   ├── hook_test.rb
│   │       │       │   │   ├── i18n_test.rb
│   │       │       │   │   ├── info_test.rb
│   │       │       │   │   ├── menu_manager
│   │       │       │   │   │   ├── mapper_test.rb
│   │       │       │   │   │   ├── menu_helper_test.rb
│   │       │       │   │   │   └── menu_item_test.rb
│   │       │       │   │   ├── menu_manager_test.rb
│   │       │       │   │   ├── mime_type_test.rb
│   │       │       │   │   ├── notifiable_test.rb
│   │       │       │   │   ├── pagination_helper_test.rb
│   │       │       │   │   ├── pagination_test.rb
│   │       │       │   │   ├── plugin_test.rb
│   │       │       │   │   ├── safe_attributes_test.rb
│   │       │       │   │   ├── scm
│   │       │       │   │   │   └── adapters
│   │       │       │   │   │       ├── bazaar_adapter_test.rb
│   │       │       │   │   │       ├── cvs_adapter_test.rb
│   │       │       │   │   │       ├── darcs_adapter_test.rb
│   │       │       │   │   │       ├── filesystem_adapter_test.rb
│   │       │       │   │   │       ├── git_adapter_test.rb
│   │       │       │   │   │       ├── mercurial_adapter_test.rb
│   │       │       │   │   │       └── subversion_adapter_test.rb
│   │       │       │   │   ├── syntax_highlighting
│   │       │       │   │   │   └── coderay_test.rb
│   │       │       │   │   ├── themes_test.rb
│   │       │       │   │   ├── unified_diff_test.rb
│   │       │       │   │   ├── utils
│   │       │       │   │   │   └── date_calculation.rb
│   │       │       │   │   ├── views
│   │       │       │   │   │   ├── builders
│   │       │       │   │   │   │   ├── json_test.rb
│   │       │       │   │   │   │   └── xml_test.rb
│   │       │       │   │   │   └── labelled_form_builder_test.rb
│   │       │       │   │   ├── wiki_formatting
│   │       │       │   │   │   ├── html_parser_test.rb
│   │       │       │   │   │   ├── macros_test.rb
│   │       │       │   │   │   ├── markdown_formatter_test.rb
│   │       │       │   │   │   ├── markdown_html_parser_test.rb
│   │       │       │   │   │   ├── textile_formatter_test.rb
│   │       │       │   │   │   └── textile_html_parser_test.rb
│   │       │       │   │   └── wiki_formatting_test.rb
│   │       │       │   └── redmine_test.rb
│   │       │       ├── mail_handler_test.rb
│   │       │       ├── mailer_test.rb
│   │       │       ├── member_test.rb
│   │       │       ├── message_test.rb
│   │       │       ├── news_test.rb
│   │       │       ├── principal_test.rb
│   │       │       ├── project_copy_test.rb
│   │       │       ├── project_members_inheritance_test.rb
│   │       │       ├── project_nested_set_concurrency_test.rb
│   │       │       ├── project_nested_set_test.rb
│   │       │       ├── project_test.rb
│   │       │       ├── query_test.rb
│   │       │       ├── repository_bazaar_test.rb
│   │       │       ├── repository_cvs_test.rb
│   │       │       ├── repository_darcs_test.rb
│   │       │       ├── repository_filesystem_test.rb
│   │       │       ├── repository_git_test.rb
│   │       │       ├── repository_mercurial_test.rb
│   │       │       ├── repository_subversion_test.rb
│   │       │       ├── repository_test.rb
│   │       │       ├── role_test.rb
│   │       │       ├── search_test.rb
│   │       │       ├── setting_test.rb
│   │       │       ├── time_entry_activity_test.rb
│   │       │       ├── time_entry_query_test.rb
│   │       │       ├── time_entry_test.rb
│   │       │       ├── token_test.rb
│   │       │       ├── tracker_test.rb
│   │       │       ├── user_preference_test.rb
│   │       │       ├── user_test.rb
│   │       │       ├── version_test.rb
│   │       │       ├── watcher_test.rb
│   │       │       ├── wiki_content_test.rb
│   │       │       ├── wiki_content_version_test.rb
│   │       │       ├── wiki_page_test.rb
│   │       │       ├── wiki_redirect_test.rb
│   │       │       ├── wiki_test.rb
│   │       │       ├── workflow_test.rb
│   │       │       └── workflow_transition_test.rb
│   │       ├── tmp
│   │       │   ├── cache
│   │       │   ├── imports
│   │       │   ├── pdf
│   │       │   │   └── empty
│   │       │   ├── sessions
│   │       │   ├── sockets
│   │       │   ├── test
│   │       │   │   └── empty
│   │       │   └── thumbnails
│   │       │       └── empty
│   │       └── vendor
│   ├── redmine-3.4.6.zip
│   └── redmine安装说明文档.DOCX
└── 项目bug管理系统部署文档.zip

296 directories, 2117 files


实例下载地址

项目bug管理系统部署文档

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警