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
3050a2dc
Kaydet (Commit)
3050a2dc
authored
Agu 14, 1995
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Binhexify any .rsrc file in a tree
üst
eaeb1c82
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
0 deletions
+50
-0
binhextree.py
Mac/scripts/binhextree.py
+50
-0
No files found.
Mac/scripts/binhextree.py
0 → 100644
Dosyayı görüntüle @
3050a2dc
#
# hexbintree - Recursively descend a directory and
# pack all resource files.
#
# Jack Jansen, CWI, August 1995.
#
# To do:
# - Also do project files (. and .), after using AppleEvents to the
# various builders to clean the projects
# - Don't hexbin (and clean) if there exists a .hqx file that is newer.
#
import
os
import
binhex
import
sys
extensions
=
[
'.rsrc'
]
def
walker
(
arg
,
top
,
names
):
for
n
in
names
:
for
ext
in
extensions
:
if
n
[
-
len
(
ext
):]
==
ext
:
name
=
os
.
path
.
join
(
top
,
n
)
print
'Binhexing'
,
name
binhex
.
binhex
(
name
,
name
+
'.hqx'
)
def
dodir
(
name
):
os
.
path
.
walk
(
name
,
walker
,
None
)
def
main
():
if
len
(
sys
.
argv
)
>
1
:
for
dir
in
sys
.
argv
[
1
:]:
dodir
(
dir
)
elif
os
.
name
==
'mac'
:
import
macfs
dir
,
ok
=
macfs
.
GetDirectory
(
'Folder to search:'
)
if
not
ok
:
sys
.
exit
(
0
)
dodir
(
dir
.
as_pathname
())
else
:
print
'Usage: hexbintree dir ...'
sys
.
exit
(
1
)
if
os
.
name
==
'mac'
:
sys
.
exit
(
1
)
# Keep window
else
:
sys
.
exit
(
0
)
if
__name__
==
'__main__'
:
main
()
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