backlog 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,8 +1,11 @@
1
+ == 0.6.1 2007-08-07
2
+
3
+ * Improved design for daily work sheet
4
+
1
5
  == 0.6.0 2007-08-07
2
6
 
3
7
  * Added backlog list view
4
8
 
5
-
6
9
  == 0.5.10 2007-08-06
7
10
 
8
11
  * Made burn down graph show progress made on the first day
@@ -0,0 +1,22 @@
1
+ <div id="navbar">
2
+ <span style="float: left"><%=l :backlog%> <%=APP::VERSION%></span>
3
+ <%= flash[:notice] + ' |' if flash[:notice] %>
4
+ <%= link_to l(:home), '/' %>
5
+ |
6
+ <% if user? %>
7
+ <%= link_to l(:log_out), :controller => 'user', :action => :logout %>
8
+ <% else %>
9
+ <%= detour_to l(:log_in), :controller => 'user', :action => :login %>
10
+ <% end %>
11
+ | <%= link_to l(:backlogs), :controller => 'backlogs', :action => :list %>
12
+ <!-- | <%= link_to l(:administration), :controller => 'administration', :action => :index %> -->
13
+ <% if user? %>| <%=user.email%><% end %>
14
+ </div>
15
+ <div id="header">
16
+ <%= error_messages_for :backlog, :user, :group, :period, :task, :work, :estimate %>
17
+
18
+ <div id="introtext">
19
+ <h1><%=@application_title%></h1>
20
+ <h3><%=@page_title ? @page_title : @application_description%></h3>
21
+ </div>
22
+ </div>
@@ -21,28 +21,7 @@ function handlePageEvent(event) {
21
21
  <body onkeypress="handlePageEvent(event);">
22
22
  <div id="wrap">
23
23
  <div id="leftcol">
24
- <div id="navbar">
25
- <span style="float: left"><%=l :backlog%> <%=APP::VERSION%></span>
26
- <%= flash[:notice] + ' |' if flash[:notice] %>
27
- <%= link_to l(:home), '/' %>
28
- |
29
- <% if user? %>
30
- <%= link_to l(:log_out), :controller => 'user', :action => :logout %>
31
- <% else %>
32
- <%= detour_to l(:log_in), :controller => 'user', :action => :login %>
33
- <% end %>
34
- | <%= link_to l(:backlogs), :controller => 'backlogs', :action => :list %>
35
- <!-- | <%= link_to l(:administration), :controller => 'administration', :action => :index %> -->
36
- <% if user? %>| <%=user.email%><% end %>
37
- </div>
38
- <div id="header">
39
- <%= error_messages_for :backlog, :user, :group, :period, :task, :work, :estimate %>
40
-
41
- <div id="introtext">
42
- <h1><%=@application_title%></h1>
43
- <h3><%=@page_title ? @page_title : @application_description%></h3>
44
- </div>
45
- </div>
24
+ <%=render :partial => '/layouts/left_top'%>
46
25
  <div id="content">
47
26
  <%= yield %>
48
27
  </div>
@@ -12,9 +12,12 @@
12
12
 
13
13
  <table style="width: 100%; margin: 0; border: 0; padding: 0; background: transparent">
14
14
  <tr>
15
- <td valign="top" width="*"><div align="right" style="color: green"><%= flash[:notice] %></div></td>
16
- <td valign="top" width="793" align="center"><%= yield %></td>
17
- <td valign="top" width="*"></td>
15
+ <td valign="top" width="*"><div align="right" style="color: green"><%= flash[:notice] %></div></td>
16
+ <td valign="top" width="793" align="center">
17
+ <%=render :partial => '/layouts/left_top'%>
18
+ <%= yield %>
19
+ </td>
20
+ <td valign="top" width="*"></td>
18
21
  </tr>
19
22
  </table>
20
23
 
@@ -4,6 +4,12 @@
4
4
 
5
5
  <div id="spotlight">
6
6
 
7
+ <div style="float: left"><%=link_to(image_tag('arrow_left.png'), :date => @date-1)%></div>
8
+ <div style="float: right"><%=link_to(image_tag('arrow_right.png'), :date => @date+1)%></div>
9
+
10
+ <div style="float: left"><%=link_to(image_tag('arrow_left.png'), :id => (@week - 7))%></div>
11
+ <div style="float: right"><%=link_to(image_tag('arrow_right.png'), :id => (@week + 7))%></div>
12
+
7
13
  <table sstyle="width: 100%" border="0">
8
14
  <tr>
9
15
  <td/>
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: backlog
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.6.0
6
+ version: 0.6.1
7
7
  date: 2007-08-07 00:00:00 +02:00
8
8
  summary: Application to aid collecting, processing, organizing, reviewing and doing tasks.
9
9
  require_paths:
@@ -1704,6 +1704,7 @@ files:
1704
1704
  - app/views/user/signup.rhtml
1705
1705
  - app/views/user/welcome.rhtml
1706
1706
  - app/views/layouts
1707
+ - app/views/layouts/_left_top.rhtml
1707
1708
  - app/views/layouts/mwrt002.rhtml
1708
1709
  - app/views/layouts/wide.rhtml
1709
1710
  - app/views/layouts/_headers.rhtml