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
2120d122
Kaydet (Commit)
2120d122
authored
Şub 27, 1995
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
In interactive mode ask for output file
üst
16df2aa5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
8 deletions
+16
-8
mkapplet.py
Mac/mkapplet.py
+16
-8
No files found.
Mac/mkapplet.py
Dosyayı görüntüle @
2120d122
...
...
@@ -58,17 +58,23 @@ def main():
if
not
ok
:
return
filename
=
srcfss
.
as_pathname
()
if
not
sys
.
argv
:
sys
.
argv
.
append
(
''
)
sys
.
argv
.
append
(
filename
)
# Loop over all files to be processed
for
filename
in
sys
.
argv
[
1
:]:
process
(
template
,
filename
)
tp
,
tf
=
os
.
path
.
split
(
filename
)
if
tf
[
-
3
:]
==
'.py'
:
tf
=
tf
[:
-
3
]
else
:
tf
=
tf
+
'.applet'
dstfss
,
ok
=
macfs
.
StandardPutFile
(
'Save application as:'
,
tf
)
if
not
ok
:
return
process
(
template
,
filename
,
dstfss
.
as_pathname
())
else
:
# Loop over all files to be processed
for
filename
in
sys
.
argv
[
1
:]:
process
(
template
,
filename
,
''
)
undefs
=
(
'????'
,
' '
,
'
\0\0\0\0
'
,
'BINA'
)
def
process
(
template
,
filename
):
def
process
(
template
,
filename
,
output
):
print
"Processing"
,
`filename`
,
"..."
...
...
@@ -93,6 +99,8 @@ def process(template, filename):
destname
=
filename
+
".applet"
rsrcname
=
filename
+
'.rsrc'
if
output
:
destname
=
output
# Copy the data from the template (creating the file as well)
tmpl
=
open
(
template
,
"rb"
)
...
...
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