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

Commit 8e1add8

Browse files
Merge branch 'develop-9.5' into bugfix_19660
2 parents ad831d1 + 04e3ebf commit 8e1add8

File tree

77 files changed

+322
-286
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+322
-286
lines changed

buildbot.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ buildtool_command = $(LIVECODE) -ui $(BUILDTOOL_STACK) \
9898
# Settings for upload
9999
RSYNC ?= rsync
100100
SHA1SUM ?= sha1sum
101-
UPLOAD_SERVER ?= meg.on-rev.com
101+
UPLOAD_SERVER ?= molly.livecode.com
102102
UPLOAD_PATH = staging/$(BUILD_LONG_VERSION)/$(GIT_VERSION)
103103
UPLOAD_MAX_RETRIES = 50
104104

docs/dictionary/command/mobilePickDate.lcdoc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@ Android is "date"
6767

6868
- "datetime" (default on iOS) (iOS only): display a native picker to
6969
choose the date and time
70-
71-
7270
- "date" (default on Android): display a native picker to choose the
7371
date
7472
- "time": display a native picker to choose the time

docs/dictionary/command/mobileSetFullScreenRectForOrientations.lcdoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,5 @@ the <mobileAllowedOrientations>.
5353
References: mobileLockOrientation (command), mobileSetAllowedOrientations (command),
5454
mobileUnlockOrientation (command), mobileAllowedOrientations (function),
5555
mobileDeviceOrientation (function), mobileOrientation (function),
56-
orientationChanged (message), resizeStack (message)
56+
orientationChanged (message), resizeStack (message),
57+
fullscreenMode (property)

docs/dictionary/command/mobileSetLocationHistoryLimit.lcdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@ mobileStartTrackingSensor (command),
7070
mobileGetLocationHistory (function),
7171
mobileGetLocationHistoryLimit (function),
7272
mobileSensorAvailable (function), mobileSensorReading (function),
73-
mobileLocationAuthorizationStatus (function),
73+
mobileLocationAuthorizationStatus (function), function (glossary),
7474
locationChanged (message), trackingError (message)
7575

docs/dictionary/command/pop.lcdoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ If you specify a container, the long <ID> of the <card> is placed in the
3737
change.
3838

3939
If the list is empty when you use the <pop> <command>, LiveCode goes to
40-
the Home <card>. If you are running in the LiveCode <development
41-
environment>, this is the first <card> of the "license.rev" <stack>,
42-
which is the splash screen that appears when you start up LiveCode.
43-
(Click this card to close the stack.) If you are running in a
40+
the Home <card>. If you are running in the LiveCode
41+
<development environment>, this is the first <card> of the "license.rev"
42+
<stack>, which is the splash screen that appears when you start up
43+
LiveCode. (Click this card to close the stack.) If you are running in a
4444
<standalone application>, the Home <card> is the first <card> of the
4545
<standalone application|standalone's> <main stack>.
4646

docs/dictionary/command/popup-widget.lcdoc

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,28 @@ end mouseDown
3434

3535
Parameters:
3636
kind: The unique identifier of the widget to use for the popup.
37-
location: A point or expression that evaluates to a point. Two integers separated by a comma.
38-
properties: An expression that evaluates to an array. For each key of the array, the popup widget will be initialized by setting that property to the value for that key.
37+
location: A point or expression that evaluates to a point. Two integers
38+
separated by a comma.
39+
properties: An expression that evaluates to an array. For each key of the
40+
array, the popup widget will be initialized by setting that property to
41+
the value for that key.
3942

40-
The result: If the user dismisses the popup, the it variable is set to empty, and the result function returns "Cancel".
43+
The result: If the user dismisses the popup, the it variable is set to
44+
empty, and the result function returns "Cancel".
4145

42-
It: The <popup widget> command places the widget return value in the it variable.
46+
It: The <popup widget> command places the widget return value in the it
47+
variable.
4348

4449
Description:
45-
Use to display a widget within a popup window, for example as a tooltip or picker dialog.
50+
Use to display a widget within a popup window, for example as a tooltip
51+
or picker dialog.
4652

47-
The popup appears with its top left corner at the <location>. If no <location> is specified, the popup's top left corner is at the <mouse location>. While the popup widget is displayed, the handler pauses.
53+
The popup appears with its top left corner at the <location>. If no
54+
<location> is specified, the popup's top left corner is at the
55+
<mouseLoc|mouse location>. While the popup widget is displayed, the
56+
handler pauses.
4857

49-
References: mouseDown (message), mouseDown message (message), mouseUp message (message), popup (keyword), clickLoc (function), mouse location (function), result (function), it (keyword)
58+
References: mouseDown (message), mouseUp (message), popup (keyword),
59+
clickLoc (function), mouseLoc (function), result (function), it (keyword)
5060

