<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>app/views/layouts/sources.rhtml</filename>
    </added>
    <added>
      <filename>app/views/layouts/talia.rhtml</filename>
    </added>
    <added>
      <filename>app/views/shared/_main_footer.rhtml</filename>
    </added>
    <added>
      <filename>app/views/shared/_main_header.rhtml</filename>
    </added>
    <added>
      <filename>app/views/sources/index.rhtml</filename>
    </added>
    <added>
      <filename>app/views/widgets/hello_world/_hello_world_widget.rhtml</filename>
    </added>
    <added>
      <filename>app/views/widgets/hello_world/hello_world_widget.rb</filename>
    </added>
    <added>
      <filename>app/views/widgets/sidebar/_sidebar_widget.rhtml</filename>
    </added>
    <added>
      <filename>app/views/widgets/sidebar/sidebar_widget.rb</filename>
    </added>
    <added>
      <filename>app/views/widgets/source_list/_source_item.rhtml</filename>
    </added>
    <added>
      <filename>app/views/widgets/source_list/_source_list_widget.rhtml</filename>
    </added>
    <added>
      <filename>app/views/widgets/source_list/source_list_widget.rb</filename>
    </added>
    <added>
      <filename>db/migrate/003_create_type_records.rb</filename>
    </added>
    <added>
      <filename>public/images/button_side_bar_close.gif</filename>
    </added>
    <added>
      <filename>public/images/button_side_bar_close_ro.gif</filename>
    </added>
    <added>
      <filename>public/images/button_side_bar_open.gif</filename>
    </added>
    <added>
      <filename>public/images/button_side_bar_open_ro.gif</filename>
    </added>
    <added>
      <filename>public/images/contents_top_left_no_tools_bg.gif</filename>
    </added>
    <added>
      <filename>public/images/contents_top_left_with_tools_bg.gif</filename>
    </added>
    <added>
      <filename>public/images/contents_top_right_no_tools_bg.gif</filename>
    </added>
    <added>
      <filename>public/images/contents_top_right_with_tools_bg.gif</filename>
    </added>
    <added>
      <filename>public/images/header_bg.gif</filename>
    </added>
    <added>
      <filename>public/images/loading.gif</filename>
    </added>
    <added>
      <filename>public/images/page_bg.gif</filename>
    </added>
    <added>
      <filename>public/images/page_bg_side_bar_open.gif</filename>
    </added>
    <added>
      <filename>public/images/page_right_edge.gif</filename>
    </added>
    <added>
      <filename>public/images/side_bar_icon.gif</filename>
    </added>
    <added>
      <filename>public/images/side_bar_icon_ro.gif</filename>
    </added>
    <added>
      <filename>public/images/side_bar_top.gif</filename>
    </added>
    <added>
      <filename>public/images/side_bar_top_closed.gif</filename>
    </added>
    <added>
      <filename>public/javascripts/js.js</filename>
    </added>
    <added>
      <filename>public/javascripts/lowpro.js</filename>
    </added>
    <added>
      <filename>public/stylesheets/main.css</filename>
    </added>
    <added>
      <filename>svn-commit.tmp</filename>
    </added>
    <added>
      <filename>test/database.log</filename>
    </added>
    <added>
      <filename>vendor/plugins/talia_core/config/rdfstore.yml</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,14 @@
 # Methods added to this helper will be available to all templates in the application.
 module ApplicationHelper
+  
+  # Returns the title for the whole page. This returns the value
+  # set in the controller, or a default value
+  def page_title
+    @page_title ? @page_title : &quot;Talia | The Digital Library&quot;
+  end
+  
+  # Returns the subtitle for the page. See page_title
+  def page_subtitle
+    @page_subtitle ? @page_subtitle : &quot;Let's discover what's out there&quot;
+  end
 end</diff>
      <filename>app/helpers/application_helper.rb</filename>
    </modified>
    <modified>
      <diff>@@ -4,9 +4,13 @@ class CreateDirtyRelationRecords &lt; ActiveRecord::Migration
       t.column :source_record_id,   :integer, :null =&gt; false
       t.column :uri,                :string, :null =&gt; false
     end
+    
+    # Create the foreign key
+    execute &quot;alter table dirty_relation_records add constraint dirty_relations foreign key (source_record_id) references source_records(id)&quot;
   end
 
   def self.down
+    execute &quot;alter table dirty_relation_records drop foreign key dirty_relations&quot;
     drop_table &quot;dirty_relation_records&quot;
   end
 end</diff>
      <filename>db/migrate/002_create_dirty_relation_records.rb</filename>
    </modified>
    <modified>
      <diff>@@ -51,7 +51,9 @@ module TaliaCore
       end
       
       # Initialize the ActiveRDF connection
-      ConnectionPool.add_data_source(config[&quot;rdf_connection&quot;])
+      rdf_cfg = Hash.new
+      config[&quot;rdf_connection&quot;].each { |key, value| rdf_cfg[key.to_sym] = value }
+      ConnectionPool.add_data_source(rdf_cfg)
       
       # Register the local name
       N::Namespace.shortcut(:local, config[&quot;local_uri&quot;])</diff>
      <filename>vendor/plugins/talia_core/lib/talia_core/initializer.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>app/views/sources/index.html.erb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>0d7d8d7547137f580117f5add81a02882bca9f5b</id>
    </parent>
  </parents>
  <author>
    <name>daniel</name>
    <email>ghub@limitedcreativity.org</email>
  </author>
  <url>http://github.com/net7/talia/commit/77f3ad1a102705f26c0f46965cec580848016554</url>
  <id>77f3ad1a102705f26c0f46965cec580848016554</id>
  <committed-date>2007-10-16T02:12:18-07:00</committed-date>
  <authored-date>2007-10-16T02:12:18-07:00</authored-date>
  <message>First merge of prototype UI and code.

git-svn-id: http://svn.talia.discovery-project.eu/talia/Talia/trunk@123 2960d7dc-a92c-0410-a2fe-c68badc242c0</message>
  <tree>843167adb9923c305ea4db1fa692981922097242</tree>
  <committer>
    <name>daniel</name>
    <email>ghub@limitedcreativity.org</email>
  </committer>
</commit>
