<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,219 +1,30 @@
-------------------------
-			Urls for project
-------------------------
-
-Porject creator:
-http://seesaw.it/
-
-Code location:
-http://code.google.com/p/rails-widgets/
-
-Developer group:
-http://groups.google.com/group/rails-widgets-dev
-
-Usergroup:
-http://groups.google.com/group/rails-widgets
-
-------------------------
-			Installation
-------------------------
-Check out from SVN:
-svn checkout http://rails-widgets.googlecode.com/svn/trunk/ rails-widgets-read-only
-
-Install as a plugin:
-ruby script/plugin http://rails-widgets.googlecode.com/svn/trunk/
-
-Slideshow of usage:
-http://www.slideshare.net/paolo.dona/rails-widgets-by-paolo-dona-at-railstoitaly
-
-------------------------
-			Usage
-------------------------
-
-- - Tabnav - -
-
-creation:
-ruby script/generate tabnav main
-
-locate and change the file, to fit your needs here:
-	app/views/widgets/_main_tabnav.rhtml
-	
-Note: you could change the name to _main_tabnav.html.erb for Rails +2.0
-
-Add in your layout file:
-&lt;html&gt;
-	&lt;head&gt;....&lt;/head&gt;
-	&lt;body&gt;
-		
-		&lt;% tabnav :main do %&gt;
-		
-			....your contense goes here, like:
-		  &lt;%= yield %&gt;
-		
-		&lt;% end %&gt;
-		
-	&lt;/body&gt;
-&lt;/html&gt;
-
-* Add tabs to the tab file *
-edit:
-	app/view/widgets/_main_tabnav.rhtml
-
-	add_tab do |t|
-		t.named &quot;name of tab&quot;
-		t.links_to :controller =&gt; &quot;orders&quot; # could also be :controller =&gt; &quot;orders&quot;, :action =&gt; &quot;show&quot;
-	end	
-
-* create custum css *
-edit:
-	app/view/widgets/_main_tabnav.rhtml
-	
-	change:
-	render_tabnav :main, :generate_css =&gt; true do
-	
-	to:
-	render_tabnav :main, :generate_css =&gt; false do
-	
-* Highlighting *
-edit:
-	app/view/widgets/_main_tabnav.rhtml
-	
-	add:	
-	t.highlights_on :controller =&gt; &quot;locations&quot;
-	
-	to the relevant tab
-	
-* REST tabs links*
-edit:
-	app/view/widgets/_main_tabnav.rhtml
-
-	change:
-	t.links_to :controller =&gt; &quot;orders&quot;
-	
-	to:
-	t.links_to hash_for_orders_path
-
-* conditional tabs *
-You only want to show a tab, if a user is logged in
-example:
-	add_tab do |t|
-      t.named 'Software'
-      t.links_to hash_for_programs_path
-       t.highlights_on :controller =&gt; &quot;programs&quot;
-   end if logged_in?	
-
-* nested tabs	*
-ruby script/generate tabnav invoices
-
-inline tabnav (with out box)
-&lt;%= tabnav :invoices %&gt;
-
-Incert the code displayed abow, in your relevant view file(s)
-line /view/invoices/index.rhtml | show.rhtml | ....
-
-edit:
-	app/view/widgets/_invoices_tabnav.rhtml
-
-	add_tab do |t|
-		t.named &quot;show&quot;
-		t.links_to :controller =&gt; &quot;invoices&quot;, :action =&gt; &quot;show&quot;
-	end	
-	
-	add_tab do |t|
-		t.named &quot;new&quot;
-		t.links_to :controller =&gt; &quot;invoices&quot;, :action =&gt; &quot;new&quot;
-	end	
-	
-	add_tab do |t|
-		t.named &quot;edit&quot;
-		t.links_to :controller =&gt; &quot;invoices&quot;, :action =&gt; &quot;edit&quot;
-	end	
-
-Note: remember to add highlighting to main navigation bar, to maintain highlighting.
-- - Navigation - -
-Installation:
-	ruby script/generate navigation main
-		
-add to view/layout file:
-	&lt;%= navigation :main %&gt;	
-	
-edit navigation link:
-	app/view/widgets/_main_navigation.rhtml	
-
-		add_item do |i|
-			i.named &quot;home&quot;
-			i.links_to :controller =&gt; &quot;invoices&quot;
-		end
-		
-		add_item :link =&gt; &quot;http://www.seesaw.it&quot;
-		
-- - Tooltips - -
-add in view file:
-
-			&lt;% tooltip image_tab('question_mark') do %&gt;
-				&lt;h2&gt;Starting page &lt;/h2&gt;
-				&lt;p&gt;The first page you see&lt;/p&gt;
-			&lt;% end %&gt;	
-			
-Ajax version:
-			&lt;% 
-				tooltip do |t|
-					t.named image_tag('question_mark')
-					t.links_to_remote :action =&gt; 'first_time'
-				end
-			%&gt;
-										
-- - Tableizer - -
-	&lt;% tableize :customers, @customers,
-							:header =&gt; 'Listing Customers',
-							:generate_css =&gt; 'true' do |customer| %&gt;
-							
-							&lt;h3&gt;&lt;%= customer.name %&gt;&lt;/h3&gt;
-							&lt;p&gt;
-								Code: &lt;%= customer.code %&gt;
-								Place order: &lt;%= customer.order %&gt;
-								&lt;%= link_to 'show', .... %&gt;
-								&lt;%= link_to 'Edit', .... %&gt;
-								&lt;%= link_to 'Destroy', .... %&gt;
-							&lt;/p&gt;
-	&lt;% end %&gt;	
-							
-- - ShowHide - -
-
-usage in view, array usage
-
-&lt;% for user in @users %&gt;
-	&lt;%=h user.login %&gt;
-		&lt;%= show_detail_for user %&gt;
-			
-			&lt;% detail_for user do %&gt;
-			 details ....
-			 &lt;%=h user.email %&gt;
-			 more details....
-			 &lt;%= hide_detail_for user %&gt;
-		 &lt;% end %&gt;
-&lt;% end %&gt;
-
-- - Column layout - -
-
-		column_layout :columns =&gt; 3 do
-		
-			add_part do |p|
-				p.column 1
-				p.named &quot;news&quot;
-				p.contains :controller =&gt; &quot;news&quot;
-			end
-			
-			add_part do |p|
-				p.column 2
-				p.named &quot;Weather&quot;
-				p.contains :controller =&gt; &quot;weather&quot;
-			end
-			
-		end	
-
-- - Nubbins widget - -
-	
-------------------------
-			Troubleshoot
-------------------------
\ No newline at end of file
+- - Tableizer - -
+	&lt;% tableize :customers, @customers,
+							:header =&gt; 'Listing Customers',
+							:generate_css =&gt; 'true' do |customer| %&gt;
+							
+							&lt;h3&gt;&lt;%= customer.name %&gt;&lt;/h3&gt;
+							&lt;p&gt;
+								Code: &lt;%= customer.code %&gt;
+								Place order: &lt;%= customer.order %&gt;
+								&lt;%= link_to 'show', .... %&gt;
+								&lt;%= link_to 'Edit', .... %&gt;
+								&lt;%= link_to 'Destroy', .... %&gt;
+							&lt;/p&gt;
+	&lt;% end %&gt;	
+							
+- - ShowHide - -
+
+usage in view, array usage
+
+&lt;% for user in @users %&gt;
+	&lt;%=h user.login %&gt;
+		&lt;%= show_detail_for user %&gt;
+			
+			&lt;% detail_for user do %&gt;
+			 details ....
+			 &lt;%=h user.email %&gt;
+			 more details....
+			 &lt;%= hide_detail_for user %&gt;
+		 &lt;% end %&gt;
+&lt;% end %&gt;</diff>
      <filename>Documentation.txt</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>daebb00e9c3ab4403363534a00e826aa89bf5cb3</id>
    </parent>
  </parents>
  <author>
    <name>Paolo Dona</name>
    <email>paolo.dona@gmail.com</email>
  </author>
  <url>http://github.com/paolodona/rails-widgets/commit/5713778d57926f45f4a0daecd01aac3d3d3489ad</url>
  <id>5713778d57926f45f4a0daecd01aac3d3d3489ad</id>
  <committed-date>2008-11-05T16:49:24-08:00</committed-date>
  <authored-date>2008-11-05T16:49:24-08:00</authored-date>
  <message>removed documentation, is now on the Github wiki</message>
  <tree>527db04b5f63ce3bee488fd6c23358dee6377b7a</tree>
  <committer>
    <name>Paolo Dona</name>
    <email>paolo.dona@gmail.com</email>
  </committer>
</commit>
