Displaying 2 results from an estimated 2 matches for "summary_pag".
Did you mean:
summary_page
2006 Mar 29
6
Pagination ...
Hey,
I have a CMS I am building right now and I would like to my articles to
split in many pages.
Here is what I want to do:
Once the article reaches 150 words or so it create a link to Page 2 of
the article and, on page 2, it displays the rest of the article...
How can I do that ?
(note that you explain this to a beginner :)
Thank you!
--
Posted via http://www.ruby-forum.com/.
2009 Sep 23
2
[PATCH node] Introduces the virtual network administration functions.
...port ConfigScreen
+from networkconfig import NetworkConfig
+
+NETWORK_NAME_PAGE = 1
+IPV4_ADDRESS_PAGE = 2
+PUBLIC_NETWORK_ALERT_PAGE = 3
+NETWORK_DETAILS_PAGE = 4
+DHCP_RANGE_PAGE = 5
+NETWORK_TYPE_PAGE = 6
+SELECT_PHYSICAL_NETWORK_PAGE = 7
+SUMMARY_PAGE = 8
+
+class DefineNetworkConfigScreen(ConfigScreen):
+ def __init__(self):
+ ConfigScreen.__init__(self, "Create A Virtual Network Interface")
+ self.__config = NetworkConfig()
+
+ def get_elements_for_page(self, screen, page):
+ if page is N...