When viewing a folder in a CPSDefault site with folder_contents, only the first 100 documents are visible.
The objects are broken up into pages 1-30; 31-60; 61-90 and 91-100 whenever the object count is > 100
The limitation is created by the getBatchList script, whose max_items parameter defaults to 100
The macro content_lib_display_contents/display_contents who calls getBatchList does not provide for passing the max_items parameter.
replacing the following lines:
zoom zoom|python:0;
batches_all python:here.getBatchList(items, columns, items_per_page, zoom);
by these:
zoom zoom|python:0;
max_items max_items|python:100;
batches_all python:here.getBatchList(items, columns, items_per_page, zoom, max_items);
allows using the max_items variable
then, setting max_items to None (eg in folder_contents) allows us to display the full contents