\ No newline at end of file
diff --git a/tracks/app/views/todo/edit.rhtml b/tracks/app/views/todo/edit.rhtml
index 3ecb129e..fefddad0 100644
--- a/tracks/app/views/todo/edit.rhtml
+++ b/tracks/app/views/todo/edit.rhtml
@@ -1,45 +1,9 @@
<% end %>
diff --git a/tracks/config/environment.rb b/tracks/config/environment.rb
index d7918be9..3245cd1d 100644
--- a/tracks/config/environment.rb
+++ b/tracks/config/environment.rb
@@ -24,11 +24,11 @@ ADDITIONAL_LOAD_PATHS.reverse.each { |dir| $:.unshift(dir) if File.directory?(di
# Require Rails gems.
-require 'rubygems'
-require_gem 'activerecord'
-require_gem 'actionpack'
-require_gem 'actionmailer'
-require_gem 'rails'
+ require 'rubygems'
+ require_gem 'activerecord'
+ require_gem 'actionpack'
+ require_gem 'actionmailer'
+ require_gem 'rails'
# Environment-specific configuration.
diff --git a/tracks/config/environments/development.rb b/tracks/config/environments/development.rb
index aff146de..83f0c0de 100644
--- a/tracks/config/environments/development.rb
+++ b/tracks/config/environments/development.rb
@@ -2,4 +2,4 @@ Dependencies.mechanism = :load
ActionController::Base.consider_all_requests_local = true
BREAKPOINT_SERVER_PORT = 42531
-ActionController::Base.fragment_cache_store = ActionController::Caching::Fragments::MemoryStore.new
+ActionController::Base.fragment_cache_store = ActionController::Caching::Fragments::FileStore.new("localhost")
diff --git a/tracks/config/environments/production.rb b/tracks/config/environments/production.rb
index e4065d91..36b14d79 100644
--- a/tracks/config/environments/production.rb
+++ b/tracks/config/environments/production.rb
@@ -1,5 +1,5 @@
Dependencies.mechanism = :require
ActionController::Base.consider_all_requests_local = false
-ActionController::Base.fragment_cache_store = ActionController::Caching::Fragments::MemoryStore.new
+ActionController::Base.fragment_cache_store = ActionController::Caching::Fragments::FileStore.new("localhost")
diff --git a/tracks/doc/CHANGENOTES.txt b/tracks/doc/CHANGENOTES.txt
index 2af10d3c..a1eacb9f 100644
--- a/tracks/doc/CHANGENOTES.txt
+++ b/tracks/doc/CHANGENOTES.txt
@@ -12,6 +12,7 @@ Project wiki:
3. Added action caching.
4. Did a bit of refactoring to try to make page loading a bit more efficient.
5. Added a new row to the context table: 'hide'. This determines whether a particular context gets hidden on the main page. If the checkbox on the add new context form is checked, the context is hidden, and isn't listed on the front (todo/list) page. This is useful for contexts like 'wish list' or 'someday/maybe' that you don't want taking up your attention all the time.
+6. Added a list of links to the hidden contexts at the bottom of the page.
## Version 1.01
diff --git a/tracks/public/stylesheets/standard.css b/tracks/public/stylesheets/standard.css
index 88eb0f0d..2dfdbb92 100644
--- a/tracks/public/stylesheets/standard.css
+++ b/tracks/public/stylesheets/standard.css
@@ -17,6 +17,8 @@ p {
a, a:link, a:active, a:visited {
color: #cc3334;
text-decoration: none;
+ padding-left: 1px;
+ padding-right: 1px;
}
a:hover {