rails 3 fixes

This commit is contained in:
2013-07-14 11:11:18 -04:00
parent e563725dc5
commit 0991d7af8e
46 changed files with 164 additions and 129 deletions

View File

@@ -1,11 +1,11 @@
- @title = "#{App.title} - #{h(@course.full_name)}"
- @location = capture do
= link_to(App.title, index_url, :accesskey => 'z') + "›"
= link_to("Disciplinas", courses_url) + "›"
= link_to(h(@course.full_name), course_url(@course)) + "›"
= link_to(App.title, index_url, :accesskey => 'z') + ""
= link_to("Disciplinas", courses_url) + ""
= link_to(h(@course.full_name), course_url(@course)) + ""
= link_to("Arquivos", course_attachments_url(@course))
- if @attachment.id
= "›" + link_to(truncate(h(@attachment.file_name)), course_attachment_url)
= "" + link_to(truncate(h(@attachment.file_name)), course_attachment_url)
- @title = @title + " - #{truncate(h(@attachment.file_name))}"
- @left_panel = render 'courses/left_panel'

View File

@@ -1,9 +1,9 @@
- @title = "#{App.title}"
- @location = capture do
= link_to(App.title, index_url, :accesskey => 'z') + "›";
= link_to(App.title, index_url, :accesskey => 'z') + "";
= link_to("Disciplinas", courses_url)
- if @course and @course.id
= "› " + link_to(h(@course.full_name), course_url)
= " " + link_to(h(@course.full_name), course_url)
- @title = @title + " - #{h(@course.full_name)}"
- else
- @title = @title + " - Disciplinas"

View File

@@ -1,8 +1,8 @@
- @title = "#{App.title} - #{h(@course.full_name)} - Calendário"
- @location = capture do
= link_to(App.title, index_url, :accesskey => 'z') + "›"
= link_to("Disciplinas", courses_url) + "›"
= link_to(h(@course.full_name), course_url(@course)) + "›"
= link_to(App.title, index_url, :accesskey => 'z') + ""
= link_to("Disciplinas", courses_url) + ""
= link_to(h(@course.full_name), course_url(@course)) + ""
= link_to("Calendário", course_events_url)
- @left_panel = render 'courses/left_panel'

View File

@@ -1,9 +1,9 @@
- if @course
- @title = "#{App.title} - #{h(@course.full_name)} - Mudanças recentes"
- @location = capture do
= link_to(App.title, index_url, :accesskey => 'z') + "›"
= link_to("Disciplinas", courses_url) + "›"
= link_to(h(@course.full_name), course_url(@course)) + "›"
= link_to(App.title, index_url, :accesskey => 'z') + ""
= link_to("Disciplinas", courses_url) + ""
= link_to(h(@course.full_name), course_url(@course)) + ""
= link_to("Mudanças Recentes", course_log_url(@course))
- @left_panel = render 'courses/left_panel'
@@ -12,7 +12,7 @@
- else
- @title = "#{App.title} - Mudanças recentes"
- @location = capture do
= link_to(App.title, index_url) + "›"
= link_to(App.title, index_url) + ""
= link_to("Mudanças recentes", log_url)
- @content = yield

View File

@@ -1,8 +1,8 @@
- @title = "#{App.title} - #{h(@course.full_name)} - Notícias"
- @location = capture do
= link_to(App.title, index_url, :accesskey => 'z') + "›"
= link_to("Disciplinas", courses_url) + "›"
= link_to(h(@course.full_name), course_url(@course)) + "›"
= link_to(App.title, index_url, :accesskey => 'z') + ""
= link_to("Disciplinas", courses_url) + ""
= link_to(h(@course.full_name), course_url(@course)) + ""
= link_to("Noticias", course_news_url(@course))
- @left_panel = render 'courses/left_panel'

View File

@@ -1,9 +1,9 @@
- @title = App.title
- @location = capture do
= link_to(App.title, index_url, :accesskey => 'z') + "›";
= link_to(App.title, index_url, :accesskey => 'z') + "";
= link_to("Usuários", users_path)
- if @user and @user.id
= "› " + link_to(h(@user.name), user_url(@user))
= " " + link_to(h(@user.name), user_url(@user))
- @title = @title + " - #{h(@user.display_name)}"
- @left_panel = render('widgets/menu_navigation') + render('widgets/menu_user')

View File

@@ -1,11 +1,11 @@
- @title = "#{App.title} - #{h(@course.full_name)}"
- @location = capture do
= link_to(App.title, index_url, :accesskey => 'z') + "›"
= link_to("Disciplinas", courses_url) + "›"
= link_to(h(@course.full_name), course_url(@course)) + "›"
= link_to(App.title, index_url, :accesskey => 'z') + ""
= link_to("Disciplinas", courses_url) + ""
= link_to(h(@course.full_name), course_url(@course)) + ""
= link_to("Wiki", course_wiki_url(@course))
- if @wiki_page.title?
= "›" + link_to(h(@wiki_page.title), course_wiki_instance_url(@course, @wiki_page))
= "" + link_to(h(@wiki_page.title), course_wiki_instance_url(@course, @wiki_page))
- @title = @title + " - #{h(@wiki_page.title)}"
- @left_panel = render 'courses/left_panel'