• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Japanese translation of message catalog for Sawfish Window-Manager


Commit MetaInfo

Revision049053e6c326a694c0a7874dff94018cbc7709b0 (tree)
Zeit2010-05-11 14:34:54
AutorTeika kazura <teika@lava...>
CommiterTeika kazura

Log Message

Docs.

Ändern Zusammenfassung

Diff

--- a/ChangeLog
+++ b/ChangeLog
@@ -3,10 +3,8 @@
33 -- [modified patch from Gentoo]
44
55 * lisp/sawfish/wm/ext/apps-menu.jl: Allow whitespace and comments
6- at the beginning of .desktop files
7- and skip the file, if the first valid
8- line is not [Desktop Entry].
9- -- [Matthew Love/Teika Kazura]
6+ at the beginning of .desktop files.
7+ -- [Matthew Love, Teika Kazura]
108
119 * src/Makefile.in
1210 * src/display.c
@@ -49,7 +47,8 @@
4947 * lisp/sawfish/wm/state/maximize.jl: make maximize-/-fullscreen/fullxinerama
5048 honor maximize-raises [Nolan Leake]
5149
52- * lisp/sawfish/wm/ext/apps-menu.jl: more robustness
50+ * lisp/sawfish/wm/ext/apps-menu.jl: Anti-brekage for "R".
51+ Removal of phony constants. Some code refactoring. [Teika Kazura]
5352
5453 2010-03-13 Christopher Bratusek <zanghar@freenet.de>
5554 * lisp/sawfish/wm/util/display-wininfo.jl: missing require
--- a/man/faq.texi
+++ b/man/faq.texi
@@ -6,7 +6,7 @@
66
77 @enumerate
88
9-@item How can I get informations on Sawfish?
9+@item How can I get information on Sawfish?
1010
1111 @itemize
1212 @item Homepage: @url{http://sawfish.wikia.com/}.
--- a/man/news.texi
+++ b/man/news.texi
@@ -24,13 +24,13 @@ window, if that is too small [Fuchur]
2424 @code{maximize-window-fullxinerama}, too, not just in maximize-window
2525 [Nolan Leake]
2626
27-@item More robustness in applications menu [Teika Kazura] [Matthew Love]
27+@item More robustness in applications menu [Teika Kazura, Matthew Love]
2828
2929 Before it broke for 'R' (statistics software), and whitespace handling
30-didn't follow the specification. Phony constants are removed, too.
30+didn't follow the specification.
3131
32-Allow whitespace and comments at the beginning of .desktop files and skip
33-the file, if the first valid line is not [Desktop Entry].
32+Some *.desktop files are not ignored any more either, i.e., leading
33+empty lines and comments are allowed.
3434 @end itemize
3535
3636 @item New Features
@@ -95,7 +95,8 @@ lisp files, but now it's guaranteed for all files.
9595
9696 @item ``Windows'' chapter is partly revised. Function @code{display-window}
9797 is documented. Difference between @code{window-wants-input-p} and
98-@code{window-really-wants-input-p} is described.
98+@code{window-really-wants-input-p} is described. Short description on
99+the root window.
99100
100101 @item In past few versions we made more changes which were not described in
101102 the news, including clarification in viewport, workspace and event,
--- a/man/sawfish.texi
+++ b/man/sawfish.texi
@@ -672,6 +672,11 @@ Returns @code{t} if @var{arg} is a member of the window type, and has a
672672 client window associated with it.
673673 @end defun
674674
675+Since the root window is not a managed client window, it is not
676+represented by a window object. Sometimes functions' arguments and
677+return value treat the symbol @code{root} as the root window. Window
678+hooks are so. But sometimes not.
679+
675680 @menu
676681 Basics:
677682 * Window Attributes::
@@ -6684,14 +6689,17 @@ the hooks mechanism. For more details on the hooks mechanism see
66846689
66856690 As well as using the standard @code{call-hook} function, sawfish also
66866691 provides the @code{call-window-hook} function. This is used to invoke
6687-hooks which refer to a single window. If the hook has a local value
6688-defined in the window's property list then this value is used, before
6689-the default value defined by the actual variable.
6692+hooks which refer to a single window. Such hook is called ``window
6693+hook''. If a window hook has a local value defined in the window's
6694+property list then this value is used, before the default value
6695+defined by the actual variable.
66906696
66916697 @defun call-window-hook hook window &optional args hook-type
66926698 Call @var{hook} for @var{window} with further arguments @var{args}. See
66936699 @code{call-hook} for a description of @var{hook-type}. Each function in
66946700 the hook is called with arguments @code{(@var{window} . @var{args})}.
6701+
6702+Root window is represented by the symbol @code{root}.
66956703 @end defun
66966704
66976705 The available hooks are listed below.