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

Conversation

marutosi
Copy link
Contributor

No description provided.

marutosi and others added 30 commits August 14, 2013 13:01
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
--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
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7939 e93f8b46-1217-0410-a6f0-8f06a7374b81
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8020 e93f8b46-1217-0410-a6f0-8f06a7374b81
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8320 e93f8b46-1217-0410-a6f0-8f06a7374b81
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8010 e93f8b46-1217-0410-a6f0-8f06a7374b81
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8324 e93f8b46-1217-0410-a6f0-8f06a7374b81
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8549 e93f8b46-1217-0410-a6f0-8f06a7374b81
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7881 e93f8b46-1217-0410-a6f0-8f06a7374b81
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7948 e93f8b46-1217-0410-a6f0-8f06a7374b81
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7888 e93f8b46-1217-0410-a6f0-8f06a7374b81
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7890 e93f8b46-1217-0410-a6f0-8f06a7374b81
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8142 e93f8b46-1217-0410-a6f0-8f06a7374b81
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9017 e93f8b46-1217-0410-a6f0-8f06a7374b81
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
--HG--
rename : lib/tabular_form_builder.rb => lib/redmine/views/labelled_form_builder.rb
marutosi and others added 26 commits August 18, 2013 22:08
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8326 e93f8b46-1217-0410-a6f0-8f06a7374b81
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8365 e93f8b46-1217-0410-a6f0-8f06a7374b81
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8396 e93f8b46-1217-0410-a6f0-8f06a7374b81
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8026 e93f8b46-1217-0410-a6f0-8f06a7374b81
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8027 e93f8b46-1217-0410-a6f0-8f06a7374b81
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8029 e93f8b46-1217-0410-a6f0-8f06a7374b81
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8130 e93f8b46-1217-0410-a6f0-8f06a7374b81
@marutosi
Copy link
Contributor Author

I send new pull request #645.

@marutosi marutosi closed this Aug 21, 2013
@marutosi marutosi deleted the auto_complete_get branch August 21, 2013 21:41
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
4 participants