public
Description: Spree is a complete open source commerce solution for Ruby on Rails.
Homepage: http://spreehq.org
Clone URL: git://github.com/schof/spree.git
Convert localization calls of form :symbol.l("String") to t("String").

As per Sean Schofield's request using Gregg Pollack's shortcut.
jonjensen (author)
Mon Jul 21 17:55:25 -0700 2008
commit  f242c5823fab29dae45b55760927f0523f408ddf
tree    39e4331465741a5045ac7d1fd10753feb039e5c1
parent  4bcbd0eebd7bc7f731526d4ca4ddf391e380678c
...
1
2
 
3
4
5
 
6
7
8
9
10
 
11
12
13
 
14
...
1
 
2
3
4
 
5
6
7
8
9
 
10
11
12
 
13
14
0
@@ -1,14 +1,14 @@
0
 <% form_tag do -%>
0
-<p><label for="email"><%= :email.l("Email") %></label><br/>
0
+<p><label for="email"><%= t("Email") %></label><br/>
0
 <%= text_field_tag 'email' %></p>
0
 
0
-<p><label for="password"><%= :password.l("Password") %></label><br/>
0
+<p><label for="password"><%= t("Password") %></label><br/>
0
 <%= password_field_tag 'password' %></p>
0
 
0
 <p>
0
   <%= check_box_tag 'remember_me' %>
0
- <label for="remember_me"><%= :remember_me.l("Remember me") %></label>
0
+ <label for="remember_me"><%= t("Remember me") %></label>
0
 </p>
0
 
0
-<p><%= submit_tag :log_in.l("Log In") %> or <%= link_to "Create a new account", signup_path %> </p>
0
+<p><%= submit_tag t("Log In") %> or <%= link_to "Create a new account", signup_path %> </p>
0
 <% end -%>
...
1
2
3
4
 
5
6
7
 
8
9
...
1
2
3
 
4
5
6
 
7
8
9
0
@@ -1,9 +1,9 @@
0
 <%= error_messages_for 'category' %>
0
 
0
 <!--[form:category]-->
0
-<p><label for="category_name"><%= :name.l("Name") %></label><br/>
0
+<p><label for="category_name"><%= t("Name") %></label><br/>
0
 <%= text_field 'category', 'name' %></p>
0
 
0
-<p><label for="category_parent_id"><%= :parent_category.l("Parent Category") %></label><br/>
0
+<p><label for="category_parent_id"><%= t("Parent Category") %></label><br/>
0
 <%= collection_select :category, :parent_id, @all_categories, :id, :long_name, {}, {"style" => "width:250px"} %></p>
0
 <!--[eoform:category]-->
...
1
2
3
 
4
5
6
7
8
9
10
 
 
 
11
...
1
2
 
3
4
5
6
7
 
 
 
8
9
10
11
0
@@ -1,11 +1,11 @@
0
 <%= render :partial => 'admin/products/menu' %>
0
 
0
-<h1><%= :editing_category.l("Editing category") %></h1>
0
+<h1><%= t("Editing category") %></h1>
0
 
0
 <% form_tag :action => 'update', :id => @category do %>
0
   <%= render :partial => 'form' %>
0
   <br/>
0
- <%= submit_tag :update.l('Update') %>
0
- <%= :or.l("or") %>
0
- <%= link_to :cancel.l('Cancel'), :action => 'index' %>
0
+ <%= submit_tag t('Update') %>
0
+ <%= t("or") %>
0
+ <%= link_to t('Cancel'), :action => 'index' %>
0
 <% end %>
...
1
2
3
 
4
5
6
 
7
8
9
 
10
11
12
...
24
25
26
27
28
 
 
29
30
31
...
38
39
40
41
42
 
 
43
44
45
...
1
2
 
3
4
5
 
6
7
8
 
9
10
11
12
...
24
25
26
 
 
27
28
29
30
31
...
38
39
40
 
 
41
42
43
44
45
0
@@ -1,12 +1,12 @@
0
 <%= render :partial => 'admin/products/menu' %>
0
 
0
-<%= link_to :add_category.l("Add Category"), :controller => 'categories', :action => 'new' -%>
0
+<%= link_to t("Add Category"), :controller => 'categories', :action => 'new' -%>
0
 <br/><br/>
0
 
