$smwgPagingLimit

From semantic-mediawiki.org


Configuration parameter details:
Name $smwgPagingLimit
Description Sets the number of results shown in the listings on pages in the namespace "Property", "Concept" as well as on the special pages "Special:Types" and "Special:ProcessingErrorList"
Default setting
$smwgPagingLimit =  [
   'type' => 200,
   'concept' => 200,
   'property' => 50,
   'errorlist' => 25,
];
Software Semantic MediaWiki
Since version
Until version still available
Configuration Interface settings
Keyword interface settings · paging limit · property page · property · type page · data type · concept page · concept


Consolidates $smwgTypePagingLimit, $smwgConceptPagingLimit, and $smwgPropertyPagingLimit into one $smwgPagingLimit 1.

Default setting[edit]

$smwgPagingLimit =  [
   'type' => 200,
   'concept' => 200,
   'property' => 50,
   'errorlist' => 25,
];

Available options[edit]

  • type – sets the number of listings on pages on the spcial page special page "Types"Lists all available datatypes. If a value of "0" is given, the respective listings are hidden completely.
  • concept – sets the number of listings on pages in the namespace "Concept". If a value of "0" is given, the respective listings are hidden completely.
  • property – sets the number of results shown in the listings on pages in namespace "Property". It uses a smaller value since these lists need more space and have a negative impact on performance. If a value of "0" is given, the respective listings are hidden completely.
  • errorlist – sets the number of listings on the special page special page "ProcessingErrorList"Lists errors that occurred in connection with Semantic MediaWiki. If a value of "0" is given, the respective listings are hidden completely.

References

  1. ^  Semantic MediaWiki: GitHub pull request gh:smw:3231