Skip to content
This repository has been archived by the owner on Mar 29, 2019. It is now read-only.

Changes auto_complete calls to GET requests #644

Closed
wants to merge 113 commits into from
Closed

Changes auto_complete calls to GET requests #644

wants to merge 113 commits into from

Commits on Aug 14, 2013

  1. Copy the full SHA
    d7efa79 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    761a110 View commit details
    Browse the repository at this point in the history
  3. add newline at end of config/environments/development.rb

    Toshi MARUYAMA authored and marutosi committed Aug 14, 2013
    Copy the full SHA
    47774fb View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    666cde5 View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    0633bb7 View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    91c917a View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    a8cd111 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2013

  1. Copy the full SHA
    c06450a View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    72c9499 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    ad3a5a1 View commit details
    Browse the repository at this point in the history
  4. Rename views: _*.rhtml to _*.erb and *.rhtml to *.html.erb

    As partials might also be used in js formatted responses, we just
    rename them to .erb. Normal templates are renamed to .html.erb.
    This follows the new Rails convention to play well with tilt.
    
    for i in `find app/views/**/_*.rhtml`; do \
      git mv $i `echo $i | sed s/\\.rhtml$/.erb/`; \
    done
    
    for i in `find app/views/**/*.rhtml`; do \
      git mv $i `echo $i | sed s/\\.rhtml$/.html.erb/`; \
    done
    
    --HG--
    rename : app/views/account/_login.rhtml => app/views/account/_login.erb
    rename : app/views/account/login.rhtml => app/views/account/login.html.erb
    rename : app/views/account/lost_password.rhtml => app/views/account/lost_password.html.erb
    rename : app/views/account/password_recovery.rhtml => app/views/account/password_recovery.html.erb
    rename : app/views/account/register.rhtml => app/views/account/register.html.erb
    rename : app/views/admin/_menu.rhtml => app/views/admin/_menu.erb
    rename : app/views/admin/_no_data.rhtml => app/views/admin/_no_data.erb
    rename : app/views/admin/index.rhtml => app/views/admin/index.html.erb
    rename : app/views/admin/info.rhtml => app/views/admin/info.html.erb
    rename : app/views/admin/plugins.rhtml => app/views/admin/plugins.html.erb
    rename : app/views/admin/projects.rhtml => app/views/admin/projects.html.erb
    rename : app/views/attachments/_form.rhtml => app/views/attachments/_form.erb
    rename : app/views/attachments/_links.rhtml => app/views/attachments/_links.erb
    rename : app/views/attachments/diff.rhtml => app/views/attachments/diff.html.erb
    rename : app/views/attachments/file.rhtml => app/views/attachments/file.html.erb
    rename : app/views/auth_sources/edit.rhtml => app/views/auth_sources/edit.html.erb
    rename : app/views/auth_sources/new.rhtml => app/views/auth_sources/new.html.erb
    rename : app/views/boards/_form.rhtml => app/views/boards/_form.erb
    rename : app/views/boards/edit.rhtml => app/views/boards/edit.html.erb
    rename : app/views/boards/index.rhtml => app/views/boards/index.html.erb
    rename : app/views/boards/new.rhtml => app/views/boards/new.html.erb
    rename : app/views/boards/show.rhtml => app/views/boards/show.html.erb
    rename : app/views/common/_calendar.rhtml => app/views/common/_calendar.erb
    rename : app/views/common/_diff.rhtml => app/views/common/_diff.erb
    rename : app/views/common/_file.rhtml => app/views/common/_file.erb
    rename : app/views/common/_preview.rhtml => app/views/common/_preview.erb
    rename : app/views/common/_tabs.rhtml => app/views/common/_tabs.erb
    rename : app/views/custom_fields/_form.rhtml => app/views/custom_fields/_form.erb
    rename : app/views/custom_fields/_index.rhtml => app/views/custom_fields/_index.erb
    rename : app/views/custom_fields/edit.rhtml => app/views/custom_fields/edit.html.erb
    rename : app/views/custom_fields/index.rhtml => app/views/custom_fields/index.html.erb
    rename : app/views/custom_fields/new.rhtml => app/views/custom_fields/new.html.erb
    rename : app/views/documents/_document.rhtml => app/views/documents/_document.erb
    rename : app/views/documents/_form.rhtml => app/views/documents/_form.erb
    rename : app/views/documents/edit.rhtml => app/views/documents/edit.html.erb
    rename : app/views/documents/index.rhtml => app/views/documents/index.html.erb
    rename : app/views/documents/new.rhtml => app/views/documents/new.html.erb
    rename : app/views/documents/show.rhtml => app/views/documents/show.html.erb
    rename : app/views/enumerations/_form.rhtml => app/views/enumerations/_form.erb
    rename : app/views/enumerations/destroy.rhtml => app/views/enumerations/destroy.html.erb
    rename : app/views/enumerations/edit.rhtml => app/views/enumerations/edit.html.erb
    rename : app/views/enumerations/list.rhtml => app/views/enumerations/list.html.erb
    rename : app/views/enumerations/new.rhtml => app/views/enumerations/new.html.erb
    rename : app/views/issue_categories/_form.rhtml => app/views/issue_categories/_form.erb
    rename : app/views/issue_categories/destroy.rhtml => app/views/issue_categories/destroy.html.erb
    rename : app/views/issue_categories/edit.rhtml => app/views/issue_categories/edit.html.erb
    rename : app/views/issue_moves/new.rhtml => app/views/issue_moves/new.html.erb
    rename : app/views/issue_relations/_form.rhtml => app/views/issue_relations/_form.erb
    rename : app/views/issue_statuses/_form.rhtml => app/views/issue_statuses/_form.erb
    rename : app/views/issue_statuses/edit.rhtml => app/views/issue_statuses/edit.html.erb
    rename : app/views/issue_statuses/new.rhtml => app/views/issue_statuses/new.html.erb
    rename : app/views/issues/_action_menu.rhtml => app/views/issues/_action_menu.erb
    rename : app/views/issues/_attributes.rhtml => app/views/issues/_attributes.erb
    rename : app/views/issues/_changesets.rhtml => app/views/issues/_changesets.erb
    rename : app/views/issues/_edit.rhtml => app/views/issues/_edit.erb
    rename : app/views/issues/_form.rhtml => app/views/issues/_form.erb
    rename : app/views/issues/_form_custom_fields.rhtml => app/views/issues/_form_custom_fields.erb
    rename : app/views/issues/_form_update.rhtml => app/views/issues/_form_update.erb
    rename : app/views/issues/_history.rhtml => app/views/issues/_history.erb
    rename : app/views/issues/_list.rhtml => app/views/issues/_list.erb
    rename : app/views/issues/_list_simple.rhtml => app/views/issues/_list_simple.erb
    rename : app/views/issues/_relations.rhtml => app/views/issues/_relations.erb
    rename : app/views/issues/_sidebar.rhtml => app/views/issues/_sidebar.erb
    rename : app/views/issues/bulk_edit.rhtml => app/views/issues/bulk_edit.html.erb
    rename : app/views/issues/destroy.rhtml => app/views/issues/destroy.html.erb
    rename : app/views/issues/edit.rhtml => app/views/issues/edit.html.erb
    rename : app/views/issues/index.rhtml => app/views/issues/index.html.erb
    rename : app/views/issues/new.rhtml => app/views/issues/new.html.erb
    rename : app/views/issues/show.rhtml => app/views/issues/show.html.erb
    rename : app/views/journals/_notes_form.rhtml => app/views/journals/_notes_form.erb
    rename : app/views/layouts/admin.rhtml => app/views/layouts/admin.html.erb
    rename : app/views/layouts/base.rhtml => app/views/layouts/base.html.erb
    rename : app/views/ldap_auth_sources/_form.rhtml => app/views/ldap_auth_sources/_form.erb
    rename : app/views/members/autocomplete_for_member.rhtml => app/views/members/autocomplete_for_member.html.erb
    rename : app/views/messages/_form.rhtml => app/views/messages/_form.erb
    rename : app/views/messages/edit.rhtml => app/views/messages/edit.html.erb
    rename : app/views/messages/new.rhtml => app/views/messages/new.html.erb
    rename : app/views/messages/show.rhtml => app/views/messages/show.html.erb
    rename : app/views/my/_block.rhtml => app/views/my/_block.erb
    rename : app/views/my/_sidebar.rhtml => app/views/my/_sidebar.erb
    rename : app/views/my/account.rhtml => app/views/my/account.html.erb
    rename : app/views/my/page.rhtml => app/views/my/page.html.erb
    rename : app/views/my/page_layout.rhtml => app/views/my/page_layout.html.erb
    rename : app/views/my/password.rhtml => app/views/my/password.html.erb
    rename : app/views/news/_form.rhtml => app/views/news/_form.erb
    rename : app/views/news/_news.rhtml => app/views/news/_news.erb
    rename : app/views/news/edit.rhtml => app/views/news/edit.html.erb
    rename : app/views/news/index.rhtml => app/views/news/index.html.erb
    rename : app/views/news/new.rhtml => app/views/news/new.html.erb
    rename : app/views/news/show.rhtml => app/views/news/show.html.erb
    rename : app/views/projects/_edit.rhtml => app/views/projects/_edit.erb
    rename : app/views/projects/_form.rhtml => app/views/projects/_form.erb
    rename : app/views/projects/copy.rhtml => app/views/projects/copy.html.erb
    rename : app/views/projects/destroy.rhtml => app/views/projects/destroy.html.erb
    rename : app/views/projects/index.rhtml => app/views/projects/index.html.erb
    rename : app/views/projects/list_members.rhtml => app/views/projects/list_members.html.erb
    rename : app/views/projects/settings.rhtml => app/views/projects/settings.html.erb
    rename : app/views/projects/show.rhtml => app/views/projects/show.html.erb
    rename : app/views/queries/_columns.rhtml => app/views/queries/_columns.erb
    rename : app/views/queries/_filters.rhtml => app/views/queries/_filters.erb
    rename : app/views/queries/_form.rhtml => app/views/queries/_form.erb
    rename : app/views/queries/edit.rhtml => app/views/queries/edit.html.erb
    rename : app/views/queries/index.rhtml => app/views/queries/index.html.erb
    rename : app/views/queries/new.rhtml => app/views/queries/new.html.erb
    rename : app/views/reports/_details.rhtml => app/views/reports/_details.erb
    rename : app/views/reports/_simple.rhtml => app/views/reports/_simple.erb
    rename : app/views/reports/issue_report.rhtml => app/views/reports/issue_report.html.erb
    rename : app/views/reports/issue_report_details.rhtml => app/views/reports/issue_report_details.html.erb
    rename : app/views/repositories/_breadcrumbs.rhtml => app/views/repositories/_breadcrumbs.erb
    rename : app/views/repositories/_dir_list.rhtml => app/views/repositories/_dir_list.erb
    rename : app/views/repositories/_dir_list_content.rhtml => app/views/repositories/_dir_list_content.erb
    rename : app/views/repositories/_link_to_functions.rhtml => app/views/repositories/_link_to_functions.erb
    rename : app/views/repositories/_navigation.rhtml => app/views/repositories/_navigation.erb
    rename : app/views/repositories/_revisions.rhtml => app/views/repositories/_revisions.erb
    rename : app/views/repositories/annotate.rhtml => app/views/repositories/annotate.html.erb
    rename : app/views/repositories/changes.rhtml => app/views/repositories/changes.html.erb
    rename : app/views/repositories/committers.rhtml => app/views/repositories/committers.html.erb
    rename : app/views/repositories/diff.rhtml => app/views/repositories/diff.html.erb
    rename : app/views/repositories/entry.rhtml => app/views/repositories/entry.html.erb
    rename : app/views/repositories/revision.rhtml => app/views/repositories/revision.html.erb
    rename : app/views/repositories/revisions.rhtml => app/views/repositories/revisions.html.erb
    rename : app/views/repositories/show.rhtml => app/views/repositories/show.html.erb
    rename : app/views/repositories/stats.rhtml => app/views/repositories/stats.html.erb
    rename : app/views/roles/_form.rhtml => app/views/roles/_form.erb
    rename : app/views/roles/edit.rhtml => app/views/roles/edit.html.erb
    rename : app/views/roles/new.rhtml => app/views/roles/new.html.erb
    rename : app/views/roles/report.rhtml => app/views/roles/report.html.erb
    rename : app/views/search/index.rhtml => app/views/search/index.html.erb
    rename : app/views/settings/_authentication.rhtml => app/views/settings/_authentication.erb
    rename : app/views/settings/_display.rhtml => app/views/settings/_display.erb
    rename : app/views/settings/_general.rhtml => app/views/settings/_general.erb
    rename : app/views/settings/_issues.rhtml => app/views/settings/_issues.erb
    rename : app/views/settings/_mail_handler.rhtml => app/views/settings/_mail_handler.erb
    rename : app/views/settings/_notifications.rhtml => app/views/settings/_notifications.erb
    rename : app/views/settings/_projects.rhtml => app/views/settings/_projects.erb
    rename : app/views/settings/_repositories.rhtml => app/views/settings/_repositories.erb
    rename : app/views/settings/edit.rhtml => app/views/settings/edit.html.erb
    rename : app/views/settings/plugin.rhtml => app/views/settings/plugin.html.erb
    rename : app/views/time_entry_reports/_report_criteria.rhtml => app/views/time_entry_reports/_report_criteria.erb
    rename : app/views/time_entry_reports/report.rhtml => app/views/time_entry_reports/report.html.erb
    rename : app/views/timelog/_date_range.rhtml => app/views/timelog/_date_range.erb
    rename : app/views/timelog/_list.rhtml => app/views/timelog/_list.erb
    rename : app/views/timelog/edit.rhtml => app/views/timelog/edit.html.erb
    rename : app/views/trackers/_form.rhtml => app/views/trackers/_form.erb
    rename : app/views/trackers/edit.rhtml => app/views/trackers/edit.html.erb
    rename : app/views/trackers/new.rhtml => app/views/trackers/new.html.erb
    rename : app/views/users/_form.rhtml => app/views/users/_form.erb
    rename : app/views/users/_general.rhtml => app/views/users/_general.erb
    rename : app/views/users/_groups.rhtml => app/views/users/_groups.erb
    rename : app/views/users/_memberships.rhtml => app/views/users/_memberships.erb
    rename : app/views/users/edit.rhtml => app/views/users/edit.html.erb
    rename : app/views/users/index.rhtml => app/views/users/index.html.erb
    rename : app/views/users/show.rhtml => app/views/users/show.html.erb
    rename : app/views/versions/_form.rhtml => app/views/versions/_form.erb
    rename : app/views/versions/_issue_counts.rhtml => app/views/versions/_issue_counts.erb
    rename : app/views/versions/_overview.rhtml => app/views/versions/_overview.erb
    rename : app/views/versions/edit.rhtml => app/views/versions/edit.html.erb
    rename : app/views/versions/show.rhtml => app/views/versions/show.html.erb
    rename : app/views/watchers/_watchers.rhtml => app/views/watchers/_watchers.erb
    rename : app/views/welcome/index.rhtml => app/views/welcome/index.html.erb
    rename : app/views/welcome/robots.rhtml => app/views/welcome/robots.html.erb
    rename : app/views/wiki/_content.rhtml => app/views/wiki/_content.erb
    rename : app/views/wiki/_sidebar.rhtml => app/views/wiki/_sidebar.erb
    rename : app/views/wiki/annotate.rhtml => app/views/wiki/annotate.html.erb
    rename : app/views/wiki/destroy.rhtml => app/views/wiki/destroy.html.erb
    rename : app/views/wiki/diff.rhtml => app/views/wiki/diff.html.erb
    rename : app/views/wiki/edit.rhtml => app/views/wiki/edit.html.erb
    rename : app/views/wiki/export.rhtml => app/views/wiki/export.html.erb
    rename : app/views/wiki/export_multiple.rhtml => app/views/wiki/export_multiple.html.erb
    rename : app/views/wiki/history.rhtml => app/views/wiki/history.html.erb
    rename : app/views/wiki/rename.rhtml => app/views/wiki/rename.html.erb
    rename : app/views/wiki/show.rhtml => app/views/wiki/show.html.erb
    rename : app/views/wikis/destroy.rhtml => app/views/wikis/destroy.html.erb
    rename : app/views/workflows/_action_menu.rhtml => app/views/workflows/_action_menu.erb
    rename : app/views/workflows/copy.rhtml => app/views/workflows/copy.html.erb
    rename : app/views/workflows/edit.rhtml => app/views/workflows/edit.html.erb
    rename : app/views/workflows/index.rhtml => app/views/workflows/index.html.erb
    meineerde authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    bd1db29 View commit details
    Browse the repository at this point in the history
  5. Rename remaining rhtml view templates to html.erb

    --HG--
    rename : app/views/my/blocks/_calendar.rhtml => app/views/my/blocks/_calendar.html.erb
    rename : app/views/my/blocks/_documents.rhtml => app/views/my/blocks/_documents.html.erb
    rename : app/views/my/blocks/_issuesassignedtome.rhtml => app/views/my/blocks/_issuesassignedtome.html.erb
    rename : app/views/my/blocks/_issuesreportedbyme.rhtml => app/views/my/blocks/_issuesreportedbyme.html.erb
    rename : app/views/my/blocks/_issueswatched.rhtml => app/views/my/blocks/_issueswatched.html.erb
    rename : app/views/my/blocks/_news.rhtml => app/views/my/blocks/_news.html.erb
    rename : app/views/my/blocks/_timelog.rhtml => app/views/my/blocks/_timelog.html.erb
    rename : app/views/projects/settings/_activities.rhtml => app/views/projects/settings/_activities.html.erb
    rename : app/views/projects/settings/_boards.rhtml => app/views/projects/settings/_boards.html.erb
    rename : app/views/projects/settings/_issue_categories.rhtml => app/views/projects/settings/_issue_categories.html.erb
    rename : app/views/projects/settings/_members.rhtml => app/views/projects/settings/_members.html.erb
    rename : app/views/projects/settings/_modules.rhtml => app/views/projects/settings/_modules.html.erb
    rename : app/views/projects/settings/_repository.rhtml => app/views/projects/settings/_repository.html.erb
    rename : app/views/projects/settings/_versions.rhtml => app/views/projects/settings/_versions.html.erb
    rename : app/views/projects/settings/_wiki.rhtml => app/views/projects/settings/_wiki.html.erb
    rename : extra/sample_plugin/app/views/example/say_goodbye.rhtml => extra/sample_plugin/app/views/example/say_goodbye.html.erb
    rename : extra/sample_plugin/app/views/example/say_hello.rhtml => extra/sample_plugin/app/views/example/say_hello.html.erb
    rename : extra/sample_plugin/app/views/my/blocks/_sample_block.rhtml => extra/sample_plugin/app/views/my/blocks/_sample_block.html.erb
    rename : extra/sample_plugin/app/views/settings/_sample_plugin_settings.rhtml => extra/sample_plugin/app/views/settings/_sample_plugin_settings.html.erb
    thegcat authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    a0e0381 View commit details
    Browse the repository at this point in the history
  6. add labelled_form_for

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7939 e93f8b46-1217-0410-a6f0-8f06a7374b81
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    dc6729e View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    d963093 View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    55e0586 View commit details
    Browse the repository at this point in the history
  9. Resourcified boards.

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8020 e93f8b46-1217-0410-a6f0-8f06a7374b81
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    8713e6c View commit details
    Browse the repository at this point in the history
  10. test: route: move boards test to new file

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8320 e93f8b46-1217-0410-a6f0-8f06a7374b81
    marutosi committed Aug 18, 2013
    Copy the full SHA
    b1d7b2d View commit details
    Browse the repository at this point in the history
  11. Resourcified documents.

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8010 e93f8b46-1217-0410-a6f0-8f06a7374b81
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    71776db View commit details
    Browse the repository at this point in the history
  12. test: route: move documents test to new file

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8324 e93f8b46-1217-0410-a6f0-8f06a7374b81
    marutosi committed Aug 18, 2013
    Copy the full SHA
    3aebd7b View commit details
    Browse the repository at this point in the history
  13. test: route: split documents test whether scoped under project or not

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8549 e93f8b46-1217-0410-a6f0-8f06a7374b81
    marutosi committed Aug 18, 2013
    Copy the full SHA
    fa6fbfe View commit details
    Browse the repository at this point in the history
  14. resourcified issue categories

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7881 e93f8b46-1217-0410-a6f0-8f06a7374b81
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    036be0f View commit details
    Browse the repository at this point in the history
  15. Resourcified attachments.

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7948 e93f8b46-1217-0410-a6f0-8f06a7374b81
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    bb97f16 View commit details
    Browse the repository at this point in the history
  16. Resourcified trackers.

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7888 e93f8b46-1217-0410-a6f0-8f06a7374b81
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    9ffd605 View commit details
    Browse the repository at this point in the history
  17. Resourcified issue statuses.

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7890 e93f8b46-1217-0410-a6f0-8f06a7374b81
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    d1879ec View commit details
    Browse the repository at this point in the history
  18. Removed TabularFormBuilder references in views.

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8142 e93f8b46-1217-0410-a6f0-8f06a7374b81
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    9a7a115 View commit details
    Browse the repository at this point in the history
  19. Adds a helper for displaying validation error messages.

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9017 e93f8b46-1217-0410-a6f0-8f06a7374b81
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    43930de View commit details
    Browse the repository at this point in the history
  20. add ":id => nil" to "Overall activity" link_to

    On Rails 3.2.1, "Overall activity" link becomes "/assets?controller=activities".
    
    Contributed by John Yani.
    
    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8922 e93f8b46-1217-0410-a6f0-8f06a7374b81
    marutosi committed Aug 18, 2013
    Copy the full SHA
    6a8cdd0 View commit details
    Browse the repository at this point in the history
  21. Renamed TabularFormBuilder to Redmine::Views::LabelledFormBuilder.

    --HG--
    rename : lib/tabular_form_builder.rb => lib/redmine/views/labelled_form_builder.rb
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    e947a07 View commit details
    Browse the repository at this point in the history
  22. Copy the full SHA
    9bd74d0 View commit details
    Browse the repository at this point in the history
  23. Copy the full SHA
    64fc36a View commit details
    Browse the repository at this point in the history
  24. removed after_initialize methods

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8288 e93f8b46-1217-0410-a6f0-8f06a7374b81
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    c70240e View commit details
    Browse the repository at this point in the history
  25. Copy the full SHA
    56512e7 View commit details
    Browse the repository at this point in the history
  26. no need to delete fixtures in test/unit/lib/redmine/helpers/gantt_tes…

    …t.rb
    
    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9089 e93f8b46-1217-0410-a6f0-8f06a7374b81
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    f6fb884 View commit details
    Browse the repository at this point in the history
  27. Copy the full SHA
    1f7ef37 View commit details
    Browse the repository at this point in the history
  28. Copy the full SHA
    d70391f View commit details
    Browse the repository at this point in the history
  29. Copy the full SHA
    b7dc232 View commit details
    Browse the repository at this point in the history
  30. Copy the full SHA
    4da19b8 View commit details
    Browse the repository at this point in the history
  31. Copy the full SHA
    cf2072f View commit details
    Browse the repository at this point in the history
  32. Copy the full SHA
    7c35e2c View commit details
    Browse the repository at this point in the history
  33. replace "fixtures :all" in IssuesHelperTest

    Toshi MARUYAMA authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    3665a54 View commit details
    Browse the repository at this point in the history
  34. use ActiveSupport::TestCase instead of HelperTestCase

    ActionView::Helpers::ActiveRecordHelper at test/helper_testcase.rb
    does not exist on Rails 3.0.
    
    --HG--
    extra : rebase_source : b0401e7bdeca23cc748ec49c31d71bf4184a4720
    marutosi committed Aug 18, 2013
    Copy the full SHA
    ef4387b View commit details
    Browse the repository at this point in the history
  35. use ActionView::TestCase instead of HelperTestCase

    ActionView::Helpers::ActiveRecordHelper at test/helper_testcase.rb
    does not exist on Rails 3.0.
    
    --HG--
    extra : rebase_source : 97ecdba127b282436aa1206b468ed3f5333835a7
    marutosi committed Aug 18, 2013
    Copy the full SHA
    2a606f0 View commit details
    Browse the repository at this point in the history
  36. Makes tests inherit from ActionView::TestCase.

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8277 e93f8b46-1217-0410-a6f0-8f06a7374b81
    
    --HG--
    extra : rebase_source : 02a6b3fffbb9dba58da2e89a898c6a0f1e6ef661
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    60a9b98 View commit details
    Browse the repository at this point in the history
  37. Get rid of HelperTestcase.

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8278 e93f8b46-1217-0410-a6f0-8f06a7374b81
    
    --HG--
    extra : rebase_source : 25101286b13f9db29edd6656d0c9bbe5acac79c4
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    4ef48cf View commit details
    Browse the repository at this point in the history
  38. Change tests to use ruby/rails assertions.

    --HG--
    extra : rebase_source : 8d2a7c868e1bbd7094d9eb7cf6c9bd65cf5794c8
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    56cded2 View commit details
    Browse the repository at this point in the history
  39. IssuesHelperTest

    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    e3eafd6 View commit details
    Browse the repository at this point in the history
  40. Test cleanup.

    --HG--
    extra : source : 33473b4e8f1a08898b0378b4f655253406778e32
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    3051068 View commit details
    Browse the repository at this point in the history
  41. Test cleanup.

    --HG--
    extra : source : a7507e79f48ca6059008e1fb5261fd5fa4e66627
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    0aa58df View commit details
    Browse the repository at this point in the history
  42. Test cleanup.

    --HG--
    extra : source : f507f2d6567cc360026aea3416294d2857463803
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    2e0d3e7 View commit details
    Browse the repository at this point in the history
  43. replace object_daddy on unit tests

    --HG--
    extra : source : ddf65daf2e9d013063f9a34aee7aae63dde67a29
    Toshi MARUYAMA authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    7f70ec3 View commit details
    Browse the repository at this point in the history
  44. replace object_daddy on ApiTest::UsersTest

    --HG--
    extra : source : a24418020d78b4b2aafeb001ac7ca9371319790e
    marutosi committed Aug 18, 2013
    Copy the full SHA
    00373b9 View commit details
    Browse the repository at this point in the history
  45. replace object_daddy at test/integration/layout_test.rb

    --HG--
    extra : source : 4f11c676b8e59645b60321864e1eb9a8ef4263ae
    marutosi committed Aug 18, 2013
    Copy the full SHA
    d273120 View commit details
    Browse the repository at this point in the history
  46. replace object_daddy on functional tests

    --HG--
    extra : source : 7ead435c8f6e79ebffb3f6f33d18458e464952ed
    marutosi committed Aug 18, 2013
    Copy the full SHA
    38fc6ca View commit details
    Browse the repository at this point in the history
  47. replace object_daddy on 'should return issues matching a given id' of…

    … AutoCompletesControllerTest
    
    --HG--
    extra : source : 523af1533c6ff135b80506f69a400b4b0ed8aa98
    marutosi committed Aug 18, 2013
    Copy the full SHA
    db7514d View commit details
    Browse the repository at this point in the history
  48. replace object_daddy on AutoCompletesControllerTest

    --HG--
    extra : source : 74cc70e1792cb86ab1072f01da5f63fd8760039f
    marutosi committed Aug 18, 2013
    Copy the full SHA
    bfe0fe0 View commit details
    Browse the repository at this point in the history
  49. Removed some generate! calls.

    --HG--
    extra : source : a18099ec3258a92791e0587e44b6101494f496f8
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    32fb375 View commit details
    Browse the repository at this point in the history
  50. test cleanup test/functional/auth_sources_controller_test.rb

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8461 e93f8b46-1217-0410-a6f0-8f06a7374b81
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    ea0b7f6 View commit details
    Browse the repository at this point in the history
  51. Removed some generate! calls.

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9078 e93f8b46-1217-0410-a6f0-8f06a7374b81
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    097a013 View commit details
    Browse the repository at this point in the history
  52. remove object_daddy from tests

    --HG--
    extra : source : 5016ad0cdef1760b0543526f21cbeccf0c4ab20c
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    af765d8 View commit details
    Browse the repository at this point in the history
  53. remove object_daddy dependency

    --HG--
    rename : test/object_daddy_helpers.rb => test/object_helpers.rb
    extra : source : bf1012253c69191818ca4d3272ad9f408bde9cd8
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    8b59093 View commit details
    Browse the repository at this point in the history
  54. Test cleanup.

    --HG--
    extra : source : 75c7b5886f058ac458cbdce67b0280745494ee00
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    3c32ed3 View commit details
    Browse the repository at this point in the history
  55. upgrade shoulda 2.11

    --HG--
    extra : source : e99a3b3cbe9bd1d2d0f0ecd78cc1ba860aa3164a
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    d33e1a3 View commit details
    Browse the repository at this point in the history
  56. replace should_have_many in test/unit/project_test.rb

    --HG--
    extra : source : 414cacb55090d29631543b67ccc2ce7a63e17a0d
    marutosi committed Aug 18, 2013
    Copy the full SHA
    66449c6 View commit details
    Browse the repository at this point in the history
  57. replace should_validate_presence_of in test/unit/project_test.rb

    --HG--
    extra : source : 344564bf56040e719e16b094b56927c33c59c109
    marutosi committed Aug 18, 2013
    Copy the full SHA
    e6dcf16 View commit details
    Browse the repository at this point in the history
  58. replace should_validate_uniqueness_of in test/unit/project_test.rb

    --HG--
    extra : source : 58467e580a0a21bdf84d59b98df5a461ebfa4642
    marutosi committed Aug 18, 2013
    Copy the full SHA
    36d5a6f View commit details
    Browse the repository at this point in the history
  59. replace should_have_one in test/unit/project_test.rb

    --HG--
    extra : source : 80a8c66a81193a9663e86e389662b3622a371d99
    marutosi committed Aug 18, 2013
    Copy the full SHA
    0781374 View commit details
    Browse the repository at this point in the history
  60. replace should_have_and_belong_to_many in test/unit/project_test.rb

    --HG--
    extra : source : 9eb9efd9fa4d4e74f30b39e59946b23b58428117
    marutosi committed Aug 18, 2013
    Copy the full SHA
    048c2be View commit details
    Browse the repository at this point in the history
  61. replace should_assign_to in test/functional/wiki_controller_test.rb

    --HG--
    extra : source : e767e779e5d46bd86668550f8ff88335e53fb55f
    marutosi committed Aug 18, 2013
    Copy the full SHA
    b09294c View commit details
    Browse the repository at this point in the history
  62. replace should_respond_with_content_type in test/functional/wiki_cont…

    …roller_test.rb
    
    --HG--
    extra : source : 9f0a8de9199e523eea7daf483d37d7757cf884e8
    marutosi committed Aug 18, 2013
    Copy the full SHA
    abc9fb1 View commit details
    Browse the repository at this point in the history
  63. replace should_render_template in test/functional/wiki_controller_tes…

    …t.rb
    
    --HG--
    extra : source : db37ccebcfac0cec0c44c319923e08b1832a7641
    marutosi committed Aug 18, 2013
    Copy the full SHA
    b5975ed View commit details
    Browse the repository at this point in the history
  64. replace should_assign_to in test/functional/reports_controller_test.rb

    --HG--
    extra : source : 482080ef85a2d5979aa106b8be65f7402d3be590
    marutosi committed Aug 18, 2013
    Copy the full SHA
    28ef0fc View commit details
    Browse the repository at this point in the history
  65. replace should_render_template in test/functional/reports_controller_…

    …test.rb
    
    --HG--
    extra : source : a0a2d2d94bbb5a3013c951246dcc91d841d380b0
    marutosi committed Aug 18, 2013
    Copy the full SHA
    c915121 View commit details
    Browse the repository at this point in the history
  66. replace should_redirect_to in test/functional/wiki_controller_test.rb

    --HG--
    extra : source : 3d4256322b4be4a9a9b5018b72eb77940fe7e529
    marutosi committed Aug 18, 2013
    Copy the full SHA
    66a4b0a View commit details
    Browse the repository at this point in the history
  67. replace should_have_one in test/unit/user_test.rb

    --HG--
    extra : source : 7301ef5ecb9ddd1a9393c648f22a7f70f7b9bc3c
    marutosi committed Aug 18, 2013
    Copy the full SHA
    63ee044 View commit details
    Browse the repository at this point in the history
  68. replace should_assign_to in test/functional/auto_completes_controller…

    …_test.rb
    
    --HG--
    extra : source : 4ac4aca87bd1f1cfd4bae448b36bd175cbbb59b8
    marutosi committed Aug 18, 2013
    Copy the full SHA
    1383188 View commit details
    Browse the repository at this point in the history
  69. replace should_assign_to in test/functional/ldap_auth_sources_control…

    …ler.rb
    
    --HG--
    extra : source : 7203f704e96d428b1a1f052ff383ba7ce4854278
    marutosi committed Aug 18, 2013
    Copy the full SHA
    21e55e0 View commit details
    Browse the repository at this point in the history
  70. replace should_render_template in test/functional/ldap_auth_sources_c…

    …ontroller.rb
    
    --HG--
    extra : source : c1a2ef87bcf1915affa184d0113b7ecb0221347a
    marutosi committed Aug 18, 2013
    Copy the full SHA
    dd60933 View commit details
    Browse the repository at this point in the history
  71. replace should_respond_with in test/functional/wiki_controller_test.rb

    --HG--
    extra : source : 992c3e0aac1b83c12696a76b04104e2466fea02b
    marutosi committed Aug 18, 2013
    Copy the full SHA
    6b182de View commit details
    Browse the repository at this point in the history
  72. replace should_respond_with in test/functional/wiki_controller_test.rb

    --HG--
    extra : source : 9f9ad7e149a991aa77ad532ea68a0de427abf8a1
    marutosi committed Aug 18, 2013
    Copy the full SHA
    87b6046 View commit details
    Browse the repository at this point in the history
  73. replace should_respond_with in test/functional/ldap_auth_sources_cont…

    …roller.rb
    
    --HG--
    extra : source : 88372d128fd1702058d6ae77d93808440a314928
    marutosi committed Aug 18, 2013
    Copy the full SHA
    e1d845d View commit details
    Browse the repository at this point in the history
  74. replace should_render_template in test/functional/auto_completes_cont…

    …roller_test.rb
    
    --HG--
    extra : source : 86bb9aa691196c411ba3efdda4e8f39f0742e8c3
    marutosi committed Aug 18, 2013
    Copy the full SHA
    51c7d90 View commit details
    Browse the repository at this point in the history
  75. replace should_redirect_to in test/functional/issue_statuses_controll…

    …er_test.rb
    
    --HG--
    extra : source : b40f10de48eea81f0258a648093fc1e594347d24
    marutosi committed Aug 18, 2013
    Copy the full SHA
    01f9498 View commit details
    Browse the repository at this point in the history
  76. replace should_redirect_to in test/functional/my_controller_test.rb

    --HG--
    extra : source : 5f09d5af6281ed95bdfa7acc196ae7180cde4cf4
    marutosi committed Aug 18, 2013
    Copy the full SHA
    c4aa4e7 View commit details
    Browse the repository at this point in the history
  77. Copy the full SHA
    39b3385 View commit details
    Browse the repository at this point in the history
  78. Copy the full SHA
    3c827ae View commit details
    Browse the repository at this point in the history
  79. Removed obsolete routes.

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8017 e93f8b46-1217-0410-a6f0-8f06a7374b81
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    de3c5ed View commit details
    Browse the repository at this point in the history
  80. Routes cleanup.

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8019 e93f8b46-1217-0410-a6f0-8f06a7374b81
    jplang authored and marutosi committed Aug 18, 2013
    Copy the full SHA
    1c42581 View commit details
    Browse the repository at this point in the history
  81. test: route: add account test

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8326 e93f8b46-1217-0410-a6f0-8f06a7374b81
    marutosi committed Aug 18, 2013
    Copy the full SHA
    98cf90b View commit details
    Browse the repository at this point in the history
  82. test: route: simplify account tests

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8365 e93f8b46-1217-0410-a6f0-8f06a7374b81
    marutosi committed Aug 18, 2013
    Copy the full SHA
    52cfb7b View commit details
    Browse the repository at this point in the history
  83. test: route: add sys test

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8396 e93f8b46-1217-0410-a6f0-8f06a7374b81
    marutosi committed Aug 18, 2013
    Copy the full SHA
    f8b652b View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2013

  1. Copy the full SHA
    a113a47 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2013

  1. Copy the full SHA
    3923d35 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    2e915d3 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    1a358b6 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    9b5e43a View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    9c21a91 View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    d5bff29 View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    4995de0 View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    5ab0da9 View commit details
    Browse the repository at this point in the history
  9. Copy the full SHA
    42c4faa View commit details
    Browse the repository at this point in the history
  10. Copy the full SHA
    a2dc7a8 View commit details
    Browse the repository at this point in the history
  11. Copy the full SHA
    e68bfa6 View commit details
    Browse the repository at this point in the history
  12. Copy the full SHA
    9ca9d4a View commit details
    Browse the repository at this point in the history
  13. Copy the full SHA
    aa403da View commit details
    Browse the repository at this point in the history
  14. Copy the full SHA
    bda90fd View commit details
    Browse the repository at this point in the history
  15. Copy the full SHA
    ab5ae20 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2013

  1. Revert "[#827] Add status group in time entries report."

    This reverts commit 61a65d4.
    marutosi committed Aug 21, 2013
    Copy the full SHA
    21dbe4f View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    ba9172e View commit details
    Browse the repository at this point in the history
  3. Extracted time report logic from the controller.

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8026 e93f8b46-1217-0410-a6f0-8f06a7374b81
    jplang authored and marutosi committed Aug 21, 2013
    Copy the full SHA
    907abbb View commit details
    Browse the repository at this point in the history
  4. Dropped TimeEntryReportsController.

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8027 e93f8b46-1217-0410-a6f0-8f06a7374b81
    jplang authored and marutosi committed Aug 21, 2013
    Copy the full SHA
    1de6572 View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    7aeac07 View commit details
    Browse the repository at this point in the history
  6. route: cleanup timelog

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8029 e93f8b46-1217-0410-a6f0-8f06a7374b81
    jplang authored and marutosi committed Aug 21, 2013
    Copy the full SHA
    f67a4b3 View commit details
    Browse the repository at this point in the history
  7. Changes auto_complete calls to GET requests.

    git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8130 e93f8b46-1217-0410-a6f0-8f06a7374b81
    jplang authored and marutosi committed Aug 21, 2013
    Copy the full SHA
    7415869 View commit details
    Browse the repository at this point in the history