Skip to content

Commit f9fb413

Browse files
author
runrevali
committed
[[ Dictionary ]] Remove XML files and replace with lcdoc format files
1 parent a04099c commit f9fb413

5,145 files changed

Lines changed: 82842 additions & 105254 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Name: XBrowser_Focus
2+
3+
Type: command
4+
5+
Syntax: XBrowser_Focus [<instanceId>]
6+
7+
Summary: Has no affect, included for backwards comptability
8+
9+
Introduced: 2.8.1
10+
11+
OS: mac,windows
12+
13+
Platforms: desktop
14+
15+
Security: network
16+
17+
Example:
18+
XBrowser_Focus tBrowserId
19+
20+
Parameters:
21+
instanceId: The integer identifier of a browser object
22+
23+
The result: The XBrowser_Focus command puts empty into the <result>.
24+
25+
Description:
26+
The <XBrowser_Focus> command has no effect and is included for backwards compatibility with older applications.
27+
28+
>*Note:* For general information on using the browser library, see the notes in the <revBrowserOpen function> reference.
29+
30+
References: XBrowser_Unfocus (command), revBrowserOpen (function), revBrowserOpen function (function), result (function)

docs/dictionary/command/XBrowser_Focus.xml

Lines changed: 0 additions & 39 deletions
This file was deleted.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
Name: XBrowser_Init
2+
3+
Type: command
4+
5+
Syntax: XBrowser_Init <username>, <password>
6+
7+
Summary: Is included for backwards compatibility and does nothing.
8+
9+
Introduced: 2.8.1
10+
11+
OS: mac,windows
12+
13+
Platforms: desktop
14+
15+
Security: network
16+
17+
Example:
18+
XBrowser_Init "myUsername", "myPassword"
19+
20+
Parameters:
21+
username:
22+
password:
23+
24+
Description:
25+
The <XBrowser_Init> command is included for backwards compatibility with altBrowser 2.x and 1.x. The command is no longer needed and calling it has no affect.
26+
27+
>*Note:* For general information on using the browser library, see the notes in the <revBrowserOpen function> reference.
28+
29+
References: revBrowserOpen (function), revBrowserOpen function (function)

docs/dictionary/command/XBrowser_Init.xml

Lines changed: 0 additions & 38 deletions
This file was deleted.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Name: XBrowser_Unfocus
2+
3+
Type: command
4+
5+
Syntax: XBrowser_Unfocus [<instanceId>]
6+
7+
Summary: Has no affect, included for backwards compatibility
8+
9+
Introduced: 2.8.1
10+
11+
OS: mac,windows
12+
13+
Platforms: desktop
14+
15+
Security: network
16+
17+
Example:
18+
XBrowser_Unfocus tBrowserId
19+
20+
Parameters:
21+
instanceId: The integer identifier of a browser object
22+
23+
The result: The <XBrowser_Unfocus> command puts empty into the <result>.
24+
25+
Description:
26+
The <XBrowser_Unfocus> command has no affect and is included for backwards compatibility with older applications.
27+
28+
>*Note:* For general information on using the browser library, see the notes in the <revBrowserOpen function> reference.
29+
30+
References: XBrowser_Focus (command), result (function), revBrowserOpen function (function)

docs/dictionary/command/XBrowser_Unfocus.xml

