Changeset 251

Show
Ignore:
Timestamp:
02/29/08 18:47:51 (6 months ago)
Author:
gdagley
Message:

add seo_helper to app

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • incubator/jumpstart/app/views/layouts/application.html.erb

    r214 r251  
    1 <%= yield %> 
     1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
     2<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> 
     3  <head> 
     4    <%= html_title AppConfiguration.domain %> 
     5    <%= meta_tags @meta %> 
     6  </head> 
     7  <body> 
     8    <%= breadcrumb_trail @crumbs %> 
     9    <%= yield %> 
     10  </body> 
     11</html> 
  • incubator/jumpstart/app/views/sessions/new.html.erb

    r245 r251  
    1 <h1>User Login</h1> 
     1<% @crumbs = [{:name => 'Home', :link => root_path}, 
     2              {:name => 'User Login'}]%> 
     3               
     4<%= page_title 'User Login' %> 
    25 
    36<% form_tag session_path do -%> 
  • incubator/jumpstart/app/views/users/forgot_password.html.erb

    r214 r251  
    1 <h1>Forgot Password</h1> 
     1<% @crumbs = [{:name => 'Home', :link => root_path}, 
     2              {:name => 'Forgot Password'}]%> 
     3 
     4<%= page_title 'Forgot Password' %> 
    25 
    36<% form_tag forgot_password_path do  %> 
  • incubator/jumpstart/app/views/users/new.html.erb

    r214 r251  
    1 <h1>User Signup</h1> 
     1<% @crumbs = [{:name => 'Home', :link => root_path}, 
     2              {:name => 'User Signup'}]%> 
     3               
     4<%= page_title 'User Signup' %> 
    25 
    36<%= error_messages_for :user %> 
  • incubator/jumpstart/app/views/welcome/index.html.erb

    r245 r251  
    1 <h1>Welcome to <%= AppConfiguration.full_domain %></h1
     1<%= page_title 'Welcome to Your New App!' %
    22 
    33<h2>Things to do</h2> 
  • incubator/jumpstart/vendor/plugins

    • Property svn:externals changed from
      acts_as_authentable http://acts-as-authentable.googlecode.com/svn/trunk/acts_as_authentable
      test_spec_on_rails http://svn.techno-weenie.net/projects/plugins/test_spec_on_rails
      fixture_replacement2 http://thmadb.com/public_svn/plugins/fixture_replacement2
      to
      acts_as_authentable http://acts-as-authentable.googlecode.com/svn/trunk/acts_as_authentable
      test_spec_on_rails http://svn.techno-weenie.net/projects/plugins/test_spec_on_rails
      fixture_replacement2 http://thmadb.com/public_svn/plugins/fixture_replacement2
      seo_helper http://opensource.thinkrelevance.com/svn/incubator/seo_helper