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
f0f6d12c
Kaydet (Commit)
f0f6d12c
authored
Ock 23, 2004
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
add \guilabel macro to mark labels that occur in user interfaces
üst
226f6975
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
4 deletions
+24
-4
doc.tex
Doc/doc/doc.tex
+14
-0
style.css
Doc/html/style.css
+1
-1
python.perl
Doc/perl/python.perl
+5
-2
python.sty
Doc/texinputs/python.sty
+4
-1
No files found.
Doc/doc/doc.tex
Dosyayı görüntüle @
f0f6d12c
...
...
@@ -1654,6 +1654,16 @@ This \UNIX\ is also followed by a space.
The components of graphical interfaces will be assigned markup, but
most of the specifics have not been determined.
\begin{macrodesc}
{
guilabel
}{
\p
{
label
}}
Labels presented as part of an interactive user interface should
be marked using
\macro
{
guilabel
}
. This includes labels from
text-based interfaces such as those created using
\code
{
curses
}
or
other text-based libraries. Any label used in the interface
should be marked with this macro, including button labels, window
titles, field names, menu and menu selection names, and even
values in selection lists.
\end{macrodesc}
\begin{macrodesc}
{
menuselection
}{
\p
{
menupath
}}
Menu selections should be marked using a combination of
\macro
{
menuselection
}
and
\macro
{
sub
}
. This macro is used to mark
...
...
@@ -1673,6 +1683,10 @@ This \UNIX\ is also followed by a space.
such as the ellipsis some operating systems use to indicate that
the command opens a dialog, the indicator should be omitted from
the selection name.
Individual selection names within the
\macro
{
menuselection
}
should
not be marked using
\macro
{
guilabel
}
since that's implied by using
\macro
{
menuselection
}
.
\end{macrodesc}
\begin{macrodesc}
{
sub
}{}
...
...
Doc/html/style.css
Dosyayı görüntüle @
f0f6d12c
...
...
@@ -123,7 +123,7 @@ div.note .label { margin-right: 0.5em;
.newsgroup
{
font-family
:
avantgarde
,
sans-serif
;
}
.url
{
font-family
:
avantgarde
,
sans-serif
;
}
.file
{
font-family
:
avantgarde
,
sans-serif
;
}
.
menuselection
{
font-family
:
avantgarde
,
sans-serif
;
}
.
guilabel
{
font-family
:
avantgarde
,
sans-serif
;
}
.tableheader
{
background-color
:
#99ccff
;
font-family
:
avantgarde
,
sans-serif
;
}
...
...
Doc/perl/python.perl
Dosyayı görüntüle @
f0f6d12c
...
...
@@ -95,9 +95,12 @@ sub do_cmd_textless{ '<' . $_[0]; }
sub
do_cmd_textunderscore
{
'_'
.
$_
[
0
];
}
sub
do_cmd_infinity
{
'∞'
.
$_
[
0
];
}
sub
do_cmd_plusminus
{
'±'
.
$_
[
0
];
}
sub
do_cmd_guilabel
{
return
use_wrappers
(
$_
[
0
]
.
'<span class="guilabel">'
,
'</span>'
);
}
sub
do_cmd_menuselection
{
return
use_wrappers
(
$_
[
0
],
'<span class="menuselection">'
,
'</span>'
);
}
sub
do_cmd_sub
{
' > '
.
$_
[
0
];
}
return
use_wrappers
(
$_
[
0
],
'<span class="guilabel">'
,
'</span>'
);
}
sub
do_cmd_sub
{
return
'</span> > <span class="guilabel">'
.
$_
[
0
];
}
# words typeset in a special way (not in HTML though)
...
...
Doc/texinputs/python.sty
Dosyayı görüntüle @
f0f6d12c
...
...
@@ -821,8 +821,11 @@
\newcommand
{
\NULL
}{
\constant
{
NULL
}}
\newcommand
{
\infinity
}{
\ensuremath
{
\infty
}}
\newcommand
{
\plusminus
}{
\ensuremath
{
\pm
}}
% \guilabel{Start}
\newcommand
{
\guilabel
}
[1]
{
\textsf
{
#1
}}
% \menuselection{Start \sub Programs \sub Python}
\newcommand
{
\menuselection
}
[1]
{
\
textsf
{
\def\sub
{
\ensuremath
{
>
}
}
#1
}}
\newcommand
{
\menuselection
}
[1]
{
\
guilabel
{{
\def\sub
{
\ensuremath
{
>
}
}
#1
}
}}
% Also for consistency: spell Python "Python", not "python"!
...
...
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