|
|
Line 102: |
Line 102: |
| For something like a program page, to pull in the "Program short description" use the following code to pull in just the respective short description | | For something like a program page, to pull in the "Program short description" use the following code to pull in just the respective short description |
|
| |
|
| | <pre> |
| <nowiki>{{#ask: [[Program name::CATS+]] | | <nowiki>{{#ask: [[Program name::CATS+]] |
| | ?Program short description | | | ?Program short description |
Line 109: |
Line 110: |
| | mainlabel=- | | | mainlabel=- |
| }}</nowiki> | | }}</nowiki> |
| | </pre> |
|
| |
|
| ===Semantic query using a template=== | | ===Semantic query using a template=== |
Line 115: |
Line 117: |
| On this page the left column you "ask" the mediawiki to provide you information that matches your criteria. That criteria is any element that is a property within mediawiki and could be categories, event names, start dates etc.... | | On this page the left column you "ask" the mediawiki to provide you information that matches your criteria. That criteria is any element that is a property within mediawiki and could be categories, event names, start dates etc.... |
|
| |
|
| So for example you could "ask", provide everything that is within the category of events. The code to do this is <nowiki> [[Category:Events]] </nowiki>. '''To note, a bug within mediawiki semantic search has led us to include <nowiki>[[Modification date::+]]</nowiki> within all semantic queries.''' So the code to semantically query all events in this case would be <nowiki>[[Category:Events]] [[Modification date::+]]</nowiki>. On the right you want to provide all the properties you'd like the query to return. For a list of all properties you can visit [https://moha.wiki/Special:Properties Properties]. For an individual page or events properties you can visit any given page and in the bottom left, click tools and then browse properties. This will show you all properties on that page as well as the values within those properties. In our example we're going to return the following properties <br> | | So for example you could "ask", provide everything that is within the category of events. The code to do this is <nowiki> [[Category:Events]] </nowiki>. '''To note, a bug within mediawiki semantic search has led us to include <nowiki>[[Modification date::+]]</nowiki> within all semantic queries.''' So the code to semantically query all events in this case would be <nowiki>[[Category:Events]] [[Modification date::+]]</nowiki>. On the right you want to provide all the properties you'd like the query to return. For a list of all properties you can visit [https://moha.wiki/Special:Properties Properties]. For an individual page or events properties you can visit any given page and in the bottom left, click tools and then browse properties. This will show you all properties on that page as well as the values within those properties. In our example we're going to return the following properties |
| :?Event description
| | <pre> |
| :?Date Start
| | ?Event description |
| :?Date End
| | ?Date Start |
| :?Event image
| | ?Date End |
| :?Event name
| | ?Event image |
| | ?Event name |
| | </pre> |
|
| |
|
| Specific things within the following form to remember are. We must use "named arguments" so that box must be checked, that means that our properties are text names and not numeric values. | | Specific things within the following form to remember are. We must use "named arguments" so that box must be checked, that means that our properties are text names and not numeric values. |
Line 126: |
Line 130: |
| To use a template that has been created to hold this data, you use the option "plainlist" and the template name that's been created. More info on other options can be found at the initial link. An example of the final piece of code in this instance might look like | | To use a template that has been created to hold this data, you use the option "plainlist" and the template name that's been created. More info on other options can be found at the initial link. An example of the final piece of code in this instance might look like |
|
| |
|
| <code> | | |
| | <pre> |
| <nowiki> | | <nowiki> |
| {{#ask: [[Category:Events]] [[Modification date::+]] [[Event name::Interactive_Drive-In_Media_101 || Hacking_old_tech:_Mystic_Hotline || AR_collaboration:_flARmingos]] | | {{#ask: [[Category:Events]] [[Modification date::+]] [[Event name::Interactive_Drive-In_Media_101 || Hacking_old_tech:_Mystic_Hotline || AR_collaboration:_flARmingos]] |
Line 149: |
Line 154: |
| }} | | }} |
| </nowiki> | | </nowiki> |
| </code> | | </pre> |
| | |
| | <pre> |
| | <nowiki> |
| | {{#ask: [[Category:CATEGORY NAME]] [[Modification date::+]] [[PROPERTY::PROPERTY NAME]] |
| | ''PROPERTIES TO BE QUERIED OR DISPLAYED MUST GO BELOW'' |
| | |?Event description |
| | |?Date Start |
| | |?Date End |
| | |?Event image |
| | |?Event name |
| | |format=plainlist |
| | |limit=50 |
| | |offset=0 |
| | |link=all |
| | |sort=Date Start |
| | |order=asc |
| | |headers=show |
| | |searchlabel=... further results |
| | |propsep=, |
| | |valuesep=, |
| | |template=Single_Event_Display |
| | |named args=1 |
| | |class=sortable wikitable smwtable |
| | }} |
| | </nowiki> |
| | </pre> |
|
| |
|
|
| |
|
Line 155: |
Line 186: |
| <pre> | | <pre> |
| <nowiki> | | <nowiki> |
| {{#ask: [[Category:Events]] [[Modification date::+]] [[Event name::Interactive_Drive-In_Media_101 || Hacking_old_tech:_Mystic_Hotline || AR_collaboration:_flARmingos]] | | {{#ask: [[Category:CATEGORY NAME]] [[Modification date::+]] [[PROPERTY::PROPERTY NAME]] |
| | ''PROPERTIES TO BE QUERIED OR DISPLAYED MUST GO BELOW'' |
| |?Event description | | |?Event description |
| |?Date Start | | |?Date Start |
Revision as of 18:26, May 25, 2024
Design and Formatting
Wiki
Code Blocks
Semantic Queries and Templates
How to use intro box
Articles