You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| $wgDplSettings['allowedNamespaces']|[]| By default all existing namespaces are used when DPL4 initializes. Customize this setting with an array of namespace constants to restrict DPL4 to work only in those namespaces. |
26
-
| $wgDplSettings['allowUnlimitedCategories']| false | Set this to true to ignore `maxCategoryCount` and allow unlimited categories. Please note that large amounts of categories in a query can slow down or crash servers. |
27
-
| $wgDplSettings['allowUnlimitedResults']| false | Set this to true to ignore `maxResultCount` and allow unlimited results. Please note that large result sets may result in slow or failed page loads. |
28
-
| $wgDplSettings['alwaysCacheResults']| false | Set this to true to ignore `allowcachedresults` and always enable the parser cache. |
29
-
| $wgDplSettings['categoryStyleListCutoff']| 6 | Maximum number of items in a category list before being cut off. |
30
-
| $wgDplSettings['functionalRichness']| 3 | Set the level of parameters available to end users. |
31
-
| $wgDplSettings['maxCategoryCount']| 8 | Maximum number of categories to allow in queries. |
32
-
| $wgDplSettings['maxQueryTime']| 10000 | Maximum allowed time for database queries in milliseconds. |
33
-
| $wgDplSettings['maxResultCount']| 500 | Maximum number of results to return from a query. |
34
-
| $wgDplSettings['minCategoryCount']| 0 | Minimum number of categories to allow in queries. |
35
-
| $wgDplSettings['overrideParameterDefaults']|[]| An associative array of parameter names and their override values. These values replace the default parameter values defined in `ParametersData`, but only if the current defaults differ. |
36
-
| $wgDplSettings['queryCacheTime']| 0 | Can help with situations where you have a template with the same query used on a large number of pages all being refreshed at once. The query cache cannot be purged. Suggested value between 30 to 600. |
37
-
| $wgDplSettings['recursivePreprocess']| true | Use `Parser::recursivePreprocess()` to improve performance by preserving the internal cache, reducing redundant template parsing. |
38
-
| $wgDplSettings['recursiveTagParse']| false | Do recursive tag parsing on `<dpl>` parser tags converting tags and functions such as magic words like `{{PAGENAME}}`. This is similar to the `{{#dpl}}` parser function call, but may not work exactly the same in all cases. |
39
-
| $wgDplSettings['runFromProtectedPagesOnly']| false | Set this to true to allow DPL4 to run from protected pages only. This is recommended if wiki administrators are having issues with malicious users creating computationally intensive queries. |
25
+
| $wgDPLAllowedNamespaces|[]| By default all existing namespaces are used when DPL4 initializes. Customize this setting with an array of namespace constants to restrict DPL4 to work only in those namespaces. |
26
+
| $wgDPLAllowUnlimitedCategories| false | Set this to true to ignore `$wgDPLMaxCategoryCount` and allow unlimited categories. Please note that large amounts of categories in a query can slow down or crash servers. |
27
+
| $wgDPLAllowUnlimitedResults| false | Set this to true to ignore `$wgDPLMaxResultCount` and allow unlimited results. Please note that large result sets may result in slow or failed page loads. |
28
+
| $wgDPLAlwaysCacheResults| false | Set this to true to ignore `allowcachedresults` and always enable the parser cache. |
29
+
| $wgDPLCategoryStyleListCutoff| 6 | Maximum number of items in a category list before being cut off. |
30
+
| $wgDPLFunctionalRichness| 3 | Set the level of parameters available to end users. |
31
+
| $wgDPLMaxCategoryCount| 8 | Maximum number of categories to allow in queries. |
32
+
| $wgDPLMaxQueryTime| 10000 | Maximum allowed time for database queries in milliseconds. |
33
+
| $wgDPLMaxResultCount| 500 | Maximum number of results to return from a query. |
34
+
| $wgDPLMinCategoryCount| 0 | Minimum number of categories to allow in queries. |
35
+
| $wgDPLOverrideParameterDefaults|[]| An associative array of parameter names and their override values. These values replace the default parameter values defined in `ParametersData`, but only if the current defaults differ. |
36
+
| $wgDPLQueryCacheTime| 0 | Can help with situations where you have a template with the same query used on a large number of pages all being refreshed at once. The query cache cannot be purged. Suggested value between 30 to 600. |
37
+
| $wgDPLRecursivePreprocess| true | Use `Parser::recursivePreprocess()` to improve performance by preserving the internal cache, reducing redundant template parsing. |
38
+
| $wgDPLRecursiveTagParse| false | Do recursive tag parsing on `<dpl>` parser tags converting tags and functions such as magic words like `{{PAGENAME}}`. This is similar to the `{{#dpl}}` parser function call, but may not work exactly the same in all cases. |
39
+
| $wgDPLRunFromProtectedPagesOnly| false | Set this to true to allow DPL4 to run from protected pages only. This is recommended if wiki administrators are having issues with malicious users creating computationally intensive queries. |
40
40
41
41
The global variable `$wgNonincludableNamespaces` is automatically respected by DPL4. It will prevent the contents of the listed namespaces from appearing in DPL4's output.
42
42
43
-
**Note: `$wgDplSettings['maxResultCount']` is a LIMIT *on the SQL query itself*. Some DPL4 query parameters like `includematch` are applied *after* the SQL query, however, so results here may easily be misleading.**
43
+
**Note: `$wgDPLMaxResultCount` is a LIMIT *on the SQL query itself*. Some DPL4 query parameters like `includematch` are applied *after* the SQL query, however, so results here may easily be misleading.**
44
44
45
45
### Functional Richness
46
46
47
47
DynamicPageList4 has many features which are unlocked based on the maximum functional richness level. There are some that can cause high CPU or database load and should be used sparingly.
48
48
49
-
*`$wgDplSettings['functionalRichness'] = 0` is equivalent to Wikimedia's [DynamicPageList](https://www.mediawiki.org/wiki/Special:MyLanguage/Extension:DynamicPageList_(Wikimedia))
*`$wgDplSettings['functionalRichness'] = 2` adds performance equivalent features for templates and pagelinks
52
-
*`$wgDplSettings['functionalRichness'] = 3` allows more-expensive page inclusion features and regular expression queries.
53
-
*`$wgDplSettings['functionalRichness'] = 4` not recommended for public websites. Includes debugging parameters for testing and development.
49
+
*`$wgDPLFunctionalRichness = 0` is equivalent to Wikimedia's [DynamicPageList](https://www.mediawiki.org/wiki/Special:MyLanguage/Extension:DynamicPageList_(Wikimedia))
Copy file name to clipboardExpand all lines: i18n/bn.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@
13
13
"dpl_log_21": "কোয়েরি: <code>$0</code>",
14
14
"dpl_log_22": "সতর্কতা: '$1'-এর জন্য কোনো প্যারামিটার বিকল্প সরবরাহ করা হয়নি। ('=' অনুপস্থিত)",
15
15
"dpl_log_23": "ত্রুটি: সার্ভার ওভারলোড হওয়ার কারণে তালিকা প্রদর্শন করা যাচ্ছে না। অনুগ্রহ করে কিছুক্ষণ পর আবার চেষ্টা করুন।",
16
-
"dpl_log_24": "ত্রুটি: <code>$wgDplSettings['runFromProtectedPagesOnly']</code> নির্ধারণ করা আছে, তবে '$1' পাতাটি সম্পাদনা সুরক্ষিত নয়।",
16
+
"dpl_log_24": "ত্রুটি: <code>$wgDPLRunFromProtectedPagesOnly</code> নির্ধারণ করা আছে, তবে '$1' পাতাটি সম্পাদনা সুরক্ষিত নয়।",
17
17
"dpl_log_25": "ত্রুটি: $1",
18
18
"dpl_query_error": "DynamicPageList4 এক্সটেনশন (সংস্করণ $1) একটি SQL স্টেটমেন্ট উৎপন্ন করেছে যা ডাটাবেস ত্রুটির দিকে নিয়ে গেছে।<br/> এটি DynamicPageList4-এর অভ্যন্তরীণ ত্রুটি বা আপনার করা ত্রুটির কারণে হতে পারে; বিশেষ করে যখন 'categoryregexp' বা 'titleregexp'-এর মতো পরামিতি ব্যবহার করা হয় তখন এটি হতে পারে। নন-গ্রিডি *? মিলকরণ প্যাটার্ন সমর্থিত নয়।<br/> ত্রুটির বার্তাটি হলো:<br/><code>$2</code>",
19
19
"dpl-tag-tracking-category": "DynamicPageList4 পার্সার ট্যাগ ব্যবহার করা পাতা"
0 commit comments