calendar javascripts and stylesheets removed from base layout. they're now only added to html header when needed.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@151 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
776d5ce554
commit
979892a109
@ -37,3 +37,10 @@
|
|||||||
|
|
||||||
<%= submit_tag l(:button_submit) %>
|
<%= submit_tag l(:button_submit) %>
|
||||||
<%= end_form_tag %>
|
<%= end_form_tag %>
|
||||||
|
|
||||||
|
<% content_for :header_tags do %>
|
||||||
|
<%= javascript_include_tag 'calendar/calendar' %>
|
||||||
|
<%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
|
||||||
|
<%= javascript_include_tag 'calendar/calendar-setup' %>
|
||||||
|
<%= stylesheet_link_tag 'calendar' %>
|
||||||
|
<% end %>
|
||||||
|
@ -47,3 +47,10 @@ if (document.getElementById) {
|
|||||||
//]]>
|
//]]>
|
||||||
</script>
|
</script>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
<% content_for :header_tags do %>
|
||||||
|
<%= javascript_include_tag 'calendar/calendar' %>
|
||||||
|
<%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
|
||||||
|
<%= javascript_include_tag 'calendar/calendar-setup' %>
|
||||||
|
<%= stylesheet_link_tag 'calendar' %>
|
||||||
|
<% end %>
|
@ -9,13 +9,8 @@
|
|||||||
<%= stylesheet_link_tag "print", :media => "print" %>
|
<%= stylesheet_link_tag "print", :media => "print" %>
|
||||||
<%= javascript_include_tag :defaults %>
|
<%= javascript_include_tag :defaults %>
|
||||||
<%= javascript_include_tag 'menu' %>
|
<%= javascript_include_tag 'menu' %>
|
||||||
<%= javascript_include_tag 'calendar/calendar' %>
|
|
||||||
<%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
|
|
||||||
<%= javascript_include_tag 'calendar/calendar-setup' %>
|
|
||||||
<%= stylesheet_link_tag 'calendar' %>
|
|
||||||
<%= stylesheet_link_tag 'jstoolbar' %>
|
<%= stylesheet_link_tag 'jstoolbar' %>
|
||||||
<!-- page specific tags -->
|
<!-- page specific tags --><%= yield :header_tags %>
|
||||||
<%= yield :header_tags %>
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -35,3 +35,10 @@
|
|||||||
</div>
|
</div>
|
||||||
<%= javascript_tag "Element.hide('repository');" if @project.repository.nil? %>
|
<%= javascript_tag "Element.hide('repository');" if @project.repository.nil? %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<% content_for :header_tags do %>
|
||||||
|
<%= javascript_include_tag 'calendar/calendar' %>
|
||||||
|
<%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
|
||||||
|
<%= javascript_include_tag 'calendar/calendar-setup' %>
|
||||||
|
<%= stylesheet_link_tag 'calendar' %>
|
||||||
|
<% end %>
|
@ -48,3 +48,10 @@ if (document.getElementById) {
|
|||||||
//]]>
|
//]]>
|
||||||
</script>
|
</script>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
<% content_for :header_tags do %>
|
||||||
|
<%= javascript_include_tag 'calendar/calendar' %>
|
||||||
|
<%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
|
||||||
|
<%= javascript_include_tag 'calendar/calendar-setup' %>
|
||||||
|
<%= stylesheet_link_tag 'calendar' %>
|
||||||
|
<% end %>
|
@ -28,3 +28,10 @@
|
|||||||
<%= password_field_tag 'password_confirmation', nil, :size => 25 %></p>
|
<%= password_field_tag 'password_confirmation', nil, :size => 25 %></p>
|
||||||
</div>
|
</div>
|
||||||
<!--[eoform:user]-->
|
<!--[eoform:user]-->
|
||||||
|
|
||||||
|
<% content_for :header_tags do %>
|
||||||
|
<%= javascript_include_tag 'calendar/calendar' %>
|
||||||
|
<%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
|
||||||
|
<%= javascript_include_tag 'calendar/calendar-setup' %>
|
||||||
|
<%= stylesheet_link_tag 'calendar' %>
|
||||||
|
<% end %>
|
@ -7,3 +7,10 @@
|
|||||||
<p><%= f.text_field :effective_date, :size => 10, :required => true %><%= calendar_for('version_effective_date') %></p>
|
<p><%= f.text_field :effective_date, :size => 10, :required => true %><%= calendar_for('version_effective_date') %></p>
|
||||||
<!--[eoform:version]-->
|
<!--[eoform:version]-->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<% content_for :header_tags do %>
|
||||||
|
<%= javascript_include_tag 'calendar/calendar' %>
|
||||||
|
<%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
|
||||||
|
<%= javascript_include_tag 'calendar/calendar-setup' %>
|
||||||
|
<%= stylesheet_link_tag 'calendar' %>
|
||||||
|
<% end %>
|
@ -19,7 +19,7 @@ div.calendar { position: relative; }
|
|||||||
}
|
}
|
||||||
|
|
||||||
.calendar .nav {
|
.calendar .nav {
|
||||||
background: #467aa7 url(menuarrow.gif) no-repeat 100% 100%;
|
background: #467aa7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.calendar thead .title { /* This holds the current "month, year" */
|
.calendar thead .title { /* This holds the current "month, year" */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user