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 "[InstallCompleteTextPatch]"
58 set sourcedir to (do shell script "dirname " & quoted form of POSIX path of (path to of me))
66 set the found_ooos_all to (do shell script "mdfind \"kMDItemContentType == 'com.apple.application-b…
69 set found_ooos_all_paragraphs to paragraphs in found_ooos_all
71 set found_ooos to {}
74 copy currentApp to the end of found_ooos
87 …set the choice to (choose from list found_ooos default items (get second item of found_ooos) with …
92 -- yeah, one needs to use "choose file", otherwise
93 -- the user would not be able to select the .app
94 …set the choice to POSIX path of (choose file with prompt chooseManual of type "com.apple.applicati…
97 …set the choice to (choose from list found_ooos default items (get first item of found_ooos) with p…
102 -- yeah, one needs to use "choose file", otherwise
103 -- the user would not be able to select the .app
104 …set the choice to POSIX path of (choose file with prompt chooseManual of type "com.apple.applicati…
107 -- set choice to found installation
108 -- set the choice to (get first paragraph of found_ooos)
109 set the choice to (get first item of found_ooos)
111 …set the choice to (choose from list found_ooos default items (get first item of found_ooos) with p…
116 -- yeah, one needs to use "choose file", otherwise
117 -- the user would not be able to select the .app
118 …set the choice to POSIX path of (choose file with prompt chooseManual of type "com.apple.applicati…
138 set tarCommand to "/usr/bin/tar -C " & quoted form of (choice as string) & " -xjf " & quoted form o…
151 -- 2 error from tar - tarball not found (easy to test)