0
-<h1><%= :listing_categories.l("Listing categories") %></h1>
0
+<h1><%= t("Listing categories") %></h1>
0
 
0
 <div class="breadcrumb-nav">
0
- <%= link_to :categories.l("Categories"), :action => "list", :id => nil %>
0
+ <%= link_to t("Categories"), :action => "list", :id => nil %>
0
   <% if @parent_category %>
0
     >
0
     <%= breadcrumb_nav @parent_category%>
0
@@ -24,8 +24,8 @@
0
 
0
 <table class="admin-report">
0
   <tr>
0
- <th width="75%"><%= :name.l("Name") %></th>
0
- <th><%= :action.l("Action") %></th>
0
+ <th width="75%"><%= t("Name") %></th>
0
+ <th><%= t("Action") %></th>
0
   </tr>
0
   
0
 <% for category in @categories %>
0
@@ -38,8 +38,8 @@
0
       <% end %>
0
     </td>
0
     <td>
0
- <%= link_to :edit.l('Edit'), :action => 'edit', :id => category %> |
0
- <%= link_to :destroy.l, { :action => 'destroy', :id => category }, :confirm => :are_you_sure_category.l('Are you sure you want to delete this category?') %>
0
+ <%= link_to t('Edit'), :action => 'edit', :id => category %> |
0
+ <%= link_to :destroy.l, { :action => 'destroy', :id => category }, :confirm => t('Are you sure you want to delete this category?') %>
0
     </td>
0
   </tr>
0
 <% end %>
...
1
2
3
 
4
5
6
7
 
8
...
1
2
 
3
4
5
6
 
7
8
0
@@ -1,8 +1,8 @@
0
 <%= render :partial => 'admin/products/menu' %>
0
 
0
-<h1><%= :new_category.l("New category") %></h1>
0
+<h1><%= t("New category") %></h1>
0
 
0
 <% form_tag :action => 'new' do %>
0
   <%= render :partial => 'form' %>
0
- <%= submit_tag :create.l("Create") %>
0
+ <%= submit_tag t("Create") %>
0
 <% end %>
...
1
 
2
3
4
5
6
7
 
8
9
10
...
 
1
2
3
4
5
6
 
7
8
9
10
0
@@ -1,10 +1,10 @@
0
-<h2><%= :new_configuration_template.l("New Configuration Template") %></h2>
0
+<h2><%= t("New Configuration Template") %></h2>
0
 
0
 <%= error_messages_for :app_configuration %>
0
 
0
 <% form_for @app_configuration, :url => admin_configurations_path do |f| -%>
0
   <p>
0
- <strong><%= :name.l("Name") %></strong><br />
0
+ <strong><%= t("Name") %></strong><br />
0
     <%= f.text_field :name %>
0
   </p>
0
   <p>
...
1
 
2
3
4
5
6
7
8
 
 
 
9
10
11
...
15
16
17
18
 
19
20
21
...
 
1
2
3
4
5
 
 
 
6
7
8
9
10
11
...
15
16
17
 
18
19
20
21
0
@@ -1,11 +1,11 @@
0
-<h1><%= :extensions.l("Extensions") %></h1>
0
+<h1><%= t("Extensions") %></h1>
0
 
0
 <table id="extensions" class="full-table" width="800px">
0
   <thead>
0
     <tr>
0
- <th class="extension"><%= :extension.l("Extension") %></th>
0
- <th class="website"><%= :website.l("Website") %></th>
0
- <th class="version"><%= :version.l("Version") %></th>
0
+ <th class="extension"><%= t("Extension") %></th>
0
+ <th class="website"><%= t("Website") %></th>
0
+ <th class="version"><%= t("Version") %></th>
0
     </tr>
0
   </thead>
0
   <tbody>
0
@@ -15,7 +15,7 @@
0
   <h4><%=h extension.extension_name %></h4>
0
   <p><%=h extension.description %></p>
0
       </td>
0
- <td class="website"><%= link_to :website.l("Website"), extension.url, :target => "_blank" unless extension.url.blank? %></td>
0
+ <td class="website"><%= link_to t("Website"), extension.url, :target => "_blank" unless extension.url.blank? %></td>
0
       <td class="version"><%=h extension.version %></td>
0
     </tr>
0
     <% end -%>
...
1
 
2
3
4
5
 
6
7
8
...
 
1
2
3
4
 
