<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -3,37 +3,37 @@ module Component::Glossary
     def index
       @terms = Term.paginate_by_site_id current_site.id, :page =&gt; params[:page], :per_page =&gt; 10, :order =&gt; &quot;title ASC&quot;
     end
-    
+
     def show
-      
+
     end
-    
+
     def new
       @terms = Term.new :site =&gt; current_site
     end
-    
+
     def create
       @term = Term.create((params[:term] || {}).merge(:site =&gt; current_site))
     end
-    
+
     def edit
       term
     end
-    
+
     def update
       term.update_attributes params[:term]
       respond_to do |format|
         format.js
       end
     end
-    
+
     def destroy
       term.destroy
     end
-  
+
   protected
     def term
       @term ||= Term.find_by_site_id_and_id(current_site.id, params[:id]) or raise ActiveRecord::RecordNotFound
     end
-  end  
+  end
 end
\ No newline at end of file</diff>
      <filename>app/controllers/component/glossary/admin_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,14 +1,14 @@
 module Component::Glossary
   class Term &lt; Content::Base
     option :synonyms
-    
+
     alias_attribute :term, :title
     alias_attribute :definition, :content
-    
+
     def synonyms
       @synonyms ||= (options[:synonyms] ||= &quot;&quot;).split(&quot;,&quot;).map(&amp;:strip)
     end
-    
+
     def synonyms=(value)
       @terms, @synonyms = nil, nil
       options[:synonyms] = case value
@@ -16,15 +16,15 @@ module Component::Glossary
       else Array(value).join(&quot;,&quot;)
       end
     end
-    
+
     def terms
       @terms ||= [ term ] + synonyms
     end
-    
+
     def to_regexp
       @regexp ||= Regexp.compile &quot;\\b(&quot; + terms.join(&quot;|&quot;) + &quot;)\\b&quot;, true
     end
-    
+
     class &lt;&lt; self
       def collectible?
         true</diff>
      <filename>app/models/component/glossary/term.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>2d36b87fec6bec473391ed137c2f474fc9dcdd34</id>
    </parent>
  </parents>
  <author>
    <name>Matt Powell</name>
    <email>fauxparse@gmail.com</email>
  </author>
  <url>http://github.com/leftclick/bhq-glossary/commit/8af9513e1af8d6d6c37e26ebddc4cd3840be5d49</url>
  <id>8af9513e1af8d6d6c37e26ebddc4cd3840be5d49</id>
  <committed-date>2009-11-05T16:10:04-08:00</committed-date>
  <authored-date>2009-11-05T16:10:04-08:00</authored-date>
  <message>hardcore whitespace stripping</message>
  <tree>9706f1ea49cfbfeee6d44b92a935bd6f83f0bee9</tree>
  <committer>
    <name>Matt Powell</name>
    <email>fauxparse@gmail.com</email>
  </committer>
</commit>
