Take a look:
http://www.google.com/support/webmasters/bin/answer.py?answer=34431&topic=8522
"However, these pages can cause problems for our crawler and may be ignored".
So it is indeed possible that they are dropped and ignored.
Actually similar claims are all over their site look:
http://www.vbseo.com/f2/google-com-dynamic-vs-static-urls-2466/
The solution could be in creating a sitemap of course. or perhaps using "folders" - www.site.com/5/page.html ? where 5 is "start" parameter.
What I want to use paginating for is the "articles" pages. The articles are structured in folders, and they are named after the article category. If for example some category gets crowded with articles pagination is elegant solution for people to browse them as it also can provide summary description and listing only article names in a long list wouldn’t really look good.
As I’m developer, I can propose adding a define near the top of ditto containing something like:
$paramorder = ’start,end,whatever,somethingelse’;
then splitting that into an array
finally when page that is paginated is encountered:
page-5-3-4-1.html - where 5, 3, 4 and 1 would be start, end, whatever and somethingelse parameters. i used something like that on some other sites. There are a number of soulutions but I’m not sure how would it affect the basic MODx url rewriter... as i see:
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
as this looks i think there would be the need for some delimiter to recognize the parameters behind for the paginator and distinguish them from page alias.
how does that look?