Lines Matching refs:to

3   Licensed to the Apache Software Foundation (ASF) under one
7 to you under the Apache License, Version 2.0 (the
13 Unless required by applicable law or agreed to in writing,
22 This script is meant to
29 -- strings for localisations - to be meant to be replaced
31 set OKLabel to "[OKLabel]"
32 set InstallLabel to "[InstallLabel]"
33 set AbortLabel to "[AbortLabel]"
34 set intro to "[IntroText1]
39 set chooseMyOwn to "[ChooseMyOwnText]"
40 set listPrompt to "[ListPromptText]"
41 set chooseManual to "[ChooseManualText]"
42 set listOKLabel to "[ListOKLabelText]"
43 set listCancelLabel to "[ListCancelLabel]"
44 set appInvalid to "[AppInvalidText1]
47 set startInstall to "[StartInstallText1]
50 set IdentifyQ to "[IdentifyQText]
53 set IdentifyYES to "[IdentifyYES]"
54 set IdentifyNO to "[IdentifyNO]"
55 set installFailed to "[InstallFailedText]"
56 set installComplete to "[InstallCompleteText]
60 set sourcedir to (do shell script "dirname " & quoted form of POSIX path of (path to of me))
68 set the found_ooos_all to (do shell script "mdfind \"kMDItemContentType == 'com.apple.application-b…
71 set found_ooos_all_paragraphs to paragraphs in found_ooos_all
73 set found_ooos to {}
76 copy currentApp to the end of found_ooos
89 …set the choice to (choose from list found_ooos default items (get second item of found_ooos) with …
94 -- yeah, one needs to use "choose file", otherwise
95 -- the user would not be able to select the .app
96 …set the choice to POSIX path of (choose file with prompt chooseManual of type "com.apple.applicati…
99 …set the choice to (choose from list found_ooos default items (get first item of found_ooos) with p…
104 -- yeah, one needs to use "choose file", otherwise
105 -- the user would not be able to select the .app
106 …set the choice to POSIX path of (choose file with prompt chooseManual of type "com.apple.applicati…
109 -- set choice to found installation
110 -- set the choice to (get first paragraph of found_ooos)
111 set the choice to (get first item of found_ooos)
113 …set the choice to (choose from list found_ooos default items (get first item of found_ooos) with p…
118 -- yeah, one needs to use "choose file", otherwise
119 -- the user would not be able to select the .app
120 …set the choice to POSIX path of (choose file with prompt chooseManual of type "com.apple.applicati…
140 set tarCommand to "/usr/bin/tar -C " & quoted form of (choice as string) & " -xjf " & quoted form o…
153 -- 2 error from tar - tarball not found (easy to test)