Changes for page WOVBScript

Last modified by Pascal Robert on 2011/05/08 02:23

From version 2.1
edited by Pascal Robert
on 2011/04/26 23:02
Change comment: There is no comment for this version
To version 5.2
edited by Pascal Robert
on 2011/05/08 02:23
Change comment: Changed document parent to [xwiki:documentation.Home.Development Architecture.Dynamic Elements.WebHome].

Summary

Details

Page properties
Parent
... ... @@ -1,0 +1,1 @@
1 +documentation.Home.Development Architecture.Dynamic Elements.WebHome
Content
... ... @@ -1,16 +1,44 @@
1 -{{toc}}{{/toc}}
1 +{{toc/}}
2 2  
3 3  = Introduction =
4 4  
5 +WOVBScript lets you embed a script written in Visual Basic in a dynamically generated page.
6 +
5 5  = Usage =
6 6  
7 7  {{code}}
8 8  
11 +WOVBScript {
12 + scriptFile=aPath | scriptString=aString | scriptSource=aURL;
13 + [hideInComment=aBoolean;]
14 + ...
15 +}
9 9  
10 10  {{/code}}
11 11  
12 12  = Bindings =
13 13  
21 +|(((
22 +script
23 +)))|(((
24 +File Path to the file containing the script. The path can be statically specified in the declaration file or it can be a java.lang.String, an object that responds to a description message by returning an java.lang.String, or a method that returns an java.lang.String.
25 +)))
26 +|(((
27 +scriptString
28 +)))|(((
29 +String containing the script. Typically, scriptString is an java.lang.String object, an object that responds to a description message by returning an java.lang.String, or a method that returns an java.lang.String.
30 +)))
31 +|(((
32 +scriptSource
33 +)))|(((
34 +URL specifying the location of the script.
35 +)))
36 +|(((
37 +hideInComment
38 +)))|(((
39 +If hideInComment evaluates to true, the script is enclosed in an HTML comment (<!~-~- script ~-~->). Since scripts can generate errors in some older browsers that weren't designed to execute them, you may want to enclose your script in an HTML comment. Browsers designed to run these scripts will still be able to execute them despite the surrounding comment tags.
40 +)))
41 +
14 14  = Examples =
15 15  
16 16  == Java methods ==
... ... @@ -17,16 +17,10 @@
17 17  
18 18  == WOD-style ==
19 19  
20 -{{code}}
48 +{{code/}}
21 21  
22 -
23 -{{/code}}
24 -
25 25  == Inline bindings (WOOGNL) ==
26 26  
27 -{{code}}
52 +{{code/}}
28 28  
29 -
30 -{{/code}}
31 -
32 32  = Related documents =