Skip to content

Commit

Permalink
Merge pull request #5436 from ehelms/fixes-11448
Browse files Browse the repository at this point in the history
Fixes #11448: Removes haml in favor of ERB.
  • Loading branch information
ehelms committed Aug 25, 2015
2 parents 93d1757 + 70f91b2 commit c0d6834
Show file tree
Hide file tree
Showing 93 changed files with 417 additions and 1,687 deletions.
Expand Up @@ -95,7 +95,7 @@ KT.content_actions = (function(){

$.ajax({
type: 'DELETE',
url: KT.routes.sync_management_path(repo_id),
url: '/katello/sync_management/' + repo_id,
dataType: 'json',
success: function(data) {
},
Expand All @@ -109,7 +109,7 @@ KT.content_actions = (function(){
if (syncing.length ===0){
return;
}
updater = $.PeriodicalUpdater(KT.routes.sync_management_sync_status_path(), {
updater = $.PeriodicalUpdater('/katello/sync_management/sync_status', {
data: function(){return {repoids:getSyncing()}},
method: 'get',
type: 'json',
Expand Down
1 change: 1 addition & 0 deletions app/views/katello/api/v2/layouts/collection.json.erb
@@ -0,0 +1 @@
<%= yield %>
3 changes: 0 additions & 3 deletions app/views/katello/api/v2/layouts/collection.json.haml

This file was deleted.

5 changes: 5 additions & 0 deletions app/views/katello/api/v2/layouts/resource.json.erb
@@ -0,0 +1,5 @@
<% if object_name %>
{<%= object_name %>: <%= yield %>}
<% else %>
<%= yield %>
<% end %>
5 changes: 0 additions & 5 deletions app/views/katello/api/v2/layouts/resource.json.haml

This file was deleted.

5 changes: 0 additions & 5 deletions app/views/katello/common/400.html.haml

This file was deleted.

10 changes: 0 additions & 10 deletions app/views/katello/common/403.html.haml

This file was deleted.

7 changes: 0 additions & 7 deletions app/views/katello/common/404.html.haml

This file was deleted.

15 changes: 0 additions & 15 deletions app/views/katello/common/500.html.haml

This file was deleted.

45 changes: 0 additions & 45 deletions app/views/katello/common/_common_i18n.html.haml

This file was deleted.

65 changes: 0 additions & 65 deletions app/views/katello/common/_common_product_repo_selector.html.haml

This file was deleted.

24 changes: 0 additions & 24 deletions app/views/katello/common/_common_products.html.haml

This file was deleted.

8 changes: 0 additions & 8 deletions app/views/katello/common/_config.html.haml

This file was deleted.

12 changes: 0 additions & 12 deletions app/views/katello/common/_edit_i18n.html.haml

This file was deleted.

40 changes: 0 additions & 40 deletions app/views/katello/common/_env_select.html.haml

This file was deleted.

5 changes: 0 additions & 5 deletions app/views/katello/common/_filter_table.html.haml

This file was deleted.

5 changes: 0 additions & 5 deletions app/views/katello/common/_footer.haml

This file was deleted.

6 changes: 0 additions & 6 deletions app/views/katello/common/_list_item.html.haml

This file was deleted.

2 changes: 0 additions & 2 deletions app/views/katello/common/_list_items.html.haml

This file was deleted.

3 changes: 0 additions & 3 deletions app/views/katello/common/_list_remove.js.haml

This file was deleted.

4 changes: 0 additions & 4 deletions app/views/katello/common/_list_update.html.haml

This file was deleted.

15 changes: 0 additions & 15 deletions app/views/katello/common/_one_panel.html.haml

This file was deleted.

5 changes: 0 additions & 5 deletions app/views/katello/common/_one_panel_list_item.haml

This file was deleted.

7 changes: 0 additions & 7 deletions app/views/katello/common/_package_actions_i18n.html.haml

This file was deleted.

0 comments on commit c0d6834

Please sign in to comment.