Difference between revisions of "Documentation/4.1/Developers/Sandbox"

From Slicer Wiki
Jump to: navigation, search
Line 7: Line 7:
 
= Embedded video =
 
= Embedded video =
  
{{#ev:youtube|0iQCLlu1dko|320|right|Embedded Video test}}
+
{{#evp:youtube|0iQCLlu1dko|320|right|Embedded Video test}}
  
 
= Test modulo function associated with CURRENTTIMESTAMP =
 
= Test modulo function associated with CURRENTTIMESTAMP =

Revision as of 15:32, 22 April 2013

Home < Documentation < 4.1 < Developers < Sandbox

Graphviz test

<graphviz border='frame' format='png'>

digraph example1 {Hello->World!}

</graphviz>

Embedded video

The #evp parser function was deprecated in EmbedVideo 2.0. Please convert your parser function tag to #ev.

Test modulo function associated with CURRENTTIMESTAMP

28

Random image

Standard File Dialog (using Scalar Overlay reader)
Browse the image gallery

Use of get_web_data and for_external_table

The raw set of data retrieved using this URL is reported below:



Name,Color,Shape
Apple,Red,Round
Banana,Yellow,Oblong
Orange,Orange,Round
Pear,Yellow,"Pear-shaped"
{{#get_web_data:url=http://wiki.slicer.org/slicerWiki/index.php/Special:GetData/Documentation/4.0/Developers/Sandbox_data|format=CSV with header|data=name=Name,color=Color,shape=Shape}}
{| class="wikitable"
! Name
! Color {{#for_external_table:<nowiki/>
{{!}}-
{{!}} [[{{{name}}}]]
{{!}} {{{color}}} }}
|}

Use of get_web_data and external_value

Using filter as template parameter

{{#get_web_data:
url=http://wiki.slicer.org/slicerWiki/index.php/Special:GetData/Documentation/4.0/Developers/Sandbox_data
|format=CSV with header
|data=bananashape0=Shape
|filters=Name=Banana
}}
* {{#external_value:bananashape0}}


  • Error: no local variable "bananashape0" was set.


Using filter as URL parameter

{{#get_web_data:
url=http://wiki.slicer.org/slicerWiki/index.php/Special:GetData/Documentation/4.0/Developers/Sandbox_data,Name=Banana
|format=CSV with header
|data=bananashape1=Shape
}}
* {{#external_value:bananashape1}}


  • Error: no local variable "bananashape1" was set.


Using fullurl

{{#get_web_data:
url={{fullurl:Special:GetData/Documentation/4.0/Developers/Sandbox_data}}
|format=CSV with header
|data=bananashape2=Shape
|filters=Name=Banana
}}
* {{#external_value:bananashape2}}

https://www.slicer.org/wiki/Special:GetData/Documentation/4.0/Developers/Sandbox_data,Name%3DBanana


  • Oblong

Debug module-footer template