diff options
author | danw <danw> | 2000-08-07 15:55:57 +0000 |
---|---|---|
committer | danw <danw> | 2000-08-07 15:55:57 +0000 |
commit | 7f1bd1ea2013aa4a9f8de13e89e9caf2406b05ae (patch) | |
tree | a3e6a4c3600d37083a2988e4822d9f018e9f7e8c /x11/sawfish | |
parent | 24d309bbdc6104a2d9b9a7945e6923871aa24ced (diff) | |
download | pkgsrc-7f1bd1ea2013aa4a9f8de13e89e9caf2406b05ae.tar.gz |
Update to 0.30.3. (Based on patches from Jerry Alexandratos
<alexandr@eecis.udel.edu>.)
0.30.3
======
* If a frame part has a non-nil `hidden' attribute, ignore it
* When reframing windows, keep the absolute position of the client
window constant
* Support `FIXED_POSITION' GNOME hint (renamed old `fixed-position'
property as `client-set-position'; `fixed-position' now means
don't allow the window to be moved by the user)
* `transients-above' option can now be set per-window
* Translation updates: fr (Christian Marillat), en_GB (Robert
Brady), de (Kai Lahmann), da (Keld Simonsen), ru (Valek Filippov),
sl (Andraz Tori), no (Kjartan Maraas), gl (Jesus Bravo Alvarez), it
(Michele Campeotto)
* Fixed bugs when converting option values
* Fixed `:require' keyword in `defcustom' always causing the module
to be loaded, not just when the option is non-nil
* Fixed bug when adding windows that are shaded
* Fixed some minor bugs in the configurator
0.30.2
======
* Window cycling now forwards terminating events to external
applications as well as internal bindings (e.g. `M-TAB M-w' closes
an activated Netscape window)
* `quote-event' command now works with applications that ignore
synthetic events (adapted from code by Timo Korvola)
* Reorganized frame style and window type management. New function
`define-frame-type-mapper' allows modules to affect the mapping
from window type to frame type. E.g. the shading module uses this.
(fixes the bug that changing the frame type of a shaded window
didn't work)
* Added function `variable-customized-p'; use this to avoid
redefining user-modified options
* Do type-directed deep conversion of values when converting to/from
readable representations. This fixes the bug that options with
`:type (optional color)' weren't being converted when passed
between the wm and the configurator, leading to reader errors
A side-effect of this is that updated custom files will not be
compatible with previous versions of the wm (though old custom
files will work with new versions)
* Translation updates: no (Kjartan Maraas), de (Kai Lahmann), nl
(Dennis Smit), sl (Andraz Tori)
* Added primitives `map-windows' and `filter-windows'
* Fixed bug of not retaining focus on startup when originally in
PointerRoot mode and moving to click-to-focus mode (Brad Thompson)
* Ensure that apps get sent a synthetic ConfigureNotify event after
ConfigureRequest events are handled (fixes bug where menus in Java
apps can appear at wrong position until window is moved)
* When referencing known variables from subroutines, make sure that
restricted environment doesn't prevent the variable being accessed
(fixes bug where `default-bevel-percent' was being ignored)
* When creating transient groups, don't compare null group ids
(fixes xfmail related bugs)
* Fixed `move-window-to-viewport' command to correct for 1...
indexing
* Fixed non-gnome workspace widget in configurator
0.30
====
* New commands `activate-viewport-column', `activate-viewport-row'
* New commands `raise-window-and-transients',
`lower-window-and-transients' and
`raise-lower-window-and-transients',
`raise-transients-and-pass-through-click'.
As the normal window stacking commands, but restacks the
"transient-group" of the window. This includes the window itself
and any transients it has, and any windows that it itself is a
transient of.
These commands are used in the default keymaps
* Functions that deal with transient windows now understand the de
facto standard of setting the `WM_TRANSIENT_FOR' property to the
root window denotes that the window is a transient for the whole
group
* New image manipulation functions: `image-ref', `image-set',
`image-fill', `image-map'. New color accessor function
`color-rgb-8'. New function `root-window-id'
* Improvements to `sawfish-ui': optionally use some GNOME widgets,
more lisp widget types, some bug fixes
* New command `command-sequence'. Allows individual bindings to
invoke a sequence of commands
* Options `iconify-group-mode' and `uniconify-group-mode' replace
`iconify-whole-group' and `uniconify-whole-group'. New commands
`iconify-transient-group', and `uniconify-transient-group'
* Added `:type*' key to `defcustom', like `:type', but value is left
unquoted
* Translation updates: pl (Daniel Koc), ru (Valek Filippov), uk
(Yuri Syrota), es (Iñaki García Etxebarria)
* Fixed handling of `WM_NORMAL_HINTS' (was using base-size instead
of min-size in places)
* Fixed further locale / FontSet bug (Tomohiro KUBOTA)
* `window-history' module won't resize a window to a size that
violates its size constraints
0.29
====
* Rewrote the configuration user interface. Improvements include:
- Key bindings may now include parameters. E.g. this finally
allows shell commands to be bound to keys using the GUI (use
the new `run-shell-command' command)
- Nautilus-like user-levels to tailor the options shown to the
expertise of the user
- Options may have much richer type descriptions (including
`match-window' options). Also, extra widget types and
containers may be added as extra Lisp modules
- By default the stand-alone configurator commits changes to the
window manager as they are made, instead of waiting for the
`Try' button to be pressed
- Added dependences--options with dependences are only editable
when the value of their dependence is non-`nil'
* Rewrote window stacking code to be based on "stacking
predicates"--functions that accept or reject a possible stacking
configuration. This allows the "stack-transients-above-parents"
option to work correctly, only keeping transient windows above
their _own_ parent windows
* The configure-event handler now understands and handles the full
complexity of stacking requests (Brad Thompson)
* New frame-part attribute: `scale-foreground'. The `cursor'
attribute may now be a function
* Made the `centered', `centered-on-parent' and `under-pointer'
placement modes clamp the window into the current work area (i.e.
without overlapping windows that shouldn't be covered). Added a
`stagger' placement mode
* When grabbing window icons to images, preserve their shape masks
* Moved `window-history' options to `placement' group. Fixed some
more bugs and sub-optimal default option values
* Don't set cursors for button classes, use the default value
* GNOME `SKIP_FOCUS' window hint sets `never-focus' property on
window, as well as the `ignored' property
* Translation updates: de (Karl Eichwalder), ru (Valek Filippov), da
(Kenneth Christiansen)
* Added mostly-complete support for using gdk-pixbuf instead of
Imlib (requires an experimental Xlib version of the gdk-pixbuf
library)
* Various bug fixes and other minor changes...
Diffstat (limited to 'x11/sawfish')
-rw-r--r-- | x11/sawfish/Makefile | 6 | ||||
-rw-r--r-- | x11/sawfish/files/md5 | 4 | ||||
-rw-r--r-- | x11/sawfish/pkg/PLIST | 859 |
3 files changed, 479 insertions, 390 deletions
diff --git a/x11/sawfish/Makefile b/x11/sawfish/Makefile index 32f5160b257..8888699ec65 100644 --- a/x11/sawfish/Makefile +++ b/x11/sawfish/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.1.1.1 2000/07/01 04:13:30 danw Exp $ +# $NetBSD: Makefile,v 1.2 2000/08/07 15:55:57 danw Exp $ # -DISTNAME= sawfish-0.28.1 +DISTNAME= sawfish-0.30.3 CATEGORIES= x11 gnome MASTER_SITES= ftp://sawmill.sourceforge.net/pub/sawmill/ @@ -9,7 +9,7 @@ MAINTAINER= danw@netbsd.org HOMEPAGE= http://sawmill.sourceforge.net/ DEPENDS+= librep>=0.12:../../lang/librep -DEPENDS+= rep-gtk-*:../../x11/rep-gtk +DEPENDS+= rep-gtk>=0.13a:../../x11/rep-gtk DEPENDS+= imlib>=1.8.2:../../graphics/imlib DEPENDS+= control-center-*:../../x11/controlcenter diff --git a/x11/sawfish/files/md5 b/x11/sawfish/files/md5 index 73ba6467d9f..f199cd05147 100644 --- a/x11/sawfish/files/md5 +++ b/x11/sawfish/files/md5 @@ -1,3 +1,3 @@ -$NetBSD: md5,v 1.1.1.1 2000/07/01 04:13:30 danw Exp $ +$NetBSD: md5,v 1.2 2000/08/07 15:55:58 danw Exp $ -MD5 (sawfish-0.28.1.tar.gz) = 98346603de3c6a2b0a7e5c29158b4193 +MD5 (sawfish-0.30.3.tar.gz) = 235a5d39558ab8253124d50634bc01dc diff --git a/x11/sawfish/pkg/PLIST b/x11/sawfish/pkg/PLIST index 8484bd66d20..ab1baa295b6 100644 --- a/x11/sawfish/pkg/PLIST +++ b/x11/sawfish/pkg/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1.1.1 2000/07/01 04:13:30 danw Exp $ +@comment $NetBSD: PLIST,v 1.2 2000/08/07 15:55:58 danw Exp $ bin/sawfish bin/sawfish-capplet bin/sawfish-client @@ -12,33 +12,35 @@ info/sawfish.info-3 info/sawfish.info-4 info/sawfish.info-5 @exec install-info %D/info/sawfish.info %D/info/dir -libexec/sawfish/0.28.1/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/DOC -libexec/sawfish/0.28.1/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/flippers.la -libexec/sawfish/0.28.1/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/gradient.la -libexec/sawfish/0.28.1/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/gtk-style -libexec/sawfish/0.28.1/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libflippers.a -libexec/sawfish/0.28.1/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libflippers.so.0.0 -libexec/sawfish/0.28.1/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libgradient.a -libexec/sawfish/0.28.1/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libgradient.so.0.0 -libexec/sawfish/0.28.1/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libplay-sample.a -libexec/sawfish/0.28.1/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libplay-sample.so.0.0 -libexec/sawfish/0.28.1/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libselection.a -libexec/sawfish/0.28.1/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libselection.so.0.0 -libexec/sawfish/0.28.1/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libx.a -libexec/sawfish/0.28.1/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libx.so.0.0 -libexec/sawfish/0.28.1/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/play-sample.la -libexec/sawfish/0.28.1/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/sawfish-menu -libexec/sawfish/0.28.1/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/selection.la -libexec/sawfish/0.28.1/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/x.la -@dirrm libexec/sawfish/0.28.1/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS} -@dirrm libexec/sawfish/0.28.1 +libexec/sawfish/0.30.3/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/DOC +libexec/sawfish/0.30.3/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/flippers.la +libexec/sawfish/0.30.3/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/gradient.la +libexec/sawfish/0.30.3/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/gtk-style +libexec/sawfish/0.30.3/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libflippers.a +libexec/sawfish/0.30.3/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libflippers.so.0.0 +libexec/sawfish/0.30.3/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libgradient.a +libexec/sawfish/0.30.3/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libgradient.so.0.0 +libexec/sawfish/0.30.3/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libplay-sample.a +libexec/sawfish/0.30.3/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libplay-sample.so.0.0 +libexec/sawfish/0.30.3/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libselection.a +libexec/sawfish/0.30.3/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libselection.so.0.0 +libexec/sawfish/0.30.3/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libx.a +libexec/sawfish/0.30.3/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/libx.so.0.0 +libexec/sawfish/0.30.3/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/play-sample.la +libexec/sawfish/0.30.3/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/sawfish-menu +libexec/sawfish/0.30.3/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/selection.la +libexec/sawfish/0.30.3/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS}/x.la +@dirrm libexec/sawfish/0.30.3/${MACHINE_GNU_ARCH}-${LOWER_VENDOR}-${LOWER_OPSYS} +@dirrm libexec/sawfish/0.30.3 @dirrm libexec/sawfish share/control-center/Sawfish/.directory +share/control-center/Sawfish/.order share/control-center/Sawfish/appearance-properties.desktop share/control-center/Sawfish/bindings-properties.desktop share/control-center/Sawfish/focus-properties.desktop share/control-center/Sawfish/match-properties.desktop share/control-center/Sawfish/maximize-properties.desktop +share/control-center/Sawfish/meta-properties.desktop share/control-center/Sawfish/misc-properties.desktop share/control-center/Sawfish/move-properties.desktop share/control-center/Sawfish/placement-properties.desktop @@ -46,11 +48,13 @@ share/control-center/Sawfish/sound-properties.desktop share/control-center/Sawfish/workspace-properties.desktop @dirrm share/control-center/Sawfish share/gnome/apps/Settings/Sawfish/.directory +share/gnome/apps/Settings/Sawfish/.order share/gnome/apps/Settings/Sawfish/appearance-properties.desktop share/gnome/apps/Settings/Sawfish/bindings-properties.desktop share/gnome/apps/Settings/Sawfish/focus-properties.desktop share/gnome/apps/Settings/Sawfish/match-properties.desktop share/gnome/apps/Settings/Sawfish/maximize-properties.desktop +share/gnome/apps/Settings/Sawfish/meta-properties.desktop share/gnome/apps/Settings/Sawfish/misc-properties.desktop share/gnome/apps/Settings/Sawfish/move-properties.desktop share/gnome/apps/Settings/Sawfish/placement-properties.desktop @@ -70,370 +74,455 @@ share/pixmaps/sawfish-placement.png share/pixmaps/sawfish-shortcuts.png share/pixmaps/sawfish-tooltips.png share/pixmaps/sawfish-workspaces.png -share/sawfish/0.28.1/lisp/3d-hack.jl -share/sawfish/0.28.1/lisp/3d-hack.jlc -share/sawfish/0.28.1/lisp/anim-outline.jl -share/sawfish/0.28.1/lisp/anim-outline.jlc -share/sawfish/0.28.1/lisp/audio-events.jl -share/sawfish/0.28.1/lisp/audio-events.jlc -share/sawfish/0.28.1/lisp/auto-raise.jl -share/sawfish/0.28.1/lisp/auto-raise.jlc -share/sawfish/0.28.1/lisp/autoload.jl -share/sawfish/0.28.1/lisp/beos-window-menu.jl -share/sawfish/0.28.1/lisp/beos-window-menu.jlc -share/sawfish/0.28.1/lisp/compat.jl -share/sawfish/0.28.1/lisp/compat.jlc -share/sawfish/0.28.1/lisp/configure.jl -share/sawfish/0.28.1/lisp/configure.jlc -share/sawfish/0.28.1/lisp/cursors.jl -share/sawfish/0.28.1/lisp/cursors.jlc -share/sawfish/0.28.1/lisp/custom-defaults.jl -share/sawfish/0.28.1/lisp/custom-defaults.jlc -share/sawfish/0.28.1/lisp/custom.jl -share/sawfish/0.28.1/lisp/custom.jlc -share/sawfish/0.28.1/lisp/customize.jl -share/sawfish/0.28.1/lisp/customize.jlc -share/sawfish/0.28.1/lisp/cycle.jl -share/sawfish/0.28.1/lisp/cycle.jlc -share/sawfish/0.28.1/lisp/decode-events.jl -share/sawfish/0.28.1/lisp/decode-events.jlc -share/sawfish/0.28.1/lisp/describe.jl -share/sawfish/0.28.1/lisp/describe.jlc -share/sawfish/0.28.1/lisp/edge-flip.jl -share/sawfish/0.28.1/lisp/edge-flip.jlc -share/sawfish/0.28.1/lisp/edges.jl -share/sawfish/0.28.1/lisp/edges.jlc -share/sawfish/0.28.1/lisp/error-handler.jl -share/sawfish/0.28.1/lisp/error-handler.jlc -share/sawfish/0.28.1/lisp/focus.jl -share/sawfish/0.28.1/lisp/focus.jlc -share/sawfish/0.28.1/lisp/frames.jl -share/sawfish/0.28.1/lisp/frames.jlc -share/sawfish/0.28.1/lisp/functions.jl -share/sawfish/0.28.1/lisp/functions.jlc -share/sawfish/0.28.1/lisp/gnome-commands.jl -share/sawfish/0.28.1/lisp/gnome-commands.jlc -share/sawfish/0.28.1/lisp/gnome-int.jl -share/sawfish/0.28.1/lisp/gnome-int.jlc -share/sawfish/0.28.1/lisp/gnome-match.jl -share/sawfish/0.28.1/lisp/gnome-match.jlc -share/sawfish/0.28.1/lisp/gnome-menu.jl -share/sawfish/0.28.1/lisp/gnome-menu.jlc -share/sawfish/0.28.1/lisp/gnome.jl -share/sawfish/0.28.1/lisp/gnome.jlc -share/sawfish/0.28.1/lisp/group-funs.jl -share/sawfish/0.28.1/lisp/group-funs.jlc -share/sawfish/0.28.1/lisp/groups.jl -share/sawfish/0.28.1/lisp/groups.jlc -share/sawfish/0.28.1/lisp/grow-pack.jl -share/sawfish/0.28.1/lisp/grow-pack.jlc -share/sawfish/0.28.1/lisp/gtkrc.jl -share/sawfish/0.28.1/lisp/gtkrc.jlc -share/sawfish/0.28.1/lisp/help.jl -share/sawfish/0.28.1/lisp/help.jlc -share/sawfish/0.28.1/lisp/iconify.jl -share/sawfish/0.28.1/lisp/iconify.jlc -share/sawfish/0.28.1/lisp/ignore-window.jl -share/sawfish/0.28.1/lisp/ignore-window.jlc -share/sawfish/0.28.1/lisp/keymap.jl -share/sawfish/0.28.1/lisp/keymap.jlc -share/sawfish/0.28.1/lisp/keymaps.jl -share/sawfish/0.28.1/lisp/keymaps.jlc -share/sawfish/0.28.1/lisp/make-theme-preview.jl -share/sawfish/0.28.1/lisp/make-theme-preview.jlc -share/sawfish/0.28.1/lisp/make-theme.jl -share/sawfish/0.28.1/lisp/make-theme.jlc -share/sawfish/0.28.1/lisp/match-window.jl -share/sawfish/0.28.1/lisp/match-window.jlc -share/sawfish/0.28.1/lisp/maximize.jl -share/sawfish/0.28.1/lisp/maximize.jlc -share/sawfish/0.28.1/lisp/menus.jl -share/sawfish/0.28.1/lisp/menus.jlc -share/sawfish/0.28.1/lisp/move-cursor.jl -share/sawfish/0.28.1/lisp/move-cursor.jlc -share/sawfish/0.28.1/lisp/move-resize.jl -share/sawfish/0.28.1/lisp/move-resize.jlc -share/sawfish/0.28.1/lisp/mwm.jl -share/sawfish/0.28.1/lisp/mwm.jlc -share/sawfish/0.28.1/lisp/old-window-menu.jl -share/sawfish/0.28.1/lisp/old-window-menu.jlc -share/sawfish/0.28.1/lisp/open-look.jl -share/sawfish/0.28.1/lisp/open-look.jlc -share/sawfish/0.28.1/lisp/place-window.jl -share/sawfish/0.28.1/lisp/place-window.jlc -share/sawfish/0.28.1/lisp/play-audio.jl -share/sawfish/0.28.1/lisp/play-audio.jlc -share/sawfish/0.28.1/lisp/prompt-extras.jl -share/sawfish/0.28.1/lisp/prompt-extras.jlc -share/sawfish/0.28.1/lisp/prompt-wm.jl -share/sawfish/0.28.1/lisp/prompt-wm.jlc -share/sawfish/0.28.1/lisp/prompt.jl -share/sawfish/0.28.1/lisp/prompt.jlc -share/sawfish/0.28.1/lisp/raise-commands.jl -share/sawfish/0.28.1/lisp/raise-commands.jlc -share/sawfish/0.28.1/lisp/rects.jl -share/sawfish/0.28.1/lisp/rects.jlc -share/sawfish/0.28.1/lisp/sawmill-defaults.jl -share/sawfish/0.28.1/lisp/sawmill-defaults.jlc -share/sawfish/0.28.1/lisp/sawmill-gaol.jl -share/sawfish/0.28.1/lisp/sawmill-gaol.jlc -share/sawfish/0.28.1/lisp/sawmill.jl -share/sawfish/0.28.1/lisp/sawmill.jlc -share/sawfish/0.28.1/lisp/select-window.jl -share/sawfish/0.28.1/lisp/select-window.jlc -share/sawfish/0.28.1/lisp/server.jl -share/sawfish/0.28.1/lisp/server.jlc -share/sawfish/0.28.1/lisp/shade-hover.jl -share/sawfish/0.28.1/lisp/shade-hover.jlc -share/sawfish/0.28.1/lisp/shading.jl -share/sawfish/0.28.1/lisp/shading.jlc -share/sawfish/0.28.1/lisp/size-window.jl -share/sawfish/0.28.1/lisp/size-window.jlc -share/sawfish/0.28.1/lisp/slide-window.jl -share/sawfish/0.28.1/lisp/slide-window.jlc -share/sawfish/0.28.1/lisp/sm-common.jl -share/sawfish/0.28.1/lisp/sm-common.jlc -share/sawfish/0.28.1/lisp/sm-init.jl -share/sawfish/0.28.1/lisp/sm-init.jlc -share/sawfish/0.28.1/lisp/sm-load.jl -share/sawfish/0.28.1/lisp/sm-load.jlc -share/sawfish/0.28.1/lisp/sm-save.jl -share/sawfish/0.28.1/lisp/sm-save.jlc -share/sawfish/0.28.1/lisp/smart-placement.jl -share/sawfish/0.28.1/lisp/smart-placement.jlc -share/sawfish/0.28.1/lisp/stacking.jl -share/sawfish/0.28.1/lisp/stacking.jlc -share/sawfish/0.28.1/lisp/tooltips.jl -share/sawfish/0.28.1/lisp/tooltips.jlc -share/sawfish/0.28.1/lisp/transient.jl -share/sawfish/0.28.1/lisp/transient.jlc -share/sawfish/0.28.1/lisp/viewport-linear.jl -share/sawfish/0.28.1/lisp/viewport-linear.jlc -share/sawfish/0.28.1/lisp/viewport.jl -share/sawfish/0.28.1/lisp/viewport.jlc -share/sawfish/0.28.1/lisp/window-anim.jl -share/sawfish/0.28.1/lisp/window-anim.jlc -share/sawfish/0.28.1/lisp/window-history.jl -share/sawfish/0.28.1/lisp/window-history.jlc -share/sawfish/0.28.1/lisp/window-order.jl -share/sawfish/0.28.1/lisp/window-order.jlc -share/sawfish/0.28.1/lisp/window-outline.jl -share/sawfish/0.28.1/lisp/window-outline.jlc -share/sawfish/0.28.1/lisp/with-output.jl -share/sawfish/0.28.1/lisp/with-output.jlc -share/sawfish/0.28.1/lisp/wm-spec.jl -share/sawfish/0.28.1/lisp/wm-spec.jlc -share/sawfish/0.28.1/lisp/workspace.jl -share/sawfish/0.28.1/lisp/workspace.jlc -share/sawfish/0.28.1/lisp/x-cycle.jl -share/sawfish/0.28.1/lisp/x-cycle.jlc -share/sawfish/0.28.1/locale/da/LC_MESSAGES/sawfish.mo -share/sawfish/0.28.1/locale/de/LC_MESSAGES/sawfish.mo -share/sawfish/0.28.1/locale/en_GB/LC_MESSAGES/sawfish.mo -share/sawfish/0.28.1/locale/es/LC_MESSAGES/sawfish.mo -share/sawfish/0.28.1/locale/fi/LC_MESSAGES/sawfish.mo -share/sawfish/0.28.1/locale/fr/LC_MESSAGES/sawfish.mo -share/sawfish/0.28.1/locale/gl/LC_MESSAGES/sawfish.mo -share/sawfish/0.28.1/locale/ja/LC_MESSAGES/sawfish.mo -share/sawfish/0.28.1/locale/ko/LC_MESSAGES/sawfish.mo -share/sawfish/0.28.1/locale/nl/LC_MESSAGES/sawfish.mo -share/sawfish/0.28.1/locale/pl/LC_MESSAGES/sawfish.mo -share/sawfish/0.28.1/locale/pt_PT/LC_MESSAGES/sawfish.mo -share/sawfish/0.28.1/locale/sv/LC_MESSAGES/sawfish.mo -share/sawfish/0.28.1/locale/tr/LC_MESSAGES/sawfish.mo -share/sawfish/0.28.1/sounds/activate.wav -share/sawfish/0.28.1/sounds/clicked.wav -share/sawfish/0.28.1/sounds/gameover.wav -share/sawfish/0.28.1/sounds/slide.wav -share/sawfish/0.28.1/sounds/toggled.wav -share/sawfish/0.28.1/themer.glade -share/sawfish/0.28.1/themes/absolute-e/README -share/sawfish/0.28.1/themes/absolute-e/README.gl -share/sawfish/0.28.1/themes/absolute-e/README.ja -share/sawfish/0.28.1/themes/absolute-e/README.pl -share/sawfish/0.28.1/themes/absolute-e/bar_clicked_active.png -share/sawfish/0.28.1/themes/absolute-e/bar_hilited_active.png -share/sawfish/0.28.1/themes/absolute-e/bar_normal.png -share/sawfish/0.28.1/themes/absolute-e/bar_normal_active.png -share/sawfish/0.28.1/themes/absolute-e/theme.jl -share/sawfish/0.28.1/themes/brushed-metal/README -share/sawfish/0.28.1/themes/brushed-metal/README.gl -share/sawfish/0.28.1/themes/brushed-metal/README.ja -share/sawfish/0.28.1/themes/brushed-metal/README.pl -share/sawfish/0.28.1/themes/brushed-metal/b1-.png -share/sawfish/0.28.1/themes/brushed-metal/b1.png -share/sawfish/0.28.1/themes/brushed-metal/b2-.png -share/sawfish/0.28.1/themes/brushed-metal/b2.png -share/sawfish/0.28.1/themes/brushed-metal/b3-.png -share/sawfish/0.28.1/themes/brushed-metal/b3.png -share/sawfish/0.28.1/themes/brushed-metal/b5-.png -share/sawfish/0.28.1/themes/brushed-metal/b5.png -share/sawfish/0.28.1/themes/brushed-metal/b6-.png -share/sawfish/0.28.1/themes/brushed-metal/b6.png -share/sawfish/0.28.1/themes/brushed-metal/b7-.png -share/sawfish/0.28.1/themes/brushed-metal/b7.png -share/sawfish/0.28.1/themes/brushed-metal/t1-.png -share/sawfish/0.28.1/themes/brushed-metal/t1-b.png -share/sawfish/0.28.1/themes/brushed-metal/t1.png -share/sawfish/0.28.1/themes/brushed-metal/t1b.png -share/sawfish/0.28.1/themes/brushed-metal/t2-.png -share/sawfish/0.28.1/themes/brushed-metal/t2.png -share/sawfish/0.28.1/themes/brushed-metal/t2s-.png -share/sawfish/0.28.1/themes/brushed-metal/t2s.png -share/sawfish/0.28.1/themes/brushed-metal/t3-.png -share/sawfish/0.28.1/themes/brushed-metal/t3-b.png -share/sawfish/0.28.1/themes/brushed-metal/t3.png -share/sawfish/0.28.1/themes/brushed-metal/t3b.png -share/sawfish/0.28.1/themes/brushed-metal/t4-.png -share/sawfish/0.28.1/themes/brushed-metal/t4-b.png -share/sawfish/0.28.1/themes/brushed-metal/t4.png -share/sawfish/0.28.1/themes/brushed-metal/t4b.png -share/sawfish/0.28.1/themes/brushed-metal/t5-.png -share/sawfish/0.28.1/themes/brushed-metal/t5-b.png -share/sawfish/0.28.1/themes/brushed-metal/t5.png -share/sawfish/0.28.1/themes/brushed-metal/t5b.png -share/sawfish/0.28.1/themes/brushed-metal/theme.jl -share/sawfish/0.28.1/themes/gradient/README -share/sawfish/0.28.1/themes/gradient/README.gl -share/sawfish/0.28.1/themes/gradient/README.ja -share/sawfish/0.28.1/themes/gradient/README.pl -share/sawfish/0.28.1/themes/gradient/as_close-b.png -share/sawfish/0.28.1/themes/gradient/as_close.png -share/sawfish/0.28.1/themes/gradient/as_min-b.png -share/sawfish/0.28.1/themes/gradient/as_min.png -share/sawfish/0.28.1/themes/gradient/theme.jl -share/sawfish/0.28.1/themes/gtk/README -share/sawfish/0.28.1/themes/gtk/README.gl -share/sawfish/0.28.1/themes/gtk/README.ja -share/sawfish/0.28.1/themes/gtk/README.pl -share/sawfish/0.28.1/themes/gtk/as_close-b.png -share/sawfish/0.28.1/themes/gtk/as_close.png -share/sawfish/0.28.1/themes/gtk/as_min-b.png -share/sawfish/0.28.1/themes/gtk/as_min.png -share/sawfish/0.28.1/themes/gtk/theme.jl -share/sawfish/0.28.1/themes/microGUI/README -share/sawfish/0.28.1/themes/microGUI/README.gl -share/sawfish/0.28.1/themes/microGUI/README.ja -share/sawfish/0.28.1/themes/microGUI/README.pl -share/sawfish/0.28.1/themes/microGUI/TODO -share/sawfish/0.28.1/themes/microGUI/bl.png -share/sawfish/0.28.1/themes/microGUI/bottom.png -share/sawfish/0.28.1/themes/microGUI/br.png -share/sawfish/0.28.1/themes/microGUI/close_active.png -share/sawfish/0.28.1/themes/microGUI/close_clicked.png -share/sawfish/0.28.1/themes/microGUI/close_normal.png -share/sawfish/0.28.1/themes/microGUI/left.png -share/sawfish/0.28.1/themes/microGUI/maximize_active.png -share/sawfish/0.28.1/themes/microGUI/maximize_clicked.png -share/sawfish/0.28.1/themes/microGUI/maximize_normal.png -share/sawfish/0.28.1/themes/microGUI/menu_active.png -share/sawfish/0.28.1/themes/microGUI/menu_clicked.png -share/sawfish/0.28.1/themes/microGUI/menu_normal.png -share/sawfish/0.28.1/themes/microGUI/minimize_active.png -share/sawfish/0.28.1/themes/microGUI/minimize_clicked.png -share/sawfish/0.28.1/themes/microGUI/minimize_normal.png -share/sawfish/0.28.1/themes/microGUI/right.png -share/sawfish/0.28.1/themes/microGUI/t_bottom.png -share/sawfish/0.28.1/themes/microGUI/t_bottom_left.png -share/sawfish/0.28.1/themes/microGUI/t_bottom_right.png -share/sawfish/0.28.1/themes/microGUI/t_close_active.png -share/sawfish/0.28.1/themes/microGUI/t_close_clicked.png -share/sawfish/0.28.1/themes/microGUI/t_close_normal.png -share/sawfish/0.28.1/themes/microGUI/t_left.png -share/sawfish/0.28.1/themes/microGUI/t_right.png -share/sawfish/0.28.1/themes/microGUI/t_top.png -share/sawfish/0.28.1/themes/microGUI/t_top_left.png -share/sawfish/0.28.1/themes/microGUI/t_top_right.png -share/sawfish/0.28.1/themes/microGUI/theme.jl -share/sawfish/0.28.1/themes/microGUI/top_blue.png -share/sawfish/0.28.1/themes/microGUI/top_blue_inactive.png -share/sawfish/0.28.1/themes/microGUI/top_curves.png -share/sawfish/0.28.1/themes/microGUI/top_curves_inactive.png -share/sawfish/0.28.1/themes/microGUI/top_grey.png -share/sawfish/0.28.1/themes/microGUI/top_left.png -share/sawfish/0.28.1/themes/microGUI/top_left_inactive.png -share/sawfish/0.28.1/themes/microGUI/top_left_inactive_s.png -share/sawfish/0.28.1/themes/microGUI/top_left_s.png -share/sawfish/0.28.1/themes/microGUI/top_right.png -share/sawfish/0.28.1/themes/microGUI/top_right_s.png -share/sawfish/0.28.1/themes/mono/README -share/sawfish/0.28.1/themes/mono/README.gl -share/sawfish/0.28.1/themes/mono/README.ja -share/sawfish/0.28.1/themes/mono/README.pl -share/sawfish/0.28.1/themes/mono/close-c.png -share/sawfish/0.28.1/themes/mono/close.png -share/sawfish/0.28.1/themes/mono/max-c.png -share/sawfish/0.28.1/themes/mono/max.png -share/sawfish/0.28.1/themes/mono/menu-c.png -share/sawfish/0.28.1/themes/mono/menu.png -share/sawfish/0.28.1/themes/mono/min-c.png -share/sawfish/0.28.1/themes/mono/min.png -share/sawfish/0.28.1/themes/mono/restore-c.png -share/sawfish/0.28.1/themes/mono/restore.png -share/sawfish/0.28.1/themes/mono/theme.jl -share/sawfish/0.28.1/themes/simple/README -share/sawfish/0.28.1/themes/simple/README.gl -share/sawfish/0.28.1/themes/simple/README.ja -share/sawfish/0.28.1/themes/simple/README.pl -share/sawfish/0.28.1/themes/simple/as_close-b.png -share/sawfish/0.28.1/themes/simple/as_close.png -share/sawfish/0.28.1/themes/simple/as_min-b.png -share/sawfish/0.28.1/themes/simple/as_min.png -share/sawfish/0.28.1/themes/simple/theme.jl -share/sawfish/0.28.1/themes/smaker/README -share/sawfish/0.28.1/themes/smaker/README.gl -share/sawfish/0.28.1/themes/smaker/README.ja -share/sawfish/0.28.1/themes/smaker/README.pl -share/sawfish/0.28.1/themes/smaker/bar_clicked_active.png -share/sawfish/0.28.1/themes/smaker/bar_hilited_active.png -share/sawfish/0.28.1/themes/smaker/bar_normal.png -share/sawfish/0.28.1/themes/smaker/bar_normal_active.png -share/sawfish/0.28.1/themes/smaker/close.png -share/sawfish/0.28.1/themes/smaker/close_inv.png -share/sawfish/0.28.1/themes/smaker/min.png -share/sawfish/0.28.1/themes/smaker/min_inv.png -share/sawfish/0.28.1/themes/smaker/theme.jl -@dirrm share/sawfish/0.28.1/lisp -@dirrm share/sawfish/0.28.1/locale/da/LC_MESSAGES -@dirrm share/sawfish/0.28.1/locale/da -@dirrm share/sawfish/0.28.1/locale/de/LC_MESSAGES -@dirrm share/sawfish/0.28.1/locale/de -@dirrm share/sawfish/0.28.1/locale/en_GB/LC_MESSAGES -@dirrm share/sawfish/0.28.1/locale/en_GB -@dirrm share/sawfish/0.28.1/locale/es/LC_MESSAGES -@dirrm share/sawfish/0.28.1/locale/es -@dirrm share/sawfish/0.28.1/locale/fi/LC_MESSAGES -@dirrm share/sawfish/0.28.1/locale/fi -@dirrm share/sawfish/0.28.1/locale/fr/LC_MESSAGES -@dirrm share/sawfish/0.28.1/locale/fr -@dirrm share/sawfish/0.28.1/locale/gl/LC_MESSAGES -@dirrm share/sawfish/0.28.1/locale/gl -@dirrm share/sawfish/0.28.1/locale/ja/LC_MESSAGES -@dirrm share/sawfish/0.28.1/locale/ja -@dirrm share/sawfish/0.28.1/locale/ko/LC_MESSAGES -@dirrm share/sawfish/0.28.1/locale/ko -@dirrm share/sawfish/0.28.1/locale/nl/LC_MESSAGES -@dirrm share/sawfish/0.28.1/locale/nl -@dirrm share/sawfish/0.28.1/locale/pl/LC_MESSAGES -@dirrm share/sawfish/0.28.1/locale/pl -@dirrm share/sawfish/0.28.1/locale/pt_PT/LC_MESSAGES -@dirrm share/sawfish/0.28.1/locale/pt_PT -@dirrm share/sawfish/0.28.1/locale/sv/LC_MESSAGES -@dirrm share/sawfish/0.28.1/locale/sv -@dirrm share/sawfish/0.28.1/locale/tr/LC_MESSAGES -@dirrm share/sawfish/0.28.1/locale/tr -@dirrm share/sawfish/0.28.1/locale -@dirrm share/sawfish/0.28.1/sounds -@dirrm share/sawfish/0.28.1/themes/absolute-e -@dirrm share/sawfish/0.28.1/themes/brushed-metal -@dirrm share/sawfish/0.28.1/themes/gradient -@dirrm share/sawfish/0.28.1/themes/gtk -@dirrm share/sawfish/0.28.1/themes/microGUI -@dirrm share/sawfish/0.28.1/themes/mono -@dirrm share/sawfish/0.28.1/themes/simple -@dirrm share/sawfish/0.28.1/themes/smaker -@dirrm share/sawfish/0.28.1/themes -@dirrm share/sawfish/0.28.1 +share/sawfish/0.30.3/lisp/3d-hack.jl +share/sawfish/0.30.3/lisp/3d-hack.jlc +share/sawfish/0.30.3/lisp/anim-outline.jl +share/sawfish/0.30.3/lisp/anim-outline.jlc +share/sawfish/0.30.3/lisp/audio-events.jl +share/sawfish/0.30.3/lisp/audio-events.jlc +share/sawfish/0.30.3/lisp/auto-raise.jl +share/sawfish/0.30.3/lisp/auto-raise.jlc +share/sawfish/0.30.3/lisp/autoload.jl +share/sawfish/0.30.3/lisp/beos-window-menu.jl +share/sawfish/0.30.3/lisp/beos-window-menu.jlc +share/sawfish/0.30.3/lisp/compat.jl +share/sawfish/0.30.3/lisp/compat.jlc +share/sawfish/0.30.3/lisp/configure.jl +share/sawfish/0.30.3/lisp/configure.jlc +share/sawfish/0.30.3/lisp/cursors.jl +share/sawfish/0.30.3/lisp/cursors.jlc +share/sawfish/0.30.3/lisp/custom-defaults.jl +share/sawfish/0.30.3/lisp/custom-defaults.jlc +share/sawfish/0.30.3/lisp/custom.jl +share/sawfish/0.30.3/lisp/custom.jlc +share/sawfish/0.30.3/lisp/customize.jl +share/sawfish/0.30.3/lisp/customize.jlc +share/sawfish/0.30.3/lisp/cycle.jl +share/sawfish/0.30.3/lisp/cycle.jlc +share/sawfish/0.30.3/lisp/decode-events.jl +share/sawfish/0.30.3/lisp/decode-events.jlc +share/sawfish/0.30.3/lisp/describe.jl +share/sawfish/0.30.3/lisp/describe.jlc +share/sawfish/0.30.3/lisp/edge-flip.jl +share/sawfish/0.30.3/lisp/edge-flip.jlc +share/sawfish/0.30.3/lisp/edges.jl +share/sawfish/0.30.3/lisp/edges.jlc +share/sawfish/0.30.3/lisp/error-handler.jl +share/sawfish/0.30.3/lisp/error-handler.jlc +share/sawfish/0.30.3/lisp/focus.jl +share/sawfish/0.30.3/lisp/focus.jlc +share/sawfish/0.30.3/lisp/frames.jl +share/sawfish/0.30.3/lisp/frames.jlc +share/sawfish/0.30.3/lisp/functions.jl +share/sawfish/0.30.3/lisp/functions.jlc +share/sawfish/0.30.3/lisp/gnome-commands.jl +share/sawfish/0.30.3/lisp/gnome-commands.jlc +share/sawfish/0.30.3/lisp/gnome-int.jl +share/sawfish/0.30.3/lisp/gnome-int.jlc +share/sawfish/0.30.3/lisp/gnome-match.jl +share/sawfish/0.30.3/lisp/gnome-match.jlc +share/sawfish/0.30.3/lisp/gnome-menu.jl +share/sawfish/0.30.3/lisp/gnome-menu.jlc +share/sawfish/0.30.3/lisp/gnome.jl +share/sawfish/0.30.3/lisp/gnome.jlc +share/sawfish/0.30.3/lisp/group-funs.jl +share/sawfish/0.30.3/lisp/group-funs.jlc +share/sawfish/0.30.3/lisp/groups.jl +share/sawfish/0.30.3/lisp/groups.jlc +share/sawfish/0.30.3/lisp/grow-pack.jl +share/sawfish/0.30.3/lisp/grow-pack.jlc +share/sawfish/0.30.3/lisp/gtkrc.jl +share/sawfish/0.30.3/lisp/gtkrc.jlc +share/sawfish/0.30.3/lisp/help.jl +share/sawfish/0.30.3/lisp/help.jlc +share/sawfish/0.30.3/lisp/iconify.jl +share/sawfish/0.30.3/lisp/iconify.jlc +share/sawfish/0.30.3/lisp/ignore-window.jl +share/sawfish/0.30.3/lisp/ignore-window.jlc +share/sawfish/0.30.3/lisp/keymap.jl +share/sawfish/0.30.3/lisp/keymap.jlc +share/sawfish/0.30.3/lisp/keymaps.jl +share/sawfish/0.30.3/lisp/keymaps.jlc +share/sawfish/0.30.3/lisp/make-theme-preview.jl +share/sawfish/0.30.3/lisp/make-theme-preview.jlc +share/sawfish/0.30.3/lisp/make-theme.jl +share/sawfish/0.30.3/lisp/make-theme.jlc +share/sawfish/0.30.3/lisp/match-window.jl +share/sawfish/0.30.3/lisp/match-window.jlc +share/sawfish/0.30.3/lisp/maximize.jl +share/sawfish/0.30.3/lisp/maximize.jlc +share/sawfish/0.30.3/lisp/menus.jl +share/sawfish/0.30.3/lisp/menus.jlc +share/sawfish/0.30.3/lisp/move-cursor.jl +share/sawfish/0.30.3/lisp/move-cursor.jlc +share/sawfish/0.30.3/lisp/move-resize.jl +share/sawfish/0.30.3/lisp/move-resize.jlc +share/sawfish/0.30.3/lisp/mwm.jl +share/sawfish/0.30.3/lisp/mwm.jlc +share/sawfish/0.30.3/lisp/nokogiri-sawfish.jl +share/sawfish/0.30.3/lisp/nokogiri-sawfish.jlc +share/sawfish/0.30.3/lisp/old-window-menu.jl +share/sawfish/0.30.3/lisp/old-window-menu.jlc +share/sawfish/0.30.3/lisp/open-look.jl +share/sawfish/0.30.3/lisp/open-look.jlc +share/sawfish/0.30.3/lisp/place-window.jl +share/sawfish/0.30.3/lisp/place-window.jlc +share/sawfish/0.30.3/lisp/play-audio.jl +share/sawfish/0.30.3/lisp/play-audio.jlc +share/sawfish/0.30.3/lisp/prompt-extras.jl +share/sawfish/0.30.3/lisp/prompt-extras.jlc +share/sawfish/0.30.3/lisp/prompt-wm.jl +share/sawfish/0.30.3/lisp/prompt-wm.jlc +share/sawfish/0.30.3/lisp/prompt.jl +share/sawfish/0.30.3/lisp/prompt.jlc +share/sawfish/0.30.3/lisp/raise-commands.jl +share/sawfish/0.30.3/lisp/raise-commands.jlc +share/sawfish/0.30.3/lisp/rects.jl +share/sawfish/0.30.3/lisp/rects.jlc +share/sawfish/0.30.3/lisp/sawmill-defaults.jl +share/sawfish/0.30.3/lisp/sawmill-defaults.jlc +share/sawfish/0.30.3/lisp/sawmill-gaol.jl +share/sawfish/0.30.3/lisp/sawmill-gaol.jlc +share/sawfish/0.30.3/lisp/sawmill.jl +share/sawfish/0.30.3/lisp/sawmill.jlc +share/sawfish/0.30.3/lisp/select-window.jl +share/sawfish/0.30.3/lisp/select-window.jlc +share/sawfish/0.30.3/lisp/server.jl +share/sawfish/0.30.3/lisp/server.jlc +share/sawfish/0.30.3/lisp/shade-hover.jl +share/sawfish/0.30.3/lisp/shade-hover.jlc +share/sawfish/0.30.3/lisp/shading.jl +share/sawfish/0.30.3/lisp/shading.jlc +share/sawfish/0.30.3/lisp/size-window.jl +share/sawfish/0.30.3/lisp/size-window.jlc +share/sawfish/0.30.3/lisp/slide-window.jl +share/sawfish/0.30.3/lisp/slide-window.jlc +share/sawfish/0.30.3/lisp/sm-common.jl +share/sawfish/0.30.3/lisp/sm-common.jlc +share/sawfish/0.30.3/lisp/sm-init.jl +share/sawfish/0.30.3/lisp/sm-init.jlc +share/sawfish/0.30.3/lisp/sm-load.jl +share/sawfish/0.30.3/lisp/sm-load.jlc +share/sawfish/0.30.3/lisp/sm-save.jl +share/sawfish/0.30.3/lisp/sm-save.jlc +share/sawfish/0.30.3/lisp/smart-placement.jl +share/sawfish/0.30.3/lisp/smart-placement.jlc +share/sawfish/0.30.3/lisp/stacking.jl +share/sawfish/0.30.3/lisp/stacking.jlc +share/sawfish/0.30.3/lisp/stagger-placement.jl +share/sawfish/0.30.3/lisp/stagger-placement.jlc +share/sawfish/0.30.3/lisp/tooltips.jl +share/sawfish/0.30.3/lisp/tooltips.jlc +share/sawfish/0.30.3/lisp/transient.jl +share/sawfish/0.30.3/lisp/transient.jlc +share/sawfish/0.30.3/lisp/viewport-linear.jl +share/sawfish/0.30.3/lisp/viewport-linear.jlc +share/sawfish/0.30.3/lisp/viewport.jl +share/sawfish/0.30.3/lisp/viewport.jlc +share/sawfish/0.30.3/lisp/window-anim.jl +share/sawfish/0.30.3/lisp/window-anim.jlc +share/sawfish/0.30.3/lisp/window-history.jl +share/sawfish/0.30.3/lisp/window-history.jlc +share/sawfish/0.30.3/lisp/window-order.jl +share/sawfish/0.30.3/lisp/window-order.jlc +share/sawfish/0.30.3/lisp/window-outline.jl +share/sawfish/0.30.3/lisp/window-outline.jlc +share/sawfish/0.30.3/lisp/with-output.jl +share/sawfish/0.30.3/lisp/with-output.jlc +share/sawfish/0.30.3/lisp/wm-spec.jl +share/sawfish/0.30.3/lisp/wm-spec.jlc +share/sawfish/0.30.3/lisp/workspace.jl +share/sawfish/0.30.3/lisp/workspace.jlc +share/sawfish/0.30.3/lisp/x-cycle.jl +share/sawfish/0.30.3/lisp/x-cycle.jlc +share/sawfish/0.30.3/locale/da/LC_MESSAGES/sawfish.mo +share/sawfish/0.30.3/locale/de/LC_MESSAGES/sawfish.mo +share/sawfish/0.30.3/locale/en_GB/LC_MESSAGES/sawfish.mo +share/sawfish/0.30.3/locale/es/LC_MESSAGES/sawfish.mo +share/sawfish/0.30.3/locale/fi/LC_MESSAGES/sawfish.mo +share/sawfish/0.30.3/locale/fr/LC_MESSAGES/sawfish.mo +share/sawfish/0.30.3/locale/gl/LC_MESSAGES/sawfish.mo +share/sawfish/0.30.3/locale/it/LC_MESSAGES/sawfish.mo +share/sawfish/0.30.3/locale/ja/LC_MESSAGES/sawfish.mo +share/sawfish/0.30.3/locale/ko/LC_MESSAGES/sawfish.mo +share/sawfish/0.30.3/locale/nl/LC_MESSAGES/sawfish.mo +share/sawfish/0.30.3/locale/no/LC_MESSAGES/sawfish.mo +share/sawfish/0.30.3/locale/pl/LC_MESSAGES/sawfish.mo +share/sawfish/0.30.3/locale/pt_PT/LC_MESSAGES/sawfish.mo +share/sawfish/0.30.3/locale/ru/LC_MESSAGES/sawfish.mo +share/sawfish/0.30.3/locale/sl/LC_MESSAGES/sawfish.mo +share/sawfish/0.30.3/locale/sv/LC_MESSAGES/sawfish.mo +share/sawfish/0.30.3/locale/tr/LC_MESSAGES/sawfish.mo +share/sawfish/0.30.3/locale/uk/LC_MESSAGES/sawfish.mo +share/sawfish/0.30.3/nokogiri/monitor.png +share/sawfish/0.30.3/nokogiri/nokogiri-apply.jl +share/sawfish/0.30.3/nokogiri/nokogiri-apply.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-color-preview.jl +share/sawfish/0.30.3/nokogiri/nokogiri-color-preview.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-config.jl +share/sawfish/0.30.3/nokogiri/nokogiri-config.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-gnome.jl +share/sawfish/0.30.3/nokogiri/nokogiri-gnome.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-group.jl +share/sawfish/0.30.3/nokogiri/nokogiri-group.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-i18n.jl +share/sawfish/0.30.3/nokogiri/nokogiri-i18n.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-interfaces.jl +share/sawfish/0.30.3/nokogiri/nokogiri-interfaces.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-layout.jl +share/sawfish/0.30.3/nokogiri/nokogiri-layout.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-layouts/keymaps.jl +share/sawfish/0.30.3/nokogiri/nokogiri-layouts/keymaps.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-main.jl +share/sawfish/0.30.3/nokogiri/nokogiri-main.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-shell.jl +share/sawfish/0.30.3/nokogiri/nokogiri-shell.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-slot.jl +share/sawfish/0.30.3/nokogiri/nokogiri-slot.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-user-level.jl +share/sawfish/0.30.3/nokogiri/nokogiri-user-level.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-widget-dialog.jl +share/sawfish/0.30.3/nokogiri/nokogiri-widget-dialog.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-widget-test.jl +share/sawfish/0.30.3/nokogiri/nokogiri-widget-test.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-widget.jl +share/sawfish/0.30.3/nokogiri/nokogiri-widget.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/alist.jl +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/alist.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/color.jl +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/color.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/command.jl +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/command.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/event.jl +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/event.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/file.jl +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/file.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/font.jl +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/font.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/frame-style.jl +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/frame-style.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/icon.jl +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/icon.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/keymap.jl +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/keymap.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/list.jl +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/list.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/match-window.jl +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/match-window.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/pair.jl +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/pair.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/program.jl +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/program.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/workspace-geometry.jl +share/sawfish/0.30.3/nokogiri/nokogiri-widgets/workspace-geometry.jlc +share/sawfish/0.30.3/nokogiri/nokogiri-wm.jl +share/sawfish/0.30.3/nokogiri/nokogiri-wm.jlc +share/sawfish/0.30.3/sounds/activate.wav +share/sawfish/0.30.3/sounds/clicked.wav +share/sawfish/0.30.3/sounds/gameover.wav +share/sawfish/0.30.3/sounds/slide.wav +share/sawfish/0.30.3/sounds/toggled.wav +share/sawfish/0.30.3/themer.glade +share/sawfish/0.30.3/themes/absolute-e/README +share/sawfish/0.30.3/themes/absolute-e/README.gl +share/sawfish/0.30.3/themes/absolute-e/README.ja +share/sawfish/0.30.3/themes/absolute-e/README.pl +share/sawfish/0.30.3/themes/absolute-e/bar_clicked_active.png +share/sawfish/0.30.3/themes/absolute-e/bar_hilited_active.png +share/sawfish/0.30.3/themes/absolute-e/bar_normal.png +share/sawfish/0.30.3/themes/absolute-e/bar_normal_active.png +share/sawfish/0.30.3/themes/absolute-e/theme.jl +share/sawfish/0.30.3/themes/brushed-metal/README +share/sawfish/0.30.3/themes/brushed-metal/README.gl +share/sawfish/0.30.3/themes/brushed-metal/README.ja +share/sawfish/0.30.3/themes/brushed-metal/README.pl +share/sawfish/0.30.3/themes/brushed-metal/b1-.png +share/sawfish/0.30.3/themes/brushed-metal/b1.png +share/sawfish/0.30.3/themes/brushed-metal/b2-.png +share/sawfish/0.30.3/themes/brushed-metal/b2.png +share/sawfish/0.30.3/themes/brushed-metal/b3-.png +share/sawfish/0.30.3/themes/brushed-metal/b3.png +share/sawfish/0.30.3/themes/brushed-metal/b5-.png +share/sawfish/0.30.3/themes/brushed-metal/b5.png +share/sawfish/0.30.3/themes/brushed-metal/b6-.png +share/sawfish/0.30.3/themes/brushed-metal/b6.png +share/sawfish/0.30.3/themes/brushed-metal/b7-.png +share/sawfish/0.30.3/themes/brushed-metal/b7.png +share/sawfish/0.30.3/themes/brushed-metal/t1-.png +share/sawfish/0.30.3/themes/brushed-metal/t1-b.png +share/sawfish/0.30.3/themes/brushed-metal/t1.png +share/sawfish/0.30.3/themes/brushed-metal/t1b.png +share/sawfish/0.30.3/themes/brushed-metal/t2-.png +share/sawfish/0.30.3/themes/brushed-metal/t2.png +share/sawfish/0.30.3/themes/brushed-metal/t2s-.png +share/sawfish/0.30.3/themes/brushed-metal/t2s.png +share/sawfish/0.30.3/themes/brushed-metal/t3-.png +share/sawfish/0.30.3/themes/brushed-metal/t3-b.png +share/sawfish/0.30.3/themes/brushed-metal/t3.png +share/sawfish/0.30.3/themes/brushed-metal/t3b.png +share/sawfish/0.30.3/themes/brushed-metal/t4-.png +share/sawfish/0.30.3/themes/brushed-metal/t4-b.png +share/sawfish/0.30.3/themes/brushed-metal/t4.png +share/sawfish/0.30.3/themes/brushed-metal/t4b.png +share/sawfish/0.30.3/themes/brushed-metal/t5-.png +share/sawfish/0.30.3/themes/brushed-metal/t5-b.png +share/sawfish/0.30.3/themes/brushed-metal/t5.png +share/sawfish/0.30.3/themes/brushed-metal/t5b.png +share/sawfish/0.30.3/themes/brushed-metal/theme.jl +share/sawfish/0.30.3/themes/gradient/README +share/sawfish/0.30.3/themes/gradient/README.gl +share/sawfish/0.30.3/themes/gradient/README.ja +share/sawfish/0.30.3/themes/gradient/README.pl +share/sawfish/0.30.3/themes/gradient/as_close-b.png +share/sawfish/0.30.3/themes/gradient/as_close.png +share/sawfish/0.30.3/themes/gradient/as_min-b.png +share/sawfish/0.30.3/themes/gradient/as_min.png +share/sawfish/0.30.3/themes/gradient/theme.jl +share/sawfish/0.30.3/themes/gtk/README +share/sawfish/0.30.3/themes/gtk/README.gl +share/sawfish/0.30.3/themes/gtk/README.ja +share/sawfish/0.30.3/themes/gtk/README.pl +share/sawfish/0.30.3/themes/gtk/as_close-b.png +share/sawfish/0.30.3/themes/gtk/as_close.png +share/sawfish/0.30.3/themes/gtk/as_min-b.png +share/sawfish/0.30.3/themes/gtk/as_min.png +share/sawfish/0.30.3/themes/gtk/theme.jl +share/sawfish/0.30.3/themes/microGUI/README +share/sawfish/0.30.3/themes/microGUI/README.gl +share/sawfish/0.30.3/themes/microGUI/README.ja +share/sawfish/0.30.3/themes/microGUI/README.pl +share/sawfish/0.30.3/themes/microGUI/TODO +share/sawfish/0.30.3/themes/microGUI/bl.png +share/sawfish/0.30.3/themes/microGUI/bottom.png +share/sawfish/0.30.3/themes/microGUI/br.png +share/sawfish/0.30.3/themes/microGUI/close_active.png +share/sawfish/0.30.3/themes/microGUI/close_clicked.png +share/sawfish/0.30.3/themes/microGUI/close_normal.png +share/sawfish/0.30.3/themes/microGUI/left.png +share/sawfish/0.30.3/themes/microGUI/maximize_active.png +share/sawfish/0.30.3/themes/microGUI/maximize_clicked.png +share/sawfish/0.30.3/themes/microGUI/maximize_normal.png +share/sawfish/0.30.3/themes/microGUI/menu_active.png +share/sawfish/0.30.3/themes/microGUI/menu_clicked.png +share/sawfish/0.30.3/themes/microGUI/menu_normal.png +share/sawfish/0.30.3/themes/microGUI/minimize_active.png +share/sawfish/0.30.3/themes/microGUI/minimize_clicked.png +share/sawfish/0.30.3/themes/microGUI/minimize_normal.png +share/sawfish/0.30.3/themes/microGUI/right.png +share/sawfish/0.30.3/themes/microGUI/t_bottom.png +share/sawfish/0.30.3/themes/microGUI/t_bottom_left.png +share/sawfish/0.30.3/themes/microGUI/t_bottom_right.png +share/sawfish/0.30.3/themes/microGUI/t_close_active.png +share/sawfish/0.30.3/themes/microGUI/t_close_clicked.png +share/sawfish/0.30.3/themes/microGUI/t_close_normal.png +share/sawfish/0.30.3/themes/microGUI/t_left.png +share/sawfish/0.30.3/themes/microGUI/t_right.png +share/sawfish/0.30.3/themes/microGUI/t_top.png +share/sawfish/0.30.3/themes/microGUI/t_top_left.png +share/sawfish/0.30.3/themes/microGUI/t_top_right.png +share/sawfish/0.30.3/themes/microGUI/theme.jl +share/sawfish/0.30.3/themes/microGUI/top_blue.png +share/sawfish/0.30.3/themes/microGUI/top_blue_inactive.png +share/sawfish/0.30.3/themes/microGUI/top_curves.png +share/sawfish/0.30.3/themes/microGUI/top_curves_inactive.png +share/sawfish/0.30.3/themes/microGUI/top_grey.png +share/sawfish/0.30.3/themes/microGUI/top_left.png +share/sawfish/0.30.3/themes/microGUI/top_left_inactive.png +share/sawfish/0.30.3/themes/microGUI/top_left_inactive_s.png +share/sawfish/0.30.3/themes/microGUI/top_left_s.png +share/sawfish/0.30.3/themes/microGUI/top_right.png +share/sawfish/0.30.3/themes/microGUI/top_right_s.png +share/sawfish/0.30.3/themes/mono/README +share/sawfish/0.30.3/themes/mono/README.gl +share/sawfish/0.30.3/themes/mono/README.ja +share/sawfish/0.30.3/themes/mono/README.pl +share/sawfish/0.30.3/themes/mono/close-c.png +share/sawfish/0.30.3/themes/mono/close.png +share/sawfish/0.30.3/themes/mono/max-c.png +share/sawfish/0.30.3/themes/mono/max.png +share/sawfish/0.30.3/themes/mono/menu-c.png +share/sawfish/0.30.3/themes/mono/menu.png +share/sawfish/0.30.3/themes/mono/min-c.png +share/sawfish/0.30.3/themes/mono/min.png +share/sawfish/0.30.3/themes/mono/restore-c.png +share/sawfish/0.30.3/themes/mono/restore.png +share/sawfish/0.30.3/themes/mono/theme.jl +share/sawfish/0.30.3/themes/simple/README +share/sawfish/0.30.3/themes/simple/README.gl +share/sawfish/0.30.3/themes/simple/README.ja +share/sawfish/0.30.3/themes/simple/README.pl +share/sawfish/0.30.3/themes/simple/as_close-b.png +share/sawfish/0.30.3/themes/simple/as_close.png +share/sawfish/0.30.3/themes/simple/as_min-b.png +share/sawfish/0.30.3/themes/simple/as_min.png +share/sawfish/0.30.3/themes/simple/theme.jl +share/sawfish/0.30.3/themes/smaker/README +share/sawfish/0.30.3/themes/smaker/README.gl +share/sawfish/0.30.3/themes/smaker/README.ja +share/sawfish/0.30.3/themes/smaker/README.pl +share/sawfish/0.30.3/themes/smaker/bar_clicked_active.png +share/sawfish/0.30.3/themes/smaker/bar_hilited_active.png +share/sawfish/0.30.3/themes/smaker/bar_normal.png +share/sawfish/0.30.3/themes/smaker/bar_normal_active.png +share/sawfish/0.30.3/themes/smaker/close.png +share/sawfish/0.30.3/themes/smaker/close_inv.png +share/sawfish/0.30.3/themes/smaker/min.png +share/sawfish/0.30.3/themes/smaker/min_inv.png +share/sawfish/0.30.3/themes/smaker/theme.jl +@dirrm share/sawfish/0.30.3/lisp +@dirrm share/sawfish/0.30.3/locale/da/LC_MESSAGES +@dirrm share/sawfish/0.30.3/locale/da +@dirrm share/sawfish/0.30.3/locale/de/LC_MESSAGES +@dirrm share/sawfish/0.30.3/locale/de +@dirrm share/sawfish/0.30.3/locale/en_GB/LC_MESSAGES +@dirrm share/sawfish/0.30.3/locale/en_GB +@dirrm share/sawfish/0.30.3/locale/es/LC_MESSAGES +@dirrm share/sawfish/0.30.3/locale/es +@dirrm share/sawfish/0.30.3/locale/fi/LC_MESSAGES +@dirrm share/sawfish/0.30.3/locale/fi +@dirrm share/sawfish/0.30.3/locale/fr/LC_MESSAGES +@dirrm share/sawfish/0.30.3/locale/fr +@dirrm share/sawfish/0.30.3/locale/gl/LC_MESSAGES +@dirrm share/sawfish/0.30.3/locale/gl +@dirrm share/sawfish/0.30.3/locale/it/LC_MESSAGES +@dirrm share/sawfish/0.30.3/locale/it +@dirrm share/sawfish/0.30.3/locale/ja/LC_MESSAGES +@dirrm share/sawfish/0.30.3/locale/ja +@dirrm share/sawfish/0.30.3/locale/ko/LC_MESSAGES +@dirrm share/sawfish/0.30.3/locale/ko +@dirrm share/sawfish/0.30.3/locale/nl/LC_MESSAGES +@dirrm share/sawfish/0.30.3/locale/nl +@dirrm share/sawfish/0.30.3/locale/no/LC_MESSAGES +@dirrm share/sawfish/0.30.3/locale/no +@dirrm share/sawfish/0.30.3/locale/pl/LC_MESSAGES +@dirrm share/sawfish/0.30.3/locale/pl +@dirrm share/sawfish/0.30.3/locale/pt_PT/LC_MESSAGES +@dirrm share/sawfish/0.30.3/locale/pt_PT +@dirrm share/sawfish/0.30.3/locale/ru/LC_MESSAGES +@dirrm share/sawfish/0.30.3/locale/ru +@dirrm share/sawfish/0.30.3/locale/sl/LC_MESSAGES +@dirrm share/sawfish/0.30.3/locale/sl +@dirrm share/sawfish/0.30.3/locale/sv/LC_MESSAGES +@dirrm share/sawfish/0.30.3/locale/sv +@dirrm share/sawfish/0.30.3/locale/tr/LC_MESSAGES +@dirrm share/sawfish/0.30.3/locale/tr +@dirrm share/sawfish/0.30.3/locale/uk/LC_MESSAGES +@dirrm share/sawfish/0.30.3/locale/uk +@dirrm share/sawfish/0.30.3/locale +@dirrm share/sawfish/0.30.3/nokogiri/nokogiri-layouts +@dirrm share/sawfish/0.30.3/nokogiri/nokogiri-widgets +@dirrm share/sawfish/0.30.3/nokogiri +@dirrm share/sawfish/0.30.3/sounds +@dirrm share/sawfish/0.30.3/themes/absolute-e +@dirrm share/sawfish/0.30.3/themes/brushed-metal +@dirrm share/sawfish/0.30.3/themes/gradient +@dirrm share/sawfish/0.30.3/themes/gtk +@dirrm share/sawfish/0.30.3/themes/microGUI +@dirrm share/sawfish/0.30.3/themes/mono +@dirrm share/sawfish/0.30.3/themes/simple +@dirrm share/sawfish/0.30.3/themes/smaker +@dirrm share/sawfish/0.30.3/themes +@dirrm share/sawfish/0.30.3 @dirrm share/sawfish/sounds @dirrm share/sawfish/themes @dirrm share/sawfish |