Skip to content

Commit 03fa721

Browse files
Merge pull request livecode#2794 from livecodeali/runrev_references_removal_8.0
[[ Runrev References ]] Port changes to XML files to lcdoc files
2 parents 83a7fea + 84adfc1 commit 03fa721

21 files changed

+31
-31
lines changed

docs/dictionary/command/get.lcdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Example:
2222
get message -- evaluates expression in message box
2323

2424
Example:
25-
get URL "https://www.runrev.com"
25+
get URL "https://www.livecode.com"
2626

2727
Parameters:
2828
expression: Any expression that yields a value.

docs/dictionary/command/launch-url.lcdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Platforms: desktop,mobile
1515
Security: process
1616

1717
Example:
18-
launch url "http://www.runrev.com"
18+
launch url "http://www.livecode.com"
1919

2020
Example:
2121
launch url "file:/Users/ben/Desktop/test.pdf"

docs/dictionary/command/mobileAddContact.lcdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Example:
1616
put "Just adding this" into tContact["note"]
1717
put "Jobs Ave" into tContact["address"]["home"][1]["street"]
1818
put "Job City" into tContact["address"]["home"][1]["city"]
19-
put "test@runrev.com" into tContactData["email"]["home"][1]
19+
put "test@livecode.com" into tContactData["email"]["home"][1]
2020
mobileUpdateContact tContact
2121

2222
Parameters:

docs/dictionary/command/mobileComposeHtmlMail.lcdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Example:
2424
put "Hello World!" into tAttachment["data"]
2525
put "text/plain" into tAttachment["type"]
2626
put "Greetings.txt" into tAttachment["name"]
27-
mobileComposeHtmlMail "Greetings", "test@runrev.com",,,, tAttachment
27+
mobileComposeHtmlMail "Greetings", "test@livecode.com",,,, tAttachment
2828

2929
Parameters:
3030
subject: The subject line of the email.

docs/dictionary/command/mobileComposeMail.lcdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ Example:
2727
put "Hello World!" into tAttachment["data"]
2828
put "text/plain" into tAttachment["type"]
2929
put "Greetings.txt" into tAttachment["name"]
30-
mobileComposeMail "Greetings", "test@runrev.com",,,, tAttachment
30+
mobileComposeMail "Greetings", "test@livecode.com",,,, tAttachment
3131

3232
Example:
3333
-- Attach an image --
3434
put image 1 into tAttachment["data"]
3535
put "image/gif" into tAttachment["type"]
3636
put "my picture" into tAttachment["name"]
37-
mobileComposeMail "Image Example", "test@runrev.com",,,, tAttachment
37+
mobileComposeMail "Image Example", "test@livecode.com",,,, tAttachment
3838

3939
Parameters:
4040
subject: The subject line of the email.

docs/dictionary/command/mobileComposeUnicodeMail.lcdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Example:
2121
put "Hello World!" into tAttachment["data"]
2222
put "text/plain" into tAttachment["type"]
2323
put "Greetings.txt" into tAttachment["name"]
24-
mobileComposeUnicodeMail tUnicodeHeader, "test@runrev.com",,,, tAttachment
24+
mobileComposeUnicodeMail tUnicodeHeader, "test@livecode.com",,,, tAttachment
2525

2626
Example:
2727
mobileComposeUnicodeMail uniEncode (tTextHeader, "UTF8"), "[email protected]",,, uniEncode (tTextMailBody, "UTF8"), tAttachment

docs/dictionary/command/mobileUpdateContact.lcdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Example:
1616
put "Just adding this" into tContact["note"]
1717
put "Jobs Ave" into tContact["address"]["home"][1]["street"]
1818
put "Job City" into tContact["address"]["home"][1]["city"]
19-
put "test@runrev.com" into tContactData["email"]["home"][1]
19+
put "test@livecode.com" into tContactData["email"]["home"][1]
2020
mobileUpdateContact tContact
2121

2222
Parameters:

docs/dictionary/command/open-socket.lcdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ Example:
2525
open socket to "ftp.example.org:21|sendFiles"
2626

2727
Example:
28-
open secure socket to "runrev.com:443" with message "wasConnected" without verification
28+
open secure socket to "livecode.com:443" with message "wasConnected" without verification
2929

3030
Example:
31-
open secure socket to "runrev.com:443" with message "wasConnected" with verification for host "livecode.com"
31+
open secure socket to "livecode.com:443" with message "wasConnected" with verification for host "livecode.com"
3232

3333
Example:
3434
on mouseUp

docs/dictionary/command/play-video.lcdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ put specialFolderPath("engine) & "/intro_movie.mp4" into tVideoFile
2020
play video tVideoFile
2121

2222
Example:
23-
play video "http://www.runrev.com/buildanapp.mp4"
23+
play video "http://www.livecode.com/buildanapp.mp4"
2424

2525
Parameters:
2626
video-file: If a path is specified it will be interpreted as a local file. If a URL is specified then it must either be an 'http' or 'https' url. In this case the content will be streamed.

docs/dictionary/command/print-link.lcdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ OS: mac,windows,linux,ios
1313
Platforms: desktop,web,mobile
1414

1515
Example:
16-
print link to url "http://www.runrev.com" with rect 50,50,60,60
16+
print link to url "http://www.livecode.com" with rect 50,50,60,60
1717

1818
Example:
1919
print link to anchor "section 1.1" with rect 100,100,200,200

0 commit comments

Comments
 (0)