5
6
7
8
0
@@ -1,8 +1,8 @@
0
-<h4><%= :new_image.l("New Image") %></h4>
0
+<h4><%= t("New Image") %></h4>
0
 <% form_for(:image, :url => { :controller => 'images', :action => "new" }, :html => { :multipart => true }) do |form| %>
0
   <table class="basic-table">
0
    <tr>
0
- <td><%= :filename.l("Filename") %>:</td>
0
+ <td><%= t("Filename") %>:</td>
0
    <td><%= form.file_field :uploaded_data %></td>
0
    </tr>
0
   </table>
...
3
4
5
6
 
7
8
9
10
11
12
13
14
15
 
 
 
 
 
16
17
18
...
27
28
29
30
31
32
 
 
 
33
...
3
4
5
 
6
7
8
9
10
 
 
 
 
 
11
12
13
14
15
16
17
18
...
27
28
29
 
 
 
30
31
32
33
0
@@ -3,16 +3,16 @@
0
 <% form_tag do %>
0
 <br/><br/>      
0
 
0
-<h1><%= :inventory_adjustment.l("Inventory Adjustment") %></h1>
0
+<h1><%= t("Inventory Adjustment") %></h1>
0
 
0
 <table class="basic-table">
0
   <thead>
0
     <tr>
0
- <th><%= :sku.l("SKU") %></th>
0
- <th><%= :product.l("Product") %></th>
0
- <th><%= :options.l("Options") %></th>
0
- <th><%= :current.l("Current") %></th>
0
- <th><%= :adjustment.l("Adjustment") %></th>
0
+ <th><%= t("SKU") %></th>
0
+ <th><%= t("Product") %></th>
0
+ <th><%= t("Options") %></th>
0
+ <th><%= t("Current") %></th>
0
+ <th><%= t("Adjustment") %></th>
0
     </tr>
0
   </thead>
0
   <tbody>
0
@@ -27,7 +27,7 @@
0
     </tr>
0
   </tbody>
0
 </table>
0
-<%= submit_tag :update.l('Update') %>
0
-<%= :or.l("or") %>
0
-<%= link_to :cancel.l('Cancel'), :controller => 'overview', :action => :index %>
0
+<%= submit_tag t('Update') %>
0
+<%= t("or") %>
0
+<%= link_to t('Cancel'), :controller => 'overview', :action => :index %>
0
 <% end %>
...
1
2
3
4
 
5
6
7
 
8
9
10
...
1
2
3
 
4
5
6
 
7
8
9
10
0
@@ -1,10 +1,10 @@
0
 <!--[form:option]-->
0
 <p>
0
   <%=error_message_on :option_type, :name%>
0
- <%= :name.l("Name") %>: <%= text_field 'option_type', 'name' -%>
0
+ <%= t("Name") %>: <%= text_field 'option_type', 'name' -%>
0
 </p>
0
 <p>
0
- <%= :presentation.l("Presentation") %>: <%= text_field 'option_type', 'presentation' -%>
0
+ <%= t("Presentation") %>: <%= text_field 'option_type', 'presentation' -%>
0
 </p>
0
 
0
 <br/>
...
1
 
2
3
4
5
 
6
7
8
9
 
10
11
12
...
 
1
2
3
4
 
5
6
7
8
 
9
10
11
12
0
@@ -1,12 +1,12 @@
0
-<h3><%= :new_option_value.l("New Option Value") %></h3>
0
+<h3><%= t("New Option Value") %></h3>
0
 <% fields_for :option_value, @option_value do |ov| %>
0
 <table class="basic-table">
0
   <tr>
0
- <td><%= :name.l("Name") %></td>
0
+ <td><%= t("Name") %></td>
0
     <td><%= ov.text_field :name %></td>
0
   </tr>
0
   <tr>
0
- <td><%= :display.l("Display") %></td>
0
+ <td><%= t("Display") %></td>
0
     <td><%= ov.text_field :presentation %></td>
0
   </tr>
0
 </table>
...
1
 
2
3
4
5
6
7
 
 
 
8
9
10
...
13
14
15
16
 
17
18
19
...
23
24
25
26
 
27
28
29
30
31
32
33
 
34
35
36
...
 
1
2
3
4
 
 
 
5
6
7
8
9
10
...
13
14
15
 
16
17
18
19
...
23
24
25
 
