TaskForSaid
Event | Acronym | end_date | start_date | City | ordinal |
---|---|---|---|---|---|
3dui 2010 | 3DUI 2020 | 21 March 2010 | 20 March 2010 | Waltham | 15 |
3PGIC 2010 | 3PGIC 2010 | 18 February 2010 | 15 February 2010 | Krakow | 4 |
5GU 2017 | 5GU 2017 | 9 June 2017 | 8 June 2017 | Melbourne | 2 |
5GWN 2017 | 5GWN 2017 | 23 April 2017 | 21 April 2017 | Beijing | 1 |
AAAI 1980 | AAAI 1980 | 21 August 1980 | 18 August 1980 | Stanford | 1 |
AAAI 1982 | AAAI 1982 | 20 August 1982 | 18 August 1982 | Pittsburgh | 2 |
AAAI 1983 | AAAI 1983 | 26 August 1983 | 22 August 1983 | Washington | 3 |
AAAI 1984 | AAAI 1984 | 10 August 1984 | 6 August 1984 | Austin | 4 |
AAAI 1986 | AAAI 1986 | 15 August 1986 | 11 August 1986 | Philadelphia | 5 |
AAAI 1987 | AAAI 1987 | 17 July 1987 | 13 July 1987 | Seattle | 6 |
- "]]" is not a number.
- Some use of "[[" in your query was not closed by a matching "]]".
Solution
1. this can be done by changing configuration parameters by the site administrators according to the configurations of the server. The maximum number of rows printed is set by the configuration parameter $smwgQMaxInlineLimit (500 by default) for setting the maximal number of rows ever printed by queries or the configuration parameter $smwgQMaxLimit (1000 by default) setting the maximal number of rows ever retrieved by queries in the "LocalSettings.php" file. The limit parameter will not normally help to increase the number beyond this limit.
2-4. please see the query above. Please use the following URL to pass limit and ordinal parameters (https://www.openresearch.org/mediawiki/index.php?title=TaskForSaid?limit=10?ordinal=1).
5. The issue is not clear. What is meant by hide [[Category:{{#urlget:field}}]]
in the #ask queries? In addition, there is no ‘field’ in the above query.
Anyway, #urlget: is used to get a parameter from the URL to assign it to a property. A default value is used to set the value if the URL does not contain this parameter.
e.g., it should be [[Category:{{#urlget:field|chemistry}}]]
.
What improvements to that extension you could imagine?
The extension could support multi-value fields for the same parameter. e.g., consider the parameter city. If the user wants to retrieve conferences hold in only Berlin and Hannover, the parameter might be passed in the URL as ?city=Berlin, Hannover
.
The values then can be easily retrieved by .split(',')
method.
Another code improvement: The code should handle the case of parameters like city[[0] and city[0]].