Index: /branches/release-38/lib/MT/Template/ContextHandlers.pm
===================================================================
--- /branches/release-38/lib/MT/Template/ContextHandlers.pm (revision 2358)
+++ /branches/release-38/lib/MT/Template/ContextHandlers.pm (revision 2360)
@@ -15685,5 +15685,6 @@
 =head2 IfMoreResults
 
-=for tags pagination
+A conditional tag used to test whether the requested content has more
+to show than currently appearing in the page.
 
 =cut
@@ -15701,5 +15702,6 @@
 =head2 IfPreviousResults
 
-=for tags pagination
+A conditional tag used to test whether the requested content has previous
+page.
 
 =cut
@@ -15714,5 +15716,26 @@
 =head2 PagerBlock
 
-=for tags pagination
+A block tag iterates from 1 to the number of the last page in the search
+result. For example, if the limit was 10 and the number of results is 75,
+the tag loops from 1 through 8. 
+
+The page number is set to __value__ standard variable in each iteration. 
+
+The tag also sets __odd__, __even__, __first__, __last__ and __counter__
+standard variables. 
+
+=back
+
+B<Example:>
+
+    M
+    <MTPagerBlock>
+      <MTIfCurrentPage>o<MTElse><a href="<MTPagerLink>">o</a></MTIfCurrentPage>
+    </MTPagerBlock>
+    vable Type
+
+produces:
+
+    "Mooooooooovable Type" where each "o" is a link to the page.
 
 =cut
@@ -15756,5 +15779,7 @@
 =head2 IfCurrentPage
 
-=for tags pagination
+A conditional tag returns true if the current page in the context of
+PagerBlock is the current page that is being rendered. 
+The tag must be used in the context of PagerBlock.
 
 =cut
@@ -15767,5 +15792,6 @@
 =head2 PagerLink
 
-=for tags pagination
+A function tag returns the URL points to the page in the context of
+PagerBlock. The tag can only be used in the context of PagerBlock. 
 
 =cut
@@ -15800,5 +15826,6 @@
 =head2 CurrentPage
 
-=for tags pagination
+A function tag returns a number represents the number of current page.
+The number starts from 1.
 
 =cut
@@ -15815,5 +15842,6 @@
 =head2 TotalPages
 
-=for tags pagination
+A function tag returns a number represents the total number of pages
+in the current search context. The number starts from 1. 
 
 =cut
@@ -15832,5 +15860,6 @@
 =head2 PreviousLink
 
-=for tags pagination
+A function tag returns the URL points to the previous page of 
+the current page that is being rendered.
 
 =cut
@@ -15855,5 +15884,6 @@
 =head2 NextLink
 
-=for tags pagination
+A function tag returns the URL points to the next page of the current page
+that is being rendered. 
 
 =cut