26
27
28
29
30
31
32
 
33
34
35
36
0
@@ -1,10 +1,10 @@
0
-<h2><%= :option_Values.l("Option Values") %></h2>
0
+<h2><%= t("Option Values") %></h2>
0
 <table class="basic-table">
0
   <thead>
0
     <tr>
0
- <th><%= :name.l("Name") %></th>
0
- <th><%= :display.l("Display") %></th>
0
- <th><%= :action.l("Action") %></th>
0
+ <th><%= t("Name") %></th>
0
+ <th><%= t("Display") %></th>
0
+ <th><%= t("Action") %></th>
0
     </tr>
0
   </thead>
0
   <tbody>
0
@@ -13,7 +13,7 @@
0
       <td><%=ov.name%></td>
0
       <td><%=ov.presentation%></td>
0
       <td>
0
- <%= link_to_remote :delete.l("Delete"),
0
+ <%= link_to_remote t("Delete"),
0
    :url => {:action => 'delete_option_value', :id=> @option_type, :option_value_id => ov},
0
    :before => "Element.show('ov_busy_indicator')",
0
    :complete => "Element.hide('ov_busy_indicator')",
0
@@ -23,14 +23,14 @@
0
     <% end %>
0
     <% if @option_type.option_values.empty? %>
0
     <tr>
0
- <td colspan="3"><%= :none_available.l("None Available") %></td>
0
+ <td colspan="3"><%= t("None Available") %></td>
0
     </tr>
0
     <% end %>
0
   </tbody>
0
 </table>
0
 <% unless @option_type.new_record? %>
0
 <span id="new-ov-link">
0
- <%= link_to_remote :new_option_value.l("New Option Value"),
0
+ <%= link_to_remote t("New Option Value"),
0
                      :url => {:action => 'new_option_value', :id=> @option_type},
0
                      :before => "Element.hide('new-ov-link');Element.show('ov_busy_indicator')",
0
                      :complete => "Element.hide('ov_busy_indicator');Element.hide('new-ov-link');",
...
1
2
3
 
4
5
6
...
1
2
 
3
4
5
6
0
@@ -1,6 +1,6 @@
0
 <%= render :partial => 'admin/products/menu' %>
0
 
0
-<h1><%= :editing_option_types.l("Editing Option Types") %></h1>
0
+<h1><%= t("Editing Option Types") %></h1>
0
 
0
 <% form_for(:option_type) do |f| %>
0
   <%= render :partial => 'form' %>
...
1
2
3
 
4
5
6
...
13
14
15
16
 
17
18
19
20
21
22
23
 
...
1
2
 
3
4
5
6
...
13
14
15
 
16
17
18
19
20
21
22
 
23
0
@@ -1,6 +1,6 @@
0
 <%= render :partial => 'admin/products/menu' %>
0
 
0
-<h1><%= :listing_option_types.l("Listing Option Types") %></h1>
0
+<h1><%= t("Listing Option Types") %></h1>
0
 <table>
0
   <tr>
0
     <td><b><%= :name.l %></b></td>
0
@@ -13,11 +13,11 @@
0
       <%= link_to :edit.l, :action => 'edit', :id => ot -%>
0
       <%= link_to :delete.l,
0
                      {:action => 'destroy', :id => ot},
0
- {:confirm => :are_you_sure_option_type.l("Are you sure you want to delete this option type?")} -%>
0
+ {:confirm => t("Are you sure you want to delete this option type?")} -%>
0
     </td>
0
   </tr>
0
 <% end %>
0
 </table>
0
 
0
 <br/><br/>
0
-<%= link_to :add_option_type.l("Add Option Type"), :action => 'new' -%>
0
+<%= link_to t("Add Option Type"), :action => 'new' -%>
...
1
2
3
 
4
5
6
...
1
2
 
3
4
5
6
0
@@ -1,6 +1,6 @@
0
 <%= render :partial => 'admin/products/menu' %>
0
 
0
-<h1><%= :new_option_type.l("New Option Type") %></h1>
0
+<h1><%= t("New Option Type") %></h1>
0
 <br/>
0
 <% form_tag( {:action => 'new' }) do %>
0
   <%= render :partial => 'form' %>
...
13
14
15
16
 
17
18
19
...
13
14
15
 
