Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit f373a08

Browse files
committed
Merge remote-tracking branch 'upstream/develop-9.0' into merge-develop_9.0_20.04.19
2 parents dcbe592 + febf2a3 commit f373a08

124 files changed

Lines changed: 1577 additions & 687 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.

docs/dictionary/command/delete-variable.lcdoc

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Type: command
77
Syntax: delete {local | global | variable} {<variableName> | <arrayIndex>}
88

99
Summary:
10-
Removes a <variable> from memory.
10+
Removes a <variable> contents from memory.
1111

1212
Introduced: 1.0
1313

@@ -16,7 +16,8 @@ OS: mac, windows, linux, ios, android
1616
Platforms: desktop, server, mobile
1717

1818
Example:
19-
delete local tempVariable
19+
local tVariable
20+
delete local tVariable
2021

2122
Example:
2223
global gArray
@@ -34,14 +35,11 @@ array, without deleting the rest of the elements in the array.
3435

3536
Description:
3637
Use the <delete variable> <command> to free memory used by a large
37-
<variable>, or to clean up after using many <variable> names.
38+
<variable>. The <delete variable> <command> only removes the contents
39+
of the <variable>.
3840

39-
If you use theform, the <variableName>, <global> or <local>, is deleted.
40-
41-
The <delete variable> <command> not only removes the contents of the
42-
<variable>, but deletes it entirely from memory. If you delete a <key>
43-
from an <array> <variable>, that <element> of the <array> no longer
44-
exists as part of the <variable>.
41+
If you delete a <key> from an <array> <variable>, that <element> of the
42+
<array> no longer exists as part of the <variable>.
4543

4644
>*Note:* <local variable|Local variables> that are used within a
4745
> <handler> are automatically deleted when the <handler> in which they

docs/dictionary/command/kill.lcdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Use the <kill> command to send a signal to a <process> (on <Unix|Unix
4242
systems>), or to terminate a <process> with extreme prejudice.
4343

4444
On Mac OS systems, the <kill> <command> sends a "Quit Application"
45-
<Apple event> to the specified application.
45+
<Apple Event|Apple event> to the specified application.
4646

4747
On Unix systems, the <kill> command sends the specified signal to the
4848
<process>. If no signal is specified, the <kill> command sends SIGTERM.

docs/dictionary/command/launch-document.lcdoc

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,14 @@ filename:
2929
The result:
3030
If launching the document fails, an error message will be placed into
3131
the result, otherwise the result will be empty. If non-empty, the
32-
message will be one of the following:.
32+
message will be one of the following:
33+
- "can't open file" - the file was not found or is not accessible
34+
- "no association" - no application was found to open the document
35+
- "request failed" - an attempt was made to launch the appropriate
36+
application but it was unable to fulfill the request
37+
- "no memory" - the system ran out of resources or memory while trying to
38+
fulfill the request
39+
3340

3441
Description:
3542
<launch document> allows you to open the file without specifying an
@@ -45,16 +52,6 @@ If you want to launch a document with a specific application, use the
4552
<launch> <command> instead, which allows an optional documentName
4653
parameter for this purpose.
4754

48-
"can't open file" - the file was not found or is not accessible
49-
50-
"no association" - no application was found to open the document
51-
52-
"request failed" - an attempt was made to launch the appropriate
53-
application but it was unable to fulfill the request
54-
55-
"no memory" - the system ran out of resources or memory while trying to
56-
fulfill the request
57-
5855
References: launch (command), launch url (command),
5956
command (glossary)
6057

docs/dictionary/command/launch.lcdoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ foreground.
5252
If no <documentPath> is specified, the following two statements are
5353
equivalent:
5454

55-
launch application
56-
open process application for neither
55+
launch application
56+
open process application for neither
5757

5858
>*Note:* On OS X systems, you can use the <launch> command to start up
5959
> an application, but not a Unix process. To work with a Unix process,
@@ -62,7 +62,7 @@ open process application for neither
6262
>*Tip:* On Windows systems, you can also start up an application by
6363
> using the shell function with the Windows "start" command:
6464

65-
get shell("start MyProgram.exe")
65+
get shell("start MyProgram.exe")
6666

6767
References: launch url (command), kill (command),
6868
launch document (command), shell (function), command (glossary),

