[Checkins] SVN: Products.CMFDefault/branches/charlie_formlib_for_folders/Products/CMFDefault/browser/templates/pagin File renamed.

Charlie Clark charlie at begeistert.org
Mon Aug 10 13:09:57 EDT 2009


Log message for revision 102630:
  File renamed.

Changed:
  A   Products.CMFDefault/branches/charlie_formlib_for_folders/Products/CMFDefault/browser/templates/pagination_widgets.pt
  D   Products.CMFDefault/branches/charlie_formlib_for_folders/Products/CMFDefault/browser/templates/pagingation_widgets.pt

-=-
Copied: Products.CMFDefault/branches/charlie_formlib_for_folders/Products/CMFDefault/browser/templates/pagination_widgets.pt (from rev 102629, Products.CMFDefault/branches/charlie_formlib_for_folders/Products/CMFDefault/browser/templates/pagingation_widgets.pt)
===================================================================
--- Products.CMFDefault/branches/charlie_formlib_for_folders/Products/CMFDefault/browser/templates/pagination_widgets.pt	                        (rev 0)
+++ Products.CMFDefault/branches/charlie_formlib_for_folders/Products/CMFDefault/browser/templates/pagination_widgets.pt	2009-08-10 17:09:56 UTC (rev 102630)
@@ -0,0 +1,18 @@
+<metal:macro metal:define-macro="pagination"
+  tal:define="current_page view/current_page_number">
+	<a href="" 
+	   tal:condition="python: current_page != 1"
+		 tal:attributes="href view/navigation_previous/url">&lt;&lt;</a>
+	<tal:repeat repeat="page view/getPages">
+		<a tal:condition="python: not page['number'] == current_page" 
+		  tal:attributes="href page/url"
+		  tal:content="page/number">Page number</a>
+	  <span tal:condition="python: page['number'] == current_page"
+	        tal:content="page/number">Page number</span>
+		<tal:condition condition="not: repeat/page/end">|</tal:condition> 
+	</tal:repeat>
+	
+	<a href="" 
+	   tal:condition="python: current_page != view/page_count()" 
+	   tal:attributes="href view/navigation_next/url">&gt;&gt;</a>
+</metal>
\ No newline at end of file

Deleted: Products.CMFDefault/branches/charlie_formlib_for_folders/Products/CMFDefault/browser/templates/pagingation_widgets.pt
===================================================================
--- Products.CMFDefault/branches/charlie_formlib_for_folders/Products/CMFDefault/browser/templates/pagingation_widgets.pt	2009-08-10 15:09:13 UTC (rev 102629)
+++ Products.CMFDefault/branches/charlie_formlib_for_folders/Products/CMFDefault/browser/templates/pagingation_widgets.pt	2009-08-10 17:09:56 UTC (rev 102630)
@@ -1,18 +0,0 @@
-<metal:macro metal:define-macro="pagination"
-  tal:define="current_page view/current_page_number">
-	<a href="" 
-	   tal:condition="python: current_page != 1"
-		 tal:attributes="href view/navigation_previous/url">&lt;&lt;</a>
-	<tal:repeat repeat="page view/getPages">
-		<a tal:condition="python: not page['number'] == current_page" 
-		  tal:attributes="href page/url"
-		  tal:content="page/number">Page number</a>
-	  <span tal:condition="python: page['number'] == current_page"
-	        tal:content="page/number">Page number</span>
-		<tal:condition condition="not: repeat/page/end">|</tal:condition> 
-	</tal:repeat>
-	
-	<a href="" 
-	   tal:condition="python: current_page != view/page_count()" 
-	   tal:attributes="href view/navigation_next/url">&gt;&gt;</a>
-</metal>
\ No newline at end of file



More information about the Checkins mailing list