16
17
18
19
0
@@ -13,7 +13,7 @@
0
       <td><%=ot.name%></td>
0
       <td><%=ot.display%></td>
0
       <td>
0
- <%= link_to_remote :select.l("Select"),
0
+ <%= link_to_remote t("Select"),
0
    :url => {:controller => 'products', :action => 'add_option_type', :id=> @product, :option_type_id => ot},
0
    :update => 'option-type-listing' %>          
0
       </td>
...
1
2
3
4
 
5
6
7
...
10
11
12
13
14
15
16
17
18
 
 
 
 
 
 
19
20
21
...
43
44
45
46
 
47
48
49
50
51
 
52
53
54
...
66
67
68
69
 
70
71
72
73
74
 
75
76
77
78
79
80
 
81
82
83
84
85
86
 
87
88
89
90
91
92
93
 
94
95
96
...
1
2
3
 
4
5
6
7
...
10
11
12
 
 
 
 
 
 
13
14
15
16
17
18
19
20
21
...
43
44
45
 
46
47
48
49
50
 
51
52
53
54
...
66
67
68
 
69
70
71
72
73
 
74
75
76
77
78
79
 
80
81
82
83
84
85
 
86
87
88
89
90
91
92
 
93
94
95
96
0
@@ -1,7 +1,7 @@
0
 <% content_for :head do -%>
0
   <%= calendar_date_select_includes %>
0
 <% end -%>
0
-<h1><%= :listing_orders.l("Listing orders") %></h1>
0
+<h1><%= t("Listing orders") %></h1>
0
 
0
 <table>
0
   <tr>
0
@@ -10,12 +10,12 @@
0
         <table class="admin-report" width="545">
0
           <thead>
0
             <tr>
0
- <th><%= :order_date.l("Order Date") %></th>
0
- <th><%= :number.l("Number") %></th>
0
- <th><%= :status.l("Status") %></th>
0
- <th><%= :customer.l("Customer") %></th>
0
- <th><%= :total.l("Total") %></th>
0
- <th><%= :action.l("Action") %></th>
0
+ <th><%= t("Order Date") %></th>
0
+ <th><%= t("Number") %></th>
0
+ <th><%= t("Status") %></th>
0
+ <th><%= t("Customer") %></th>
0
+ <th><%= t("Total") %></th>
0
+ <th><%= t("Action") %></th>
0
             </tr>
0
           </thead>
0
           <tbody>
0
@@ -43,12 +43,12 @@
0
           <table class="admin-search">
0
             <thead>
0
               <tr>
0
- <th colspan="2"><%= :date_range.l("Date Range") %></th>
0
+ <th colspan="2"><%= t("Date Range") %></th>
0
               </tr>
0
             </thead>
0
             <tbody>
0
               <tr>
0
- <td><%= :start.l("Start") %>:</td>
0
+ <td><%= t("Start") %>:</td>
0
                 <td>
0
                   <%= error_message_on :search, :start%>
0
                   <%= calendar_date_select :search, :start, :style=>"width:100px" %>
0
@@ -66,31 +66,31 @@
0
           <table class="admin-search">
0
             <thead>
0
               <tr>
0
- <th colspan="2"><%= :order_details.l("Order Details") %></th>
0
+ <th colspan="2"><%= t("Order Details") %></th>
0
               </tr>
0
             </thead>
0
             <tbody>
0
               <tr>
0
- <td><%= :order_number.l("Order #") %></td>
0
+ <td><%= t("Order #") %></td>
0
                 <td>
0
                   <%= f.text_field :order_num, :size=>15 %>
0
                 </td>
0
               </tr>
0
               <tr>
0
- <td><%= :status.l("Status") %></td>
0
+ <td><%= t("Status") %></td>
0
                 <td>
0
                   <%= f.collection_select :status, @status_options, :id, :title, {:include_blank => true}, {:style => "width:100%"}%>
0
                 </td>
0
               </tr>
0
               <tr>
0
- <td><%= :customer.l("Customer") %></td>
0
+ <td><%= t("Customer") %></td>
0
                 <td>
0
                   <%= f.text_field :customer, :size=>15 %>
0
                 </td>
0
               </tr>
0
             </tbody>
0
           </table>
0
- <%=submit_tag :search.l("Search") %>
0
+ <%=submit_tag t("Search") %>
0
         </div>
0
       <% end %>
