├── Gemfile ├── README.rdoc ├── Rakefile ├── app ├── controllers │ └── mylyn_connector │ │ ├── application_controller.rb │ │ ├── custom_fields_controller.rb │ │ ├── groups_controller.rb │ │ ├── information_controller.rb │ │ ├── issue_categories_controller.rb │ │ ├── issue_priorities_controller.rb │ │ ├── issue_status_controller.rb │ │ ├── issues_controller.rb │ │ ├── projects_controller.rb │ │ ├── queries_controller.rb │ │ ├── settings_controller.rb │ │ ├── time_entry_activities_controller.rb │ │ ├── trackers_controller.rb │ │ ├── users_controller.rb │ │ ├── versions_controller.rb │ │ └── workflow_permissions_controller.rb ├── helpers │ └── mylyn_connector │ │ ├── issues_helper.rb │ │ ├── mylyn_helper.rb │ │ └── projects_helper.rb └── views │ └── mylyn_connector │ ├── 500.xml.builder │ ├── custom_fields │ └── all.xml.builder │ ├── groups │ └── all.xml.builder │ ├── information │ └── version.xml.builder │ ├── issue_categories │ └── all.xml.builder │ ├── issue_priorities │ └── all.xml.builder │ ├── issue_status │ └── all.xml.builder │ ├── issues │ ├── _list_issue.xml.builder │ ├── _partial_issue.xml.builder │ ├── index.xml.builder │ ├── list.xml.builder │ ├── show.xml.builder │ └── updated_since.xml.builder │ ├── projects │ ├── _project.xml.builder │ └── all.xml.builder │ ├── queries │ └── all.xml.builder │ ├── settings │ └── all.xml.builder │ ├── time_entry_activities │ └── all.xml.builder │ ├── trackers │ └── all.xml.builder │ ├── users │ └── all.xml.builder │ ├── versions │ └── all.xml.builder │ └── workflow_permissions │ └── all.xml.builder ├── config └── routes.rb ├── init.rb ├── lang └── en.yml ├── lib ├── mylyn_connector.rb └── mylyn_connector │ ├── controller_test.rb │ ├── hooks.rb │ ├── hooks │ └── controller_issues_edit_after_save.rb │ ├── patches.rb │ ├── patches │ ├── custom_value_patch.rb │ └── project_patch.rb │ ├── rescue.rb │ ├── test.rb │ ├── test │ └── integration_test.rb │ └── version.rb ├── release-note.txt └── test ├── fixtures ├── 1.3 │ ├── custom_fields.yml │ ├── custom_values.yml │ ├── enumerations.yml │ ├── issues.yml │ └── watchers.yml └── 2.0 │ ├── custom_fields.yml │ ├── custom_values.yml │ ├── enumerations.yml │ ├── issues.yml │ └── watchers.yml ├── functional ├── all_functional_test.rb ├── custom_fields_controller_test.rb ├── information_controller_test.rb ├── issue_categories_controller_test.rb ├── issue_priorities_controller_test.rb ├── issue_status_controller_test.rb ├── issues_controller_test.rb ├── projects_controller_test.rb ├── queries_controller_test.rb ├── settings_controller_test.rb ├── time_entry_activities_controller_test.rb ├── trackers_controller_test.rb ├── users_controller_test.rb └── versions_controller_test.rb ├── integration └── hooks │ └── controller_issues_edit_after_save_test.rb ├── schema ├── customFields.xsd ├── information.xsd ├── issue.xsd ├── issueCategories.xsd ├── issuePriorities.xsd ├── issueStatus.xsd ├── issues.xsd ├── issuesPartial.xsd ├── projects.xsd ├── queries.xsd ├── settings.xsd ├── timeEntryActivities.xsd ├── trackers.xsd ├── types │ ├── attachments.xsd │ ├── customField.xsd │ ├── customValues.xsd │ ├── datetime.xsd │ ├── idList.xsd │ ├── issue.xsd │ ├── issueCategory.xsd │ ├── issueCustomField.xsd │ ├── issuePriority.xsd │ ├── issueRelations.xsd │ ├── issueStatus.xsd │ ├── journals.xsd │ ├── project.xsd │ ├── property.xsd │ ├── query.xsd │ ├── timeEntries.xsd │ ├── timeEntryActivity.xsd │ ├── tracker.xsd │ ├── user.xsd │ ├── version.xsd │ └── versionstring.xsd ├── updatedIssues.xsd ├── users.xsd └── versions.xsd └── test_helper.rb /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/Gemfile -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/Rakefile -------------------------------------------------------------------------------- /app/controllers/mylyn_connector/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/controllers/mylyn_connector/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/mylyn_connector/custom_fields_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/controllers/mylyn_connector/custom_fields_controller.rb -------------------------------------------------------------------------------- /app/controllers/mylyn_connector/groups_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/controllers/mylyn_connector/groups_controller.rb -------------------------------------------------------------------------------- /app/controllers/mylyn_connector/information_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/controllers/mylyn_connector/information_controller.rb -------------------------------------------------------------------------------- /app/controllers/mylyn_connector/issue_categories_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/controllers/mylyn_connector/issue_categories_controller.rb -------------------------------------------------------------------------------- /app/controllers/mylyn_connector/issue_priorities_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/controllers/mylyn_connector/issue_priorities_controller.rb -------------------------------------------------------------------------------- /app/controllers/mylyn_connector/issue_status_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/controllers/mylyn_connector/issue_status_controller.rb -------------------------------------------------------------------------------- /app/controllers/mylyn_connector/issues_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/controllers/mylyn_connector/issues_controller.rb -------------------------------------------------------------------------------- /app/controllers/mylyn_connector/projects_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/controllers/mylyn_connector/projects_controller.rb -------------------------------------------------------------------------------- /app/controllers/mylyn_connector/queries_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/controllers/mylyn_connector/queries_controller.rb -------------------------------------------------------------------------------- /app/controllers/mylyn_connector/settings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/controllers/mylyn_connector/settings_controller.rb -------------------------------------------------------------------------------- /app/controllers/mylyn_connector/time_entry_activities_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/controllers/mylyn_connector/time_entry_activities_controller.rb -------------------------------------------------------------------------------- /app/controllers/mylyn_connector/trackers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/controllers/mylyn_connector/trackers_controller.rb -------------------------------------------------------------------------------- /app/controllers/mylyn_connector/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/controllers/mylyn_connector/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/mylyn_connector/versions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/controllers/mylyn_connector/versions_controller.rb -------------------------------------------------------------------------------- /app/controllers/mylyn_connector/workflow_permissions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/controllers/mylyn_connector/workflow_permissions_controller.rb -------------------------------------------------------------------------------- /app/helpers/mylyn_connector/issues_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/helpers/mylyn_connector/issues_helper.rb -------------------------------------------------------------------------------- /app/helpers/mylyn_connector/mylyn_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/helpers/mylyn_connector/mylyn_helper.rb -------------------------------------------------------------------------------- /app/helpers/mylyn_connector/projects_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/helpers/mylyn_connector/projects_helper.rb -------------------------------------------------------------------------------- /app/views/mylyn_connector/500.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/500.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/custom_fields/all.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/custom_fields/all.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/groups/all.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/groups/all.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/information/version.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/information/version.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/issue_categories/all.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/issue_categories/all.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/issue_priorities/all.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/issue_priorities/all.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/issue_status/all.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/issue_status/all.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/issues/_list_issue.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/issues/_list_issue.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/issues/_partial_issue.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/issues/_partial_issue.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/issues/index.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/issues/index.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/issues/list.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/issues/list.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/issues/show.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/issues/show.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/issues/updated_since.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/issues/updated_since.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/projects/_project.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/projects/_project.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/projects/all.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/projects/all.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/queries/all.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/queries/all.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/settings/all.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/settings/all.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/time_entry_activities/all.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/time_entry_activities/all.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/trackers/all.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/trackers/all.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/users/all.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/users/all.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/versions/all.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/versions/all.xml.builder -------------------------------------------------------------------------------- /app/views/mylyn_connector/workflow_permissions/all.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/app/views/mylyn_connector/workflow_permissions/all.xml.builder -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/config/routes.rb -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/init.rb -------------------------------------------------------------------------------- /lang/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/lang/en.yml -------------------------------------------------------------------------------- /lib/mylyn_connector.rb: -------------------------------------------------------------------------------- 1 | module MylynConnector 2 | 3 | end 4 | -------------------------------------------------------------------------------- /lib/mylyn_connector/controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/lib/mylyn_connector/controller_test.rb -------------------------------------------------------------------------------- /lib/mylyn_connector/hooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/lib/mylyn_connector/hooks.rb -------------------------------------------------------------------------------- /lib/mylyn_connector/hooks/controller_issues_edit_after_save.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/lib/mylyn_connector/hooks/controller_issues_edit_after_save.rb -------------------------------------------------------------------------------- /lib/mylyn_connector/patches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/lib/mylyn_connector/patches.rb -------------------------------------------------------------------------------- /lib/mylyn_connector/patches/custom_value_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/lib/mylyn_connector/patches/custom_value_patch.rb -------------------------------------------------------------------------------- /lib/mylyn_connector/patches/project_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/lib/mylyn_connector/patches/project_patch.rb -------------------------------------------------------------------------------- /lib/mylyn_connector/rescue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/lib/mylyn_connector/rescue.rb -------------------------------------------------------------------------------- /lib/mylyn_connector/test.rb: -------------------------------------------------------------------------------- 1 | module MylynConnector::Test 2 | 3 | 4 | end 5 | -------------------------------------------------------------------------------- /lib/mylyn_connector/test/integration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/lib/mylyn_connector/test/integration_test.rb -------------------------------------------------------------------------------- /lib/mylyn_connector/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/lib/mylyn_connector/version.rb -------------------------------------------------------------------------------- /release-note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/release-note.txt -------------------------------------------------------------------------------- /test/fixtures/1.3/custom_fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/fixtures/1.3/custom_fields.yml -------------------------------------------------------------------------------- /test/fixtures/1.3/custom_values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/fixtures/1.3/custom_values.yml -------------------------------------------------------------------------------- /test/fixtures/1.3/enumerations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/fixtures/1.3/enumerations.yml -------------------------------------------------------------------------------- /test/fixtures/1.3/issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/fixtures/1.3/issues.yml -------------------------------------------------------------------------------- /test/fixtures/1.3/watchers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/fixtures/1.3/watchers.yml -------------------------------------------------------------------------------- /test/fixtures/2.0/custom_fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/fixtures/2.0/custom_fields.yml -------------------------------------------------------------------------------- /test/fixtures/2.0/custom_values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/fixtures/2.0/custom_values.yml -------------------------------------------------------------------------------- /test/fixtures/2.0/enumerations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/fixtures/2.0/enumerations.yml -------------------------------------------------------------------------------- /test/fixtures/2.0/issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/fixtures/2.0/issues.yml -------------------------------------------------------------------------------- /test/fixtures/2.0/watchers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/fixtures/2.0/watchers.yml -------------------------------------------------------------------------------- /test/functional/all_functional_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/functional/all_functional_test.rb -------------------------------------------------------------------------------- /test/functional/custom_fields_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/functional/custom_fields_controller_test.rb -------------------------------------------------------------------------------- /test/functional/information_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/functional/information_controller_test.rb -------------------------------------------------------------------------------- /test/functional/issue_categories_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/functional/issue_categories_controller_test.rb -------------------------------------------------------------------------------- /test/functional/issue_priorities_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/functional/issue_priorities_controller_test.rb -------------------------------------------------------------------------------- /test/functional/issue_status_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/functional/issue_status_controller_test.rb -------------------------------------------------------------------------------- /test/functional/issues_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/functional/issues_controller_test.rb -------------------------------------------------------------------------------- /test/functional/projects_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/functional/projects_controller_test.rb -------------------------------------------------------------------------------- /test/functional/queries_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/functional/queries_controller_test.rb -------------------------------------------------------------------------------- /test/functional/settings_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/functional/settings_controller_test.rb -------------------------------------------------------------------------------- /test/functional/time_entry_activities_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/functional/time_entry_activities_controller_test.rb -------------------------------------------------------------------------------- /test/functional/trackers_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/functional/trackers_controller_test.rb -------------------------------------------------------------------------------- /test/functional/users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/functional/users_controller_test.rb -------------------------------------------------------------------------------- /test/functional/versions_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/functional/versions_controller_test.rb -------------------------------------------------------------------------------- /test/integration/hooks/controller_issues_edit_after_save_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/integration/hooks/controller_issues_edit_after_save_test.rb -------------------------------------------------------------------------------- /test/schema/customFields.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/customFields.xsd -------------------------------------------------------------------------------- /test/schema/information.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/information.xsd -------------------------------------------------------------------------------- /test/schema/issue.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/issue.xsd -------------------------------------------------------------------------------- /test/schema/issueCategories.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/issueCategories.xsd -------------------------------------------------------------------------------- /test/schema/issuePriorities.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/issuePriorities.xsd -------------------------------------------------------------------------------- /test/schema/issueStatus.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/issueStatus.xsd -------------------------------------------------------------------------------- /test/schema/issues.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/issues.xsd -------------------------------------------------------------------------------- /test/schema/issuesPartial.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/issuesPartial.xsd -------------------------------------------------------------------------------- /test/schema/projects.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/projects.xsd -------------------------------------------------------------------------------- /test/schema/queries.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/queries.xsd -------------------------------------------------------------------------------- /test/schema/settings.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/settings.xsd -------------------------------------------------------------------------------- /test/schema/timeEntryActivities.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/timeEntryActivities.xsd -------------------------------------------------------------------------------- /test/schema/trackers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/trackers.xsd -------------------------------------------------------------------------------- /test/schema/types/attachments.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/attachments.xsd -------------------------------------------------------------------------------- /test/schema/types/customField.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/customField.xsd -------------------------------------------------------------------------------- /test/schema/types/customValues.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/customValues.xsd -------------------------------------------------------------------------------- /test/schema/types/datetime.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/datetime.xsd -------------------------------------------------------------------------------- /test/schema/types/idList.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/idList.xsd -------------------------------------------------------------------------------- /test/schema/types/issue.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/issue.xsd -------------------------------------------------------------------------------- /test/schema/types/issueCategory.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/issueCategory.xsd -------------------------------------------------------------------------------- /test/schema/types/issueCustomField.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/issueCustomField.xsd -------------------------------------------------------------------------------- /test/schema/types/issuePriority.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/issuePriority.xsd -------------------------------------------------------------------------------- /test/schema/types/issueRelations.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/issueRelations.xsd -------------------------------------------------------------------------------- /test/schema/types/issueStatus.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/issueStatus.xsd -------------------------------------------------------------------------------- /test/schema/types/journals.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/journals.xsd -------------------------------------------------------------------------------- /test/schema/types/project.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/project.xsd -------------------------------------------------------------------------------- /test/schema/types/property.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/property.xsd -------------------------------------------------------------------------------- /test/schema/types/query.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/query.xsd -------------------------------------------------------------------------------- /test/schema/types/timeEntries.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/timeEntries.xsd -------------------------------------------------------------------------------- /test/schema/types/timeEntryActivity.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/timeEntryActivity.xsd -------------------------------------------------------------------------------- /test/schema/types/tracker.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/tracker.xsd -------------------------------------------------------------------------------- /test/schema/types/user.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/user.xsd -------------------------------------------------------------------------------- /test/schema/types/version.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/version.xsd -------------------------------------------------------------------------------- /test/schema/types/versionstring.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/types/versionstring.xsd -------------------------------------------------------------------------------- /test/schema/updatedIssues.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/updatedIssues.xsd -------------------------------------------------------------------------------- /test/schema/users.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/users.xsd -------------------------------------------------------------------------------- /test/schema/versions.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/schema/versions.xsd -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopedrotaveira/redmine_mylyn_connector/HEAD/test/test_helper.rb --------------------------------------------------------------------------------