5161
Tags: widget

docs/dictionary/command/popup.lcdoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ clicked control in the stack (for a stack menu). The button or stack
5555
menu handles the menu choice.
5656

5757
If you use a button to hold the contents of the menu, the contents of
58-
the button's <menuItem Keyword> is displayed in the popup.
58+
the button's <menuItem> is displayed in the popup.
5959

6060
**Important:** If you use a button to hold the contents of the menu,
6161
the following properties must be set:
@@ -82,8 +82,8 @@ parameter of the <mouseDown(message)> message, as described above.
8282
References: pulldown (command), clickLoc (function), mouseLoc (function),
8383
menu item (glossary), popup menu (glossary), button (keyword),
8484
menuItem (keyword), popup (keyword), menuPick (message),
85-
mouseDown (message), mouseDown (message), mouseUp (message), message (glossary),
86-
stack (object), button (object), style property (property),
85+
mouseDown (message), mouseDown (message), mouseUp (message),
86+
message (glossary), stack (object), button (object), style (property),
8787
toolTip (property), menuMode (property), visible (property),
8888
menuMouseButton (property)
8989

docs/dictionary/command/post.lcdoc

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Type: command
55
Syntax: post <data> to URL <destinationURL>
66

77
Summary:
8-
Sends data to a <web server> using the POST action of <HTTP>.
8+
Sends data to a <web server> using the POST action of <http|HTTP>.
99

1010
Associations: internet library
1111

@@ -120,11 +120,13 @@ function (control structure), result (function), URLStatus (function),
120120
URLEncode (function), libURLFormData (function), URLDecode (function),
121121
libURLMultipartFormAddPart (function), libURLMultipartFormData (function),
122122
variable (glossary), command (glossary),
123-
Livecode custom library (glossary), property (glossary),
123+
LiveCode custom library (glossary), property (glossary),
124124
standalone application (glossary), blocking (glossary),
125125
web server (glossary), command (glossary), expression (glossary),
126126
syntax (glossary), server (glossary), upload (glossary),
127-
statement (glossary), handler (glossary), URL (keyword), ftp (keyword),
127+
statement (glossary), handler (glossary),
128+
Standalone Application Settings (glossary),
129+
URL (keyword), ftp (keyword),
128130
http (keyword), Internet library (library), urlProgress (message),
129131
httpHeaders (property), HTTPProxy (property)
130132

docs/dictionary/command/print-link.lcdoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,24 +30,24 @@ Description:
3030
Use the print link command to define a hyperlink within a pdf printing
3131
loop.
3232

33-
If the url adjective is specified, then <link> is interpreted as a URL
33+
If the url adjective is specified, then *linkName* is interpreted as a URL
3434
and an external URL launching link is created in the PDF document. The
3535
given rectangle jumps to that URL when it is clicked.
3636

37-
If the anchor adjective is specified, then <link> is interpreted as an
37+
If the anchor adjective is specified, then *linkName* is interpreted as an
3838
internal anchor name, as specified by the print anchor command, and an
3939
internal anchor link is created in the PDF document. Clicking the given
4040
rectangle jumps to that anchor.
4141

42-
If no adjective is specified then <link> is interpreted as a URL if it
42+
If no adjective is specified then *linkName* is interpreted as a URL if it
4343
begins with (ASCII) letters followed by a colon. e.g. "mailto:foobar" is
4444
interpreted as a URL, whereas "mail-to-anchor:foo" is interpreted as an
4545
anchor name.
4646

4747
When printing fields, any text that has its <linkText> property set
4848
together with the link <textStyle> is treated as if a print link command
49-
had been executed with the contents of the property as <link>, and the
50-
<formattedRect> of the text as <rectangle>.
49+
had been executed with the contents of the property as *linkName*, and the
50+
<formattedRect> of the text as *rectArea*.
5151

5252
References: print bookmark (command), print anchor (command),
5353
open printing to pdf (command), cancel printing (command),

docs/dictionary/command/put.lcdoc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,15 @@ The result:
4747
>*Important:* If writing to a url container fails, an error is returned
4848
> in the result. For example:
4949

50-
<put> the result into tResult.
50+
local tResult
51+
<put> the result into tResult
5152

5253
> *Note:* Unlike its use with the <file> and <binfile URL> types, the
5354
> <put> <command>, when used with a <resfile>, does not create the <file>
5455
> if it doesn't exist. Instead, an error message is returned in the
5556
> <result>. To create a file, first use a statement like the following:
5657

57-
<open file> tFilepath
58+
open file tFilepath
5859

5960
> When used with an ftp <URL>, <upload|uploads> the <value> to an
6061
> <FTP> <server>. If an error occurs during uploading, the

0 commit comments

Comments
 (0)