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
c27e0422
Kaydet (Commit)
c27e0422
authored
Eyl 07, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
adapted to Tk 4.0 and CNRI man page locations
üst
69428f1f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
2 deletions
+15
-2
tkman.py
Demo/tkinter/guido/tkman.py
+15
-2
No files found.
Demo/tkinter/guido/tkman.py
Dosyayı görüntüle @
c27e0422
#! /home/guido/bin.sgi/python
#! /usr/local/bin/python
#! /usr/local/bin/python
# Tk man page browser -- currently only shows the Tcl/Tk man pages
# Tk man page browser -- currently only shows the Tcl/Tk man pages
...
@@ -14,6 +15,8 @@ from ManPage import ManPage
...
@@ -14,6 +15,8 @@ from ManPage import ManPage
MANNDIR
=
'/usr/local/man/mann'
MANNDIR
=
'/usr/local/man/mann'
MAN3DIR
=
'/usr/local/man/man3'
MAN3DIR
=
'/usr/local/man/man3'
MANNDIR
=
'/depot/sundry/man/mann'
MAN3DIR
=
'/depot/sundry/man/man3'
def
listmanpages
(
mandir
):
def
listmanpages
(
mandir
):
files
=
os
.
listdir
(
mandir
)
files
=
os
.
listdir
(
mandir
)
...
@@ -61,7 +64,7 @@ class SelectionBox:
...
@@ -61,7 +64,7 @@ class SelectionBox:
self
.
listbox
=
Listbox
(
self
.
rightsubframe
,
self
.
listbox
=
Listbox
(
self
.
rightsubframe
,
{
'name'
:
'listbox'
,
{
'name'
:
'listbox'
,
'relief'
:
'sunken'
,
'bd'
:
2
,
'relief'
:
'sunken'
,
'bd'
:
2
,
'
geometry'
:
'20x5'
,
'
width'
:
20
,
'height'
:
5
,
Pack
:
{
'expand'
:
1
,
'fill'
:
'both'
}})
Pack
:
{
'expand'
:
1
,
'fill'
:
'both'
}})
self
.
l1
=
Button
(
self
.
leftsubframe
,
self
.
l1
=
Button
(
self
.
leftsubframe
,
{
'name'
:
'l1'
,
{
'name'
:
'l1'
,
...
@@ -102,6 +105,7 @@ class SelectionBox:
...
@@ -102,6 +105,7 @@ class SelectionBox:
{
'name'
:
'text'
,
{
'name'
:
'text'
,
'relief'
:
'sunken'
,
'bd'
:
2
,
'relief'
:
'sunken'
,
'bd'
:
2
,
'wrap'
:
'none'
,
'width'
:
72
,
'wrap'
:
'none'
,
'width'
:
72
,
'selectbackground'
:
'pink'
,
Pack
:
{
'expand'
:
1
,
'fill'
:
'both'
}})
Pack
:
{
'expand'
:
1
,
'fill'
:
'both'
}})
self
.
entry
.
bind
(
'<Return>'
,
self
.
entry_cb
)
self
.
entry
.
bind
(
'<Return>'
,
self
.
entry_cb
)
...
@@ -158,6 +162,8 @@ class SelectionBox:
...
@@ -158,6 +162,8 @@ class SelectionBox:
key
=
self
.
entry
.
get
()
key
=
self
.
entry
.
get
()
ok
=
filter
(
lambda
name
,
key
=
key
,
n
=
len
(
key
):
name
[:
n
]
==
key
,
ok
=
filter
(
lambda
name
,
key
=
key
,
n
=
len
(
key
):
name
[:
n
]
==
key
,
self
.
choices
)
self
.
choices
)
if
not
ok
:
self
.
frame
.
bell
()
self
.
listbox
.
delete
(
0
,
AtEnd
())
self
.
listbox
.
delete
(
0
,
AtEnd
())
exactmatch
=
0
exactmatch
=
0
for
item
in
ok
:
for
item
in
ok
:
...
@@ -165,7 +171,8 @@ class SelectionBox:
...
@@ -165,7 +171,8 @@ class SelectionBox:
self
.
listbox
.
insert
(
AtEnd
(),
item
)
self
.
listbox
.
insert
(
AtEnd
(),
item
)
if
exactmatch
:
if
exactmatch
:
return
key
return
key
elif
self
.
listbox
.
size
()
==
1
:
n
=
self
.
listbox
.
size
()
if
n
==
1
:
return
self
.
listbox
.
get
(
0
)
return
self
.
listbox
.
get
(
0
)
# Else return None, meaning not a unique selection
# Else return None, meaning not a unique selection
...
@@ -185,6 +192,7 @@ class SelectionBox:
...
@@ -185,6 +192,7 @@ class SelectionBox:
def
search_string
(
self
,
search
):
def
search_string
(
self
,
search
):
if
not
search
:
if
not
search
:
self
.
frame
.
bell
()
print
'Empty search string'
print
'Empty search string'
return
return
if
self
.
frame
.
tk
.
getvar
(
'casesense'
)
!=
'1'
:
if
self
.
frame
.
tk
.
getvar
(
'casesense'
)
!=
'1'
:
...
@@ -197,6 +205,7 @@ class SelectionBox:
...
@@ -197,6 +205,7 @@ class SelectionBox:
else
:
else
:
prog
=
regex
.
compile
(
search
)
prog
=
regex
.
compile
(
search
)
except
regex
.
error
,
msg
:
except
regex
.
error
,
msg
:
self
.
frame
.
bell
()
print
'Regex error:'
,
msg
print
'Regex error:'
,
msg
return
return
here
=
self
.
text
.
index
(
AtInsert
())
here
=
self
.
text
.
index
(
AtInsert
())
...
@@ -204,6 +213,7 @@ class SelectionBox:
...
@@ -204,6 +213,7 @@ class SelectionBox:
end
=
self
.
text
.
index
(
AtEnd
())
end
=
self
.
text
.
index
(
AtEnd
())
endlineno
=
string
.
atoi
(
end
[:
string
.
find
(
end
,
'.'
)])
endlineno
=
string
.
atoi
(
end
[:
string
.
find
(
end
,
'.'
)])
wraplineno
=
lineno
wraplineno
=
lineno
found
=
0
while
1
:
while
1
:
lineno
=
lineno
+
1
lineno
=
lineno
+
1
if
lineno
>
endlineno
:
if
lineno
>
endlineno
:
...
@@ -216,6 +226,7 @@ class SelectionBox:
...
@@ -216,6 +226,7 @@ class SelectionBox:
'
%
d.0 lineend'
%
lineno
)
'
%
d.0 lineend'
%
lineno
)
i
=
prog
.
search
(
line
)
i
=
prog
.
search
(
line
)
if
i
>=
0
:
if
i
>=
0
:
found
=
1
n
=
max
(
1
,
len
(
prog
.
group
(
0
)))
n
=
max
(
1
,
len
(
prog
.
group
(
0
)))
try
:
try
:
self
.
text
.
tag_remove
(
'sel'
,
self
.
text
.
tag_remove
(
'sel'
,
...
@@ -230,6 +241,8 @@ class SelectionBox:
...
@@ -230,6 +241,8 @@ class SelectionBox:
'
%
d.
%
d'
%
(
lineno
,
i
))
'
%
d.
%
d'
%
(
lineno
,
i
))
self
.
text
.
yview_pickplace
(
AtInsert
())
self
.
text
.
yview_pickplace
(
AtInsert
())
break
break
if
not
found
:
self
.
frame
.
bell
()
def
main
():
def
main
():
root
=
Tk
()
root
=
Tk
()
...
...
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