mirror of
https://github.com/TracksApp/tracks.git
synced 2026-03-06 12:50:19 +01:00
Fixed 2 bugs in 1.02:
* Added the border=0 back to the images for edit and delete actions, which I had accidentally removed at some point (fixed ticket:11) * Removed Redcloth requiring code in config/environment.rb, as Rails now requires Redcloth itself (fixed ticket:10) git-svn-id: http://www.rousette.org.uk/svn/tracks-repos/trunk@45 a4c988fc-2ded-0310-b66e-134b36920a42
This commit is contained in:
parent
6f51118766
commit
2f2909e930
8 changed files with 10 additions and 15 deletions
|
|
@ -4,8 +4,6 @@
|
||||||
require_dependency "login_system"
|
require_dependency "login_system"
|
||||||
require 'date'
|
require 'date'
|
||||||
|
|
||||||
$delete_img = "<img src=\"/images/delete.png\" width=\"10\" height=\"10\" border=\"0\" />"
|
|
||||||
$edit_img = "<img src=\"/images/edit.png\" width=\"10\" height=\"10\" border=\"0\" />"
|
|
||||||
$notes_img = "<img src=\"/images/notes.png\" width=\"10\" height=\"10\" border=\"0\" />"
|
$notes_img = "<img src=\"/images/notes.png\" width=\"10\" height=\"10\" border=\"0\" />"
|
||||||
$done_img = "<img src=\"/images/done.png\" width=\"16\" height=\"16\" border=\"0\" />"
|
$done_img = "<img src=\"/images/done.png\" width=\"16\" height=\"16\" border=\"0\" />"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top">
|
<td valign="top">
|
||||||
<%= check_box( "item", "done", "onclick" => "document.location.href='/todo/toggle_check/#{@item.id}'" ) %></td>
|
<%= check_box( "item", "done", "onclick" => "document.location.href='/todo/toggle_check/#{@item.id}'" ) %></td>
|
||||||
<td valign="top" width="30"><%= link_to( $edit_img, { :controller => "todo", :action => "edit", :id => @item.id }, :title => "Edit item" ) + " " + link_to($delete_img, { :controller => "todo", :action => "destroy", :id => @item.id }, :title => "Delete item", :confirm => "Are you sure you want to delete this entry: #{@item.description}" ) + " " %></td>
|
<td valign="top" width="30"><%= link_image_to( "edit", { :controller => "todo", :action => "edit", :id => @item.id }, :title => "Edit item", :size => "10x10", :border => "0" ) + " " + link_image_to( "delete", { :controller => "todo", :action => "destroy", :id => @item.id }, :title => "Delete item", :size => "10x10", :border => "0", :confirm => "Are you sure you want to delete this entry: #{@item.description}" ) + " " %></td>
|
||||||
<td valign="top"><%= due_date( @item.due ) %>
|
<td valign="top"><%= due_date( @item.due ) %>
|
||||||
<%= @item.description %>
|
<%= @item.description %>
|
||||||
<% if @item.project_id %>
|
<% if @item.project_id %>
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
shown
|
shown
|
||||||
<% end %>
|
<% end %>
|
||||||
</td>
|
</td>
|
||||||
<td width="40"><%= link_image_to("edit", { :action => "edit", :id => @context.id }, :title => "Edit item", :size => "10x10") + " " + link_image_to("delete", { :action => "destroy", :id => @context.id }, :title => "Delete item", :size => "10x10", :confirm => "Are you sure you want to delete the context \"#{@context.name}?\" Any todos in this context will be deleted.") + " " %></td>
|
<td width="40"><%= link_image_to("edit", { :action => "edit", :id => @context.id }, :title => "Edit item", :size => "10x10", :border => "0" ) + " " + link_image_to("delete", { :action => "destroy", :id => @context.id }, :title => "Delete item", :size => "10x10", :border => "0", :confirm => "Are you sure you want to delete the context \"#{@context.name}?\" Any todos in this context will be deleted.") + " " %></td>
|
||||||
</tr>
|
</tr>
|
||||||
<% row += 1 %>
|
<% row += 1 %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<% @item = not_done %>
|
<% @item = not_done %>
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="top"><%= check_box( "item", "done", "onclick" => "document.location.href='/todo/toggle_check/#{@item.id}'" ) %></td>
|
<td valign="top"><%= check_box( "item", "done", "onclick" => "document.location.href='/todo/toggle_check/#{@item.id}'" ) %></td>
|
||||||
<td valign="top" width="30"><%= link_image_to( "edit", { :controller => "todo", :action => "edit", :id => @item.id }, :title => "Edit item", :size => "10x10" ) + " " + link_image_to( "delete", { :controller => "todo", :action => "destroy", :id => @item.id }, :title => "Delete item", :size => "10x10", :confirm => "Are you sure you want to delete this entry: #{@item.description}" ) + " " %></td>
|
<td valign="top" width="30"><%= link_image_to( "edit", { :controller => "todo", :action => "edit", :id => @item.id }, :title => "Edit item", :size => "10x10", :border => "0" ) + " " + link_image_to( "delete", { :controller => "todo", :action => "destroy", :id => @item.id }, :title => "Delete item", :size => "10x10", :border => "0", :confirm => "Are you sure you want to delete this entry: #{@item.description}" ) + " " %></td>
|
||||||
<td valign="top"><%= due_date( @item.due ) %>
|
<td valign="top"><%= due_date( @item.due ) %>
|
||||||
<%= @item.description %>
|
<%= @item.description %>
|
||||||
<% if @item.project_id %>
|
<% if @item.project_id %>
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
<td align="right" width="20"><%= @project.id.to_s %></td>
|
<td align="right" width="20"><%= @project.id.to_s %></td>
|
||||||
<td width="390"><%= link_to ( "#{@project.name}", :action => "show", :id => @project.id ) %></td>
|
<td width="390"><%= link_to ( "#{@project.name}", :action => "show", :id => @project.id ) %></td>
|
||||||
<td width="40"><%= link_image_to( "edit", { :action => "edit", :id => @project.id }, :title => "Edit item", :size => "10x10" ) + " " + link_image_to( "delete", { :action => "destroy", :id => @project.id }, :title => "Delete item", :size => "10x10", :confirm => "Are you sure you want to delete the project \"#{@project.name}?\" Any todos in this project will be deleted." ) + " " %></td>
|
<td width="40"><%= link_image_to( "edit", { :action => "edit", :id => @project.id }, :title => "Edit item", :size => "10x10", :border => "0" ) + " " + link_image_to( "delete", { :action => "destroy", :id => @project.id }, :title => "Delete item", :size => "10x10", :border => "0", :confirm => "Are you sure you want to delete the project \"#{@project.name}?\" Any todos in this project will be deleted." ) + " " %></td>
|
||||||
</tr>
|
</tr>
|
||||||
<% row += 1 %>
|
<% row += 1 %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
<!-- <%= '<tr id="' + @notdone_item.id.to_s + '">' %> -->
|
<!-- <%= '<tr id="' + @notdone_item.id.to_s + '">' %> -->
|
||||||
<td valign="top">
|
<td valign="top">
|
||||||
<%= check_box( "item", "done", "onclick" => "document.location.href='/todo/toggle_check/#{@notdone_item.id}'" ) %></td>
|
<%= check_box( "item", "done", "onclick" => "document.location.href='/todo/toggle_check/#{@notdone_item.id}'" ) %></td>
|
||||||
<td valign="top" width="30"><%= link_to( $edit_img, { :action => "edit", :id => @notdone_item.id }, :title => "Edit item" ) + " " + link_to($delete_img, { :action => "destroy", :id => @notdone_item.id }, :title => "Delete item", :confirm => "Are you sure you want to delete the action \"#{@notdone_item.description}?\"" ) + " " %></td>
|
<td valign="top" width="30"><%= link_image_to( "edit", { :action => "edit", :id => @notdone_item.id }, :title => "Edit item", :size => "10x10", :border => "0" ) + " " + link_image_to( "delete", { :controller => "todo", :action => "destroy", :id => @notdone_item.id }, :title => "Delete item", :size => "10x10", :border => "0", :confirm => "Are you sure you want to delete this entry: #{@notdone_item.description}" ) + " " %></td>
|
||||||
<td valign="top"><%= due_date( @notdone_item.due ) %>
|
<td valign="top"><%= due_date( @notdone_item.due ) %>
|
||||||
<%= @notdone_item.description %>
|
<%= @notdone_item.description %>
|
||||||
<% if @notdone_item.project_id %>
|
<% if @notdone_item.project_id %>
|
||||||
|
|
|
||||||
|
|
@ -35,14 +35,6 @@ require_gem 'actionmailer'
|
||||||
require_gem 'actionwebservice'
|
require_gem 'actionwebservice'
|
||||||
require_gem 'rails'
|
require_gem 'rails'
|
||||||
|
|
||||||
# Try loading gem Redcloth first, but if that fails
|
|
||||||
# fall back on lib version
|
|
||||||
begin
|
|
||||||
require_gem 'redcloth', '>= 3.0.3'
|
|
||||||
rescue LoadError
|
|
||||||
require_or_load( "redcloth" )
|
|
||||||
end
|
|
||||||
|
|
||||||
# Environment-specific configuration.
|
# Environment-specific configuration.
|
||||||
require_dependency "environments/#{RAILS_ENV}"
|
require_dependency "environments/#{RAILS_ENV}"
|
||||||
ActiveRecord::Base.configurations = YAML::load(File.open("#{RAILS_ROOT}/config/database.yml"))
|
ActiveRecord::Base.configurations = YAML::load(File.open("#{RAILS_ROOT}/config/database.yml"))
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,11 @@
|
||||||
Main project site: <http://www.rousette.org.uk/projects/>
|
Main project site: <http://www.rousette.org.uk/projects/>
|
||||||
Project wiki: <http://www.rousette.org.uk/projects/wiki/>
|
Project wiki: <http://www.rousette.org.uk/projects/wiki/>
|
||||||
|
|
||||||
|
## Version 1.021
|
||||||
|
|
||||||
|
1. Added back border="0" to images which I had mistakenly taken out (thanks, Adam Hughes)
|
||||||
|
2. Removed the section in config/environment.rb which requires Redcloth. This was causing errors because Rails now requires Redcloth itself. This means that you now need to have Redcloth installed as a gem (gem install redcloth).
|
||||||
|
|
||||||
## Version 1.02
|
## Version 1.02
|
||||||
|
|
||||||
1. Uses Rails 0.10.0
|
1. Uses Rails 0.10.0
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue