From fc263459c079090c2913383290802177aaa870ae Mon Sep 17 00:00:00 2001 From: billh Date: Fri, 11 Jan 2002 11:52:11 +0000 Subject: [PATCH] Added demo script in test dir. Don't use without reading it! git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@213 e2bd861d-eb25-0410-b326-f6ed22b6b98c --- ChangeLog | 4 ++++ test/demo.csh | 30 ++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100755 test/demo.csh diff --git a/ChangeLog b/ChangeLog index e92bab4..3c38a93 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2002-01-11 Bill Haneman + * test/demo.csh: + Checked in a demo script, which requires editing before use! + Proceed with caution. + * libspi/value.h: Fixed typo in header which was redefining SPI_ACTION_CLASS. diff --git a/test/demo.csh b/test/demo.csh new file mode 100755 index 0000000..22943c6 --- /dev/null +++ b/test/demo.csh @@ -0,0 +1,30 @@ +#!/bin/csh +echo This demo requires the festival synthesis system, and modules +echo 'gail'. It also assumes (for the moment) that the gnome-2.0 +echo libraries are in /opt/gnome-2.0/lib, gnome-2.0 executables are in +echo /opt/gnome-2.0/bin, and that festival is installed in +echo /usr/share/festival/festival. +echo ***WARNING*** this demo calls bonobo-slay and pkill, so it +echo may kill a number of existing processes/applications on your system. +echo you are advised to read and edit the file before use! +setenv PATH /opt/gnome-2.0/bin:/bin:/usr/bin:/home/billh/gnome/at-spi/test/.libs:/usr/share/festival/festival/bin +setenv LD_LIBRARY_PATH /opt/gnome-2.0/lib +bonobo-slay +pkill festival_server +pkill festival +pkill sleep +pkill magnifier +pkill simple-at +unsetenv GTK_MODULES +setenv MAGNIFIER 1 +setenv FESTIVAL 1 +festival_server & +simple-at & +setenv GTK_MODULES "gail:ferret:atk-bridge" +gtk-demo +pkill festival_server +pkill festival +pkill sleep +pkill magnifier +pkill simple-at + -- 2.7.4