From 4e9d8eefe2371942ddfee13aaa1e90351e53a79c Mon Sep 17 00:00:00 2001 From: Marc-André Lureau Date: Sat, 28 Jun 2008 22:30:03 +0300 Subject: Change my email --- spec/sound-naming-spec.xml | 2 +- spec/sound-theme-spec.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/sound-naming-spec.xml b/spec/sound-naming-spec.xml index a77ada8..3d3efe2 100644 --- a/spec/sound-naming-spec.xml +++ b/spec/sound-naming-spec.xml @@ -14,7 +14,7 @@ Sound Naming Specification
- marc-andre.lureau@nokia.com + marcandre.lureau@gmail.com
diff --git a/spec/sound-theme-spec.xml b/spec/sound-theme-spec.xml index da5eeb9..e5a14ba 100644 --- a/spec/sound-theme-spec.xml +++ b/spec/sound-theme-spec.xml @@ -14,7 +14,7 @@ Sound Theme Specification
- marc-andre.lureau@nokia.com + marcandre.lureau@gmail.com
-- cgit From 2c7c18962220696a9dea668ac8abbcba27598131 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 12 Jun 2008 16:33:22 +0200 Subject: scroll events MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Heya! A few new events, for scrolling. (And I also sneaked in some fix for the Makefile I sent you earlier. Should make this work on non-Fedora) Lennart Signed-off-by: Lennart Poettering Signed-off-by: Marc-André Lureau --- spec/Makefile | 2 +- spec/sound-naming-spec.xml | 48 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+), 1 deletion(-) diff --git a/spec/Makefile b/spec/Makefile index 1c445fb..b8d5567 100644 --- a/spec/Makefile +++ b/spec/Makefile @@ -1,7 +1,7 @@ DOCS = sound-naming-spec.html sound-theme-spec.html %.html: %.xml - xsltproc /usr/share/sgml/docbook/xsl-stylesheets-1.73.2/xhtml/docbook.xsl $< > $@ + xsltproc /usr/share/sgml/docbook/xsl-stylesheets/xhtml/docbook.xsl $< > $@ all: $(DOCS) diff --git a/spec/sound-naming-spec.xml b/spec/sound-naming-spec.xml index 3d3efe2..ec7aa88 100644 --- a/spec/sound-naming-spec.xml +++ b/spec/sound-naming-spec.xml @@ -837,6 +837,54 @@ usage. A text completion was attempted and the list of available options reached the end and completion started from the beginning. + + scroll-up + + Some window was scrolled up. + + + + scroll-down + + Some window was scrolled down. + + + + scroll-left + + Some window was scrolled left. + + + + scroll-right + + Some window was scrolled right. + + + + scroll-up-end + + Some window was scrolled up and reached the end of the scrollbar. + + + + scroll-down-end + + Some window was scrolled down and reached the end of the scrollbar. + + + + scroll-left-end + + Some window was scrolled left and reached the end of the scrollbar. + + + + scroll-right-end + + Some window was scrolled right and reached the end of the scrollbar. + + audio-volume-change -- cgit From 694b7e98bad38552d22c3dd45543a7e8bc403590 Mon Sep 17 00:00:00 2001 From: Marc-André Lureau Date: Sat, 28 Jun 2008 22:50:16 +0300 Subject: Use xsl catalog to figure out the docbook XSL location --- spec/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/Makefile b/spec/Makefile index b8d5567..c53e3e9 100644 --- a/spec/Makefile +++ b/spec/Makefile @@ -1,7 +1,7 @@ DOCS = sound-naming-spec.html sound-theme-spec.html %.html: %.xml - xsltproc /usr/share/sgml/docbook/xsl-stylesheets/xhtml/docbook.xsl $< > $@ + xsltproc http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl $< > $@ all: $(DOCS) -- cgit