Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
7b28eb14
Kaydet (Commit)
7b28eb14
authored
Ara 02, 2015
tarafından
Steve Dower
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge from 3.5 (including all NEWS entries)
üst
31618c9d
10f997d9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
5 deletions
+10
-5
NEWS
Misc/NEWS
+0
-0
Default.thm
Tools/msi/bundle/Default.thm
+1
-1
Default.wxl
Tools/msi/bundle/Default.wxl
+3
-1
PythonBootstrapperApplication.cpp
Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp
+0
-0
bundle.wxs
Tools/msi/bundle/bundle.wxs
+3
-1
launcher.wxs
Tools/msi/bundle/packagegroups/launcher.wxs
+3
-2
No files found.
Misc/NEWS
Dosyayı görüntüle @
7b28eb14
This diff is collapsed.
Click to expand it.
Tools/msi/bundle/Default.thm
Dosyayı görüntüle @
7b28eb14
...
...
@@ -66,7 +66,7 @@
<Checkbox
Name=
"Include_launcher"
X=
"185"
Y=
"251"
Width=
"100"
Height=
"24"
TabStop=
"yes"
FontId=
"3"
HideWhenDisabled=
"no"
>
#(loc.Include_launcherLabel)
</Checkbox>
<Checkbox
Name=
"CustomInstallLauncherAllUsers"
X=
"285"
Y=
"251"
Width=
"-11"
Height=
"24"
TabStop=
"yes"
FontId=
"3"
>
#(loc.InstallLauncherAllUsersLabel)
</Checkbox>
<Text
X=
"205"
Y=
"276"
Width=
"-11"
Height=
"24"
TabStop=
"no"
FontId=
"5"
>
#(loc.Include_launcherHelpLabel)
</Text>
<Text
Name=
"Include_launcherHelp"
X=
"205"
Y=
"276"
Width=
"-11"
Height=
"24"
TabStop=
"no"
FontId=
"5"
>
</Text>
<Button
Name=
"Custom1BackButton"
X=
"185"
Y=
"-11"
Width=
"85"
Height=
"27"
TabStop=
"yes"
FontId=
"0"
>
#(loc.CustomBackButton)
</Button>
<Button
Name=
"CustomNextButton"
X=
"-101"
Y=
"-11"
Width=
"85"
Height=
"27"
TabStop=
"yes"
FontId=
"0"
>
#(loc.CustomNextButton)
</Button>
...
...
Tools/msi/bundle/Default.wxl
Dosyayı görüntüle @
7b28eb14
...
...
@@ -76,7 +76,9 @@ Select Customize to review current options.</String>
<String
Id=
"Include_testLabel"
>
Python
&
test suite
</String>
<String
Id=
"Include_testHelpLabel"
>
Installs the standard library test suite.
</String>
<String
Id=
"Include_launcherLabel"
>
py
&
launcher
</String>
<String
Id=
"Include_launcherHelpLabel"
>
Installs the global 'py' launcher to make it easier to start Python.
</String>
<String
Id=
"Include_launcherHelp"
>
Installs the global 'py' launcher to make it easier to start Python.
</String>
<String
Id=
"Include_launcherRemove"
>
Use Programs and Features to remove the 'py' launcher.
</String>
<String
Id=
"Include_launcherUpgrade"
>
Upgrades the global 'py' launcher from the previous version.
</String>
<String
Id=
"AssociateFilesLabel"
>
Associate
&
files with Python (requires the py launcher)
</String>
<String
Id=
"ShortcutsLabel"
>
Create shortcuts for installed applications
</String>
...
...
Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp
Dosyayı görüntüle @
7b28eb14
This diff is collapsed.
Click to expand it.
Tools/msi/bundle/bundle.wxs
Dosyayı görüntüle @
7b28eb14
...
...
@@ -51,7 +51,7 @@
-->
<Variable
Name=
"DefaultCustomTargetDir"
Value=
""
bal:Overridable=
"yes"
/>
<Variable
Name=
"InstallAllUsersState"
Value=
"enabled"
/>
<Variable
Name=
"InstallAllUsersState"
Value=
"enabled"
bal:Overridable=
"yes"
/>
<?if "$(var.PyTestExt)"="" ?>
<Variable
Name=
"InstallLauncherAllUsersState"
Value=
"enabled"
bal:Overridable=
"yes"
/>
<?else ?>
...
...
@@ -72,6 +72,7 @@
<Variable
Name=
"Include_pip"
Value=
"1"
bal:Overridable=
"yes"
/>
<?if "$(var.PyTestExt)"="" ?>
<Variable
Name=
"Include_launcher"
Value=
"1"
bal:Overridable=
"yes"
/>
<Variable
Name=
"Include_launcherState"
Value=
"enabled"
bal:Overridable=
"yes"
/>
<?else ?>
<Variable
Name=
"Include_launcher"
Value=
"0"
/>
<Variable
Name=
"Include_launcherState"
Value=
"disable"
/>
...
...
@@ -81,6 +82,7 @@
<Variable
Name=
"LauncherOnly"
Value=
"0"
bal:Overridable=
"yes"
/>
<Variable
Name=
"DetectedLauncher"
Value=
"0"
/>
<Variable
Name=
"DetectedOldLauncher"
Value=
"0"
/>
<Variable
Name=
"AssociateFiles"
Value=
"1"
bal:Overridable=
"yes"
/>
<Variable
Name=
"Shortcuts"
Value=
"1"
bal:Overridable=
"yes"
/>
...
...
Tools/msi/bundle/packagegroups/launcher.wxs
Dosyayı görüntüle @
7b28eb14
...
...
@@ -11,7 +11,7 @@
EnableFeatureSelection=
"yes"
Permanent=
"yes"
Visible=
"yes"
InstallCondition=
"(InstallAllUsers or InstallLauncherAllUsers) and Include_launcher"
/>
InstallCondition=
"(InstallAllUsers or InstallLauncherAllUsers) and Include_launcher
and not DetectedLauncher
"
/>
<MsiPackage
Id=
"launcher_JustForMe"
SourceFile=
"launcher.msi"
...
...
@@ -21,7 +21,7 @@
EnableFeatureSelection=
"yes"
Permanent=
"yes"
Visible=
"yes"
InstallCondition=
"not (InstallAllUsers or InstallLauncherAllUsers) and Include_launcher"
/>
InstallCondition=
"not (InstallAllUsers or InstallLauncherAllUsers) and Include_launcher
and not DetectedLauncher
"
/>
</PackageGroup>
</Fragment>
</Wix>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment