TaskForSaid
Event | Acronym | end_date | start_date | City | ordinal |
---|---|---|---|---|---|
5GWN 2017 | 5GWN 2017 | 23 April 2017 | 21 April 2017 | Beijing | 1 |
AAAI 1980 | AAAI 1980 | 21 August 1980 | 18 August 1980 | Stanford | 1 |
ACCC 2020 | ACCC 2020 | 6 December 2020 | 4 December 2020 | - | 1 |
ACEE 2021 | ACEE 2021 | 26 September 2021 | 24 September 2021 | Beijing | 1 |
ACHI 2008 | ACHI 2008 | 15 February 2008 | 10 February 2008 | Sainte Luce | 1 |
ACIRS 2016 | ACIRS 2016 | 24 July 2016 | 20 July 2016 | Tokyo | 1 |
ACMME 2013 | ACMME 2013 | 9 October 2013 | 9 October 2013 | Wuhan | 1 |
ACNS 2003 | ACNS 2003 | 19 October 2003 | 16 October 2003 | Kunming | 1 |
AFIN 2009 | AFIN 2009 | 23 June 2009 | 18 June 2009 | Athens | 1 |
AICCC 2018 | AICCC 2018 | 23 December 2018 | 21 December 2018 | Tokyo | 1 |
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]].