docs/dictionary/command/libURLSetCustomHTTPHeaders.lcdoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ Whenever LiveCode contacts a web server (with the load <command>, the
3838
Usually, the <headersList> will include multiple lines. A typical
3939
<headersList> might look like the following example:
4040

41-
GET /catsdata/coldat.dat HTTP/1.1
42-
Connection:Close
43-
User-Agent: My Fancy Browser
44-
Host:www.cats-training.com
45-
Accept:image/gif, image/x-xbitmap, image/jpeg, image/png, */*
46-
Accept-Encoding: gzip
47-
Accept-Charset: iso-8859-1,*,utf-8
41+
GET /catsdata/coldat.dat HTTP/1.1
42+
Connection:Close
43+
User-Agent: My Fancy Browser
44+
Host:www.cats-training.com
45+
Accept:image/gif, image/x-xbitmap, image/jpeg, image/png, */*
46+
Accept-Encoding: gzip
47+
Accept-Charset: iso-8859-1,*,utf-8
4848

4949
The <libURLSetCustomHTTPHeaders> setting takes effect for the next
5050
<HTTP> transaction. After the transaction, the headers are set back to

docs/dictionary/command/libURLftpUpload.lcdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Type: command
55
Syntax: libURLftpUpload <value>, <uploadURL> [, <callbackMessage>]
66

77
Summary:
8-
<upload|Uploads> data to an Internet <server> asynchronously via <FTP>.
8+
<upload|Uploads> data to an Internet <server> asynchronously via <ftp|FTP>.
99

1010
Associations: internet library
1111

docs/dictionary/command/libURLftpUploadFile.lcdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Syntax: libURLftpUploadFile <filePath>, <uploadURL> [, <callbackMessage>]
66

77
Summary:
88
<upload|Uploads> a file to an Internet <server> asynchronously via
9-
<FTP>.
9+
<ftp|FTP>.
1010

1111
Associations: internet library
1212

@@ -42,7 +42,7 @@ Use the <libURLftpUploadFile> <command> to put a <file> on a <server>.
4242

4343
The <libURLftpUploadFile> <command> transfers the data directly from the
4444
<file> to the <server>. Unlike <libURLftpUpload> (or the <put> <command>
45-
used with an <FTP> <URL>), the data does not all need to be in memory at
45+
used with an <ftp|FTP> <URL>), the data does not all need to be in memory at
4646
once, so this <command> is a better choice for large <files>.
4747

4848
The <libURLftpUploadFile> <command> transfers the file in <binary> mode.

docs/dictionary/command/load-extension.lcdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ name of the main module.
6060

6161
References: unload extension (command), create widget (command),
6262
loadedExtensions (function), result (function),
63-
LiveCode Builder extension (glossary)
63+
LiveCode Builder extension (glossary), command (glossary)
6464

6565
Changes:
6666
The ability to load multiple modules in a single <load extension>

docs/dictionary/command/load.lcdoc

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ remove it from the <cache>.
9393
> the engine implementation.
9494

9595
> *Note:* When specifying URLs for iOS or Android, you must use the
96-
> appropriate form that conforms to [RFC
97-
> 1738](https://tools.ietf.org/html/rfc1738). Ensure that you
96+
> appropriate form that conforms to
97+
> [RFC 1738](https://tools.ietf.org/html/rfc1738). Ensure that you
9898
> <URLEncode> any username and password fields appropriately for FTP
9999
> URLs.
100100

@@ -116,7 +116,8 @@ application (glossary), standalone application (glossary),
116116
load (glossary), cache (glossary), command (glossary),
117117
main stack (glossary), expression (glossary), keyword (glossary),
118118
download (glossary), message (glossary), parameter (glossary),
119-
handler (glossary), URL (keyword), file (keyword),
119+
handler (glossary), Standalone Application Settings (glossary),
120+
URL (keyword), file (keyword),
120121
Internet library (library), library (library), startup (message),
121122
openBackground (message), preOpenStack (message), openStack (message),
122123
preOpenCard (message), script (property)

docs/dictionary/command/lock-menus.lcdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ visible to the user.
3434

3535
References: unlock menus (command), lock screen (command),
3636
menus (function), property (glossary), command (glossary),
37-
menu bar (glossary), control (object), lockMenus (property)
37+
menu bar (glossary), control (glossary), lockMenus (property)
3838

3939
Tags: menus
4040

0 commit comments

Comments
 (0)