Lines changed: 0 additions & 38 deletions
This file was deleted.
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
Name: accept
2+
3+
Type: command
4+
5+
Syntax: accept [datagram] connections on port <number> with message <callbackMessage>
6+
7+
Summary: Accepts an internet connection and creates a <socket> for that connection.
8+
9+
Introduced: 1.0
10+
11+
OS: mac,windows,linux
12+
13+
Platforms: desktop,server,web
14+
15+
Security: network
16+
17+
Example:
18+
accept connections on port 80 with message "connectionMade"
19+
20+
Example:
21+
accept datagram connections on port 80 with message "connectionMade"
22+
23+
Example:
24+
on mouseUp
25+
accept connections on port 80 with message "connectionMade"
26+
end mouseUp
27+
28+
on connectionMade pIPAddress
29+
put "Connection made:" && pIPAddress
30+
end connectionMade
31+
32+
Parameters:
33+
number:
34+
callbackMessage: The name of a message to be sent when a connection is made or a datagram is received.
35+
portNumber: The TCP port number on which to accept connections.
36+
37+
Description:
38+
Use the <accept> <command> when running a <server>, to accept <TCP> connections or <UDP> <datagram|datagrams> from other systems (or other <process|processes> on the same system).
39+
Use the datagram option if you want to accept UDP datagrams.
40+
41+
When a connection is made or a datagram is received, the <accept> <command> creates a new <socket> that can be used to communicate with the other system (or <process>). When using the <close socket>, <read from socket>, or <write to socket> <command|commands>, you can refer to this <socket> with a socket identifier that looks like this:
42+
host:port[|connectionID]
43+
where the connectionID is a number assigned by the <accept> <command>. (You only need to specify the connection number if there is more than one <socket> connected to a particular <port> and <host>.)
44+
45+
The <callbackMessage> is sent to the <object> whose <script> contains the <accept> <command>. Either one or two <parameter|parameters> are sent with this <message>. The first <parameter> is the <IP address> of the system or <process> making the connection. If a <datagram> is being accepted, the second <parameter> is the contents of the <datagram>.
46+
47+
For technical information about sockets, see RFC 147 at http://www.ietf.org/rfc/rfc147.txt.
48+
For technical information about UDP datagrams, see RFC 768 at http://www.ietf.org/rfc/rfc0768.txt.
49+
For technical information about the numbers used to designate standard ports, see the list of port numbers at http://www.iana.org/assignments/port-numbers, in particular the section entitled "Well Known Port Numbers".
50+
51+
References: HTTPProxy (property), script (property), read from socket (command), write to socket (command), close socket (command), open socket (command), openSockets (function), hostAddressToName (function), hostName (function), hostAddress (function), peerAddress (function), hostNameToAddress (function), datagram (glossary), IP address (glossary), TCP (glossary), port (glossary), command (glossary), socket (glossary), UDP (glossary), host (glossary), server (glossary), message (glossary), parameter (glossary), process (glossary), object (object)
52+
53+
Tags: networking

docs/dictionary/command/accept.xml

Lines changed: 0 additions & 69 deletions
This file was deleted.

docs/dictionary/command/add.lcdoc

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
Name: add
2+
3+
Type: command
4+
5+
Syntax: add <number> to [<chunk> of] <container>
6+
7+
Syntax: add {<number> | <array>} to <arrayContainer>
8+
9+
Summary: Adds a number to a <container> and places the resulting <value> in the <container>.
10+
11+
Introduced: 1.0
12+
13+
OS: mac,windows,linux,ios,android
14+
15+
Platforms: desktop,server,web
16+
17+
Example:
18+
add 7 to field 1
19+
20+
Example:
21+
add field "New" to tSummaryOfInventory
22+
23+
Example:
24+
add (qty * price) to last line of tOrder
25+
26+
Parameters:
27+
number: An expression that evaluates to a number.
28+
chunk: A chunk expression specifying a portion of the container.
29+
container: A field, button, or variable, or the message box.
30+
array (array):
31+
arrayContainer (array): An array variable each of whose elements is a number.
32+
33+
Description:
34+
Use the <add> <command> to add a number to a <container> or a portion of a <container>, or to add two <array|arrays> containing numbers.
35+
36+
The contents of the <container> (or the <chunk> of the <container>) must be a number or an <expression> that <evaluate|evaluates> to a number.
37+
38+
If a <number> is added to an <arrayContainer>, the <number> is added to each <element(keyword)>. If an <array> is added to an <arrayContainer>, both <array|arrays> must have the same number of <element(glossary)|elements> and the same dimension, and each <element(keyword)> in the <array> is added to the corresponding <element(keyword)> of the <arrayContainer>.
39+
40+
If the <container> or an <element(keyword)> of the <arrayContainer> is empty, the <add> <command> treats its contents as zero.
41+
If <container> is a <field> or <button>, the <format> of the sum is determined by the <numberFormat> <property>.
42+
43+
References: field (keyword), element (keyword), button (keyword), numberFormat (property), union (command), multiply (command), sum (function), value (function), format (function), property (glossary), element (glossary), container (glossary), expression (glossary), array (glossary), evaluate (glossary), command (glossary)
44+
45+
Tags: math

0 commit comments

Comments
 (0)