0
     </td>
...
1
2
3
 
4
5
6
...
8
9
10
11
12
 
 
13
14
15
...
22
23
24
25
 
26
27
28
...
30
31
32
33
34
35
 
 
 
36
37
38
...
43
44
45
46
 
47
48
49
50
51
52
53
54
55
56
57
 
 
 
 
 
 
58
59
60
...
69
70
71
72
 
...
1
2
 
3
4
5
6
...
8
9
10
 
 
11
12
13
14
15
...
22
23
24
 
25
26
27
28
...
30
31
32
 
 
 
33
34
35
36
37
38
...
43
44
45
 
46
47
48
49
50
51
 
 
 
 
 
 
52
53
54
55
56
57
58
59
60
...
69
70
71
 
72
0
@@ -1,6 +1,6 @@
0
 <% content_for :action_nav do %>
0
   <ul id="act-nav">
0
- <li><%= link_to :resend.l("Resend"), :action => :resend, :id => @order %></li>
0
+ <li><%= link_to t("Resend"), :action => :resend, :id => @order %></li>
0
   </ul>
0
 <% end %>
0
 
0
@@ -8,8 +8,8 @@
0
 
0
 <table class="order-address">
0
   <tr>
0
- <th><%= :ship_address.l("Ship Address") %></th>
0
- <th><%= :bill_address.l("Bill Address") %></th>
0
+ <th><%= t("Ship Address") %></th>
0
+ <th><%= t("Bill Address") %></th>
0
   </tr>
0
   <tr>
0
     <td width="50%">
0
@@ -22,7 +22,7 @@
0
 </table>
0
 <table class="order-address">
0
   <tr>
0
- <th><%= :email.l("Email") %></th>
0
+ <th><%= t("Email") %></th>
0
   </tr>
0
   <tr>
0
     <td><%=in_place_editor_field :user, :email %></td>
0
@@ -30,9 +30,9 @@
0
 </table>
0
 <table class="basic-table">
0
   <tr>
0
- <th><%= :operation.l("Operation") %></th>
0
- <th><%= :user.l("User") %></th>
0
- <th><%= "#{:date.l('Date')}/#{:time.l('Time')}" %></th>
0
+ <th><%= t("Operation") %></th>
0
+ <th><%= t("User") %></th>
0
+ <th><%= "#{t('Date')}/#{t('Time')}" %></th>
0
   </tr>
0
   <% @order.order_operations.each do |o| %>
0
     <tr>
0
@@ -43,18 +43,18 @@
0
   <% end %>
0
   <% if @order.order_operations.empty? %>
0
     <tr>
0
- <td colspan="3"><%= :none_available.l("None Available") %></td>
0
+ <td colspan="3"><%= t("None Available") %></td>
0
     </tr>
0
   <% end %>
0
 </table>
0
 <table class="full-table">
0
   <tr>
0
- <th><%= :transaction.l("Transaction") %></th>
0
- <th><%= :amount.l("Amount") %></th>
0
- <th><%= :card_number.l("Card Number") %></th>
0
- <th><%= :type.l("Type") %></th>
0
- <th><%= :response_code.l("Response Code") %></th>
0
- <th><%= "#{:date.l('Date')}/#{:time.l('Time')}" %></th>
0
+ <th><%= t("Transaction") %></th>
0
+ <th><%= t("Amount") %></th>
0
+ <th><%= t("Card Number") %></th>
0
+ <th><%= t("Type") %></th>
0
+ <th><%= t("Response Code") %></th>
0
+ <th><%= "#{t('Date')}/#{t('Time')}" %></th>
0
   </tr>
0
   <% if @order.credit_card %>
0
    <% @order.credit_card.txns.each do |t| %>
0
@@ -69,4 +69,4 @@
0
    <% end %>
0
   <% end %>
0
 </table>
0
-<%= link_to :back.l("Back"), :controller => :orders %>
0
+<%= link_to t("Back"), :controller => :orders %>
...
1
 
2
3
...
 
1
2
3
0
@@ -1,3 +1,3 @@
0
-<h2><%= :overview.l("Overview") %></h2>
0
+<h2><%= t("Overview") %></h2>
0
 
0
 Welcome to the Overview Page. This is a placeholder for some real content. Eventually we envision a bunch of "widgets" summarizing recent activity and other elements of interest.