Différences entre les versions de « Issue/3387 »

De Semantic MediaWiki - Sandbox
(form)
(chg)
 
(5 versions intermédiaires par le même utilisateur non affichées)
Ligne 16 : Ligne 16 :
  
 
== Queried property values ==
 
== Queried property values ==
=== wrong separator ===
+
=== Wrong separator ===
 
; syntax
 
; syntax
 
<pre>
 
<pre>
Ligne 23 : Ligne 23 :
 
; result
 
; result
 
{{#show: Under Pressure |?Is performer }}
 
{{#show: Under Pressure |?Is performer }}
: → This does not work since the separator is "," while you need a "||" as separator. Thus you get nothing in return:
 
 
<pre>
 
<pre>
 
; syntax
 
; syntax
Ligne 33 : Ligne 32 :
 
</pre>
 
</pre>
 
; result
 
; result
 +
: → This does not work since the separator is "," while you need a "||" as separator. Thus you get nothing in return:
 
{{#ask:
 
{{#ask:
 
  [[Category:Song]]
 
  [[Category:Song]]
Ligne 39 : Ligne 39 :
 
}}
 
}}
  
=== correct separator ===
+
=== Correct separator ===
==== syntax with #ask without specifying a result format ====
+
==== Syntax using #ask without specifying a result format ====
 +
{{Callout
 +
|[https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/2488#issuecomment-381404426 Note the difference between the "list" and the "plainlist" format]
 +
}}
 +
{{Callout
 +
|<code>#ask</code> defaults to the "list" format.
 +
|info
 +
}}
 
<pre>
 
<pre>
 
{{#ask: [[Under Pressure]] |?Is performer |headers=hide |link=none |mainlabel=- |valuesep={{!!}} }}
 
{{#ask: [[Under Pressure]] |?Is performer |headers=hide |link=none |mainlabel=- |valuesep={{!!}} }}
Ligne 56 : Ligne 63 :
 
</pre>
 
</pre>
 
; result
 
; result
 +
: → This does not work since the "list" format adds extra formatting to the resulting data values. [[#Syntax_using_.23ask_and_specifying_a_result_format|Specify the "plainlist" format for best results.]]
 
{{#ask:
 
{{#ask:
 
  [[Category:Song]]
 
  [[Category:Song]]
Ligne 62 : Ligne 70 :
 
}}
 
}}
  
==== syntax with #show without specifying a result format ====
+
==== Syntax using <code>#show</code> without specifying a result format ====
 +
{{Callout
 +
|[https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/2488#issuecomment-381404426 Note the difference between the "list" and the "plainlist" format]
 +
}}
 +
{{Callout
 +
|<code>#show</code> defaults to the "plainlist" format.
 +
|info
 +
}}
 
<pre>
 
<pre>
 
{{#show: Under Pressure |?Is performer |valuesep={{!!}} }}
 
{{#show: Under Pressure |?Is performer |valuesep={{!!}} }}
Ligne 84 : Ligne 99 :
 
}}
 
}}
  
==== syntax using #ask and specifying a result format ====
+
==== Syntax using <code>#ask</code> and specifying a result format ====
 +
{{Callout
 +
|[https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/2488#issuecomment-381404426 Note the difference between the "list" and the "plainlist" format]
 +
}}
 
; syntax
 
; syntax
 
<pre>
 
<pre>
Ligne 100 : Ligne 118 :
 
}}
 
}}
  
==== syntax using #show and specifying a result format ====
+
==== Syntax using <code>#show</code> and specifying a result format ====
 +
{{Callout
 +
|[https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/2488#issuecomment-381404426 Note the difference between the "list" and the "plainlist" format]
 +
}}
 
; syntax
 
; syntax
 
<pre>
 
<pre>

Dernière version du 2 septembre 2018 à 20:15

Hard coded property values

syntax
{{#ask:
 [[Category:Song]]
 [[Is performer::David Bowie||Queen]]
 |format=broadtable
}}
result
 
000003
000023
000078
000126

Queried property values

Wrong separator

syntax
{{#show: Under Pressure |?Is performer }}
result

David Bowie

; syntax
{{#ask:
 [[Category:Song]]
 [[Is performer::{{#show: Under Pressure |?Is performer }}]]
 |format=broadtable
}}
result
→ This does not work since the separator is "," while you need a "||" as separator. Thus you get nothing in return:
 
000003
000023
000078
000126

<ul><li>La partie « |David Bowie » de la requête n’a pas été comprise. Les résultats peuvent être inattendus.</li> <!--br--><li>La partie « ]] » de la requête n’a pas été comprise. Les résultats peuvent être inattendus.</li></ul>

Correct separator

Syntax using #ask without specifying a result format

#ask defaults to the "list" format.
{{#ask: [[Under Pressure]] |?Is performer |headers=hide |link=none |mainlabel=- |valuesep={{!!}} }}
result

David Bowie

syntax
{{#ask:
 [[Category:Song]]
 [[Is performer::{{#ask: [[Under Pressure]] |?Is performer |headers=hide |link=none |mainlabel=- |valuesep={{!!}} }}]]
 |format=broadtable
}}
result
→ This does not work since the "list" format adds extra formatting to the resulting data values. Specify the "plainlist" format for best results.
 
000003
000023
000078
000126

Syntax using #show without specifying a result format

#show defaults to the "plainlist" format.
{{#show: Under Pressure |?Is performer |valuesep={{!!}} }}
result

David Bowie

syntax
{{#ask:
 [[Category:Song]]
 [[Is performer::{{#show: Under Pressure |?Is performer |valuesep={{!!}} }}]]
 |format=broadtable
}}
result
 
000003
000023
000078
000126

<ul><li>La partie « |David Bowie » de la requête n’a pas été comprise. Les résultats peuvent être inattendus.</li> <!--br--><li>La partie « ]] » de la requête n’a pas été comprise. Les résultats peuvent être inattendus.</li></ul>

Syntax using #ask and specifying a result format

syntax
{{#ask:
 [[Category:Song]]
 [[Is performer::{{#ask: [[Under Pressure]] |?Is performer |format=plainlist |headers=hide |link=none |mainlabel=- |valuesep={{!!}} }}]]
 |format=broadtable
}}
result
 
000003
000023
000078
000126

Syntax using #show and specifying a result format

syntax
{{#ask:
 [[Category:Song]]
 [[Is performer::{{#show: Under Pressure |?Is performer |format=plainlist |valuesep={{!!}} }}]]
 |format=broadtable
}}
result
 
000003
000023
000078
000126

<ul><li>La partie « |David Bowie » de la requête n’a pas été comprise. Les résultats peuvent être inattendus.</li> <!--br--><li>La partie « ]] » de la requête n’a pas été comprise. Les résultats peuvent être inattendus.</li></ul>

Les cookies nous aident à fournir nos services. En utilisant nos services, vous acceptez notre utilisation de cookies.