This commit was manufactured by cvs2svn to create tag 'before_232278'.
diff --git a/others/org.eclipse.actf.examples.aibrowser-installer/.project b/others/org.eclipse.actf.examples.aibrowser-installer/.project
deleted file mode 100644
index 5d42377..0000000
--- a/others/org.eclipse.actf.examples.aibrowser-installer/.project
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
-	<name>org.eclipse.actf.examples.aibrowser-installer</name>
-	<comment></comment>
-	<projects>
-	</projects>
-	<buildSpec>
-	</buildSpec>
-	<natures>
-	</natures>
-</projectDescription>
diff --git a/others/org.eclipse.actf.examples.aibrowser-installer/InstallShield/.cvsignore b/others/org.eclipse.actf.examples.aibrowser-installer/InstallShield/.cvsignore
deleted file mode 100644
index cfd422f..0000000
--- a/others/org.eclipse.actf.examples.aibrowser-installer/InstallShield/.cvsignore
+++ /dev/null
@@ -1,3 +0,0 @@
-ExImage
-SingleImage
-String1033.txt
diff --git a/others/org.eclipse.actf.examples.aibrowser-installer/InstallShield/Script Files/.cvsignore b/others/org.eclipse.actf.examples.aibrowser-installer/InstallShield/Script Files/.cvsignore
deleted file mode 100644
index 021eb6b..0000000
--- a/others/org.eclipse.actf.examples.aibrowser-installer/InstallShield/Script Files/.cvsignore
+++ /dev/null
@@ -1,4 +0,0 @@
-Setup.dbg
-Setup.inx
-Setup.map
-setup.obs
diff --git a/others/org.eclipse.actf.examples.aibrowser-installer/InstallShield/Script Files/Setup.rul b/others/org.eclipse.actf.examples.aibrowser-installer/InstallShield/Script Files/Setup.rul
deleted file mode 100644
index 482a5c9..0000000
--- a/others/org.eclipse.actf.examples.aibrowser-installer/InstallShield/Script Files/Setup.rul
+++ /dev/null
@@ -1,145 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 IBM Corporation and Others
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- *    Hisashi MIYASHITA - initial API and implementation
- *******************************************************************************/
-//
-// Include Ifx.h for built-in InstallScript function prototypes, for Windows 
-// Installer API function prototypes and constants, and to declare code for 
-// the OnBegin and OnEnd events.
-#include "ifx.h"
-
-#define JAWS_REGROOT "SOFTWARE\\Freedom Scientific\\JAWS"
-#define JAWS_APPCONFIGDIR "Freedom Scientific\\JAWS"
-#define JAWS_SCRIPTDIR "SETTINGS"
-#define APPLICATION_NAME "aiBrowser"
-
-// The keyword export identifies MyFunction() as an entry-point function.
-// The argument it accepts must be a handle to the Installer database.
-export prototype DetectJaws(HWND);  
-export prototype JawsScriptInstall(HWND);  
-export prototype CleanupInstallDirectory(HWND);  
-
-prototype SetupJawsScript(STRING, STRING);  
-prototype InstallJawsScript(STRING, STRING, STRING);  
-prototype CopyJawsScript(STRING, STRING, STRING);  
-prototype CompileJawsScript(STRING, STRING);  
-
-// Functions
-
-function DetectJaws(hMSI)
-    NUMBER result;
-    STRING installFlag;
-begin
-    result = RegDBSetDefaultRoot(HKEY_LOCAL_MACHINE);
-   	if (RegDBQueryKeyCount(JAWS_REGROOT, REGDB_KEYS) > 1) then
-	    result = MsiSetProperty(hMSI, "JAWSINSTALLED", "True"); 
-	    result = 1024;
-		MsiGetProperty(hMSI, "JAWSINSTALLED", installFlag, result);
-    	// SprintfBox(INFORMATION, "Debug-DetectJaws", "%s", installFlag);
-   	endif;
-end;
-
-function JawsScriptInstall(hMSI)   
-    NUMBER result;
-    NUMBER idx;
-    LIST subKeys;
-    STRING key;
-    STRING installFlag;
-begin
-	//result = 1024;
-	//MsiGetProperty(hMSI, "JAWSINSTALLED", installFlag, result);
-    // SprintfBox(INFORMATION, "Debug-JawsScriptInstall-0", "%s", installFlag);
-	//if (installFlag != "True") then
-	//	return FALSE;
-	//endif;
-	//result = 1024;
-	//MsiGetProperty(ISMSI_HANDLE, "JAWSSCRIPTINSTALL", installFlag, result);
-    //// SprintfBox(INFORMATION, "Debug-JawsScriptInstall-0", "%s", installFlag);
-    //if (installFlag != "1") then
-    //	return FALSE;
-   	//endif;
-    
-    result = RegDBSetDefaultRoot(HKEY_LOCAL_MACHINE);
-    subKeys = ListCreate(STRINGLIST);
-   	RegDBQueryKey(JAWS_REGROOT, REGDB_KEYS, subKeys);
-   	
-	result = ListGetFirstString(subKeys, key); 
-    while (result != END_OF_LIST) 
-        // SprintfBox(INFORMATION, "Debug-JawsScriptInstall", "%s", key); 
-        SetupJawsScript(key, JAWS_REGROOT + "\\" + key);
-        result = ListGetNextString(subKeys, key);
-    endwhile;  
-end;
-
-function SetupJawsScript(key, fullkeypath)
-	NUMBER result;
-	NUMBER nvSize, nType;
-	STRING dir;
-	STRING locale;
-	STRING jawsdir;
-	LIST dirs;
-begin
-	if (RegDBGetKeyValueEx(fullkeypath, "Target", nType, jawsdir, nvSize) < 0) then
-		return FALSE;
-	endif;
-
-	dir = FOLDER_APPDATA + "\\" + JAWS_APPCONFIGDIR + "\\" + key + "\\" + JAWS_SCRIPTDIR;
-    // SprintfBox (INFORMATION, "Debug-SetupJawsScript-0", "%s", dir); 
-	dirs = ListCreate(STRINGLIST);
-	FindAllDirs(dir, EXCLUDE_SUBDIR, dirs);
-	
-	result = ListGetFirstString(dirs, locale);
-    while (result != END_OF_LIST) 
-        // SprintfBox (INFORMATION, "Debug-SetupJawsScript", "%s", locale); 
-        InstallJawsScript(locale, APPLICATION_NAME, jawsdir);
-        result = ListGetNextString(dirs, locale);
-    endwhile;
-    return TRUE;
-end;
-
-function InstallJawsScript(dir, execname, jawsdir)
-	NUMBER result;
-	STRING target, installdir;
-begin
-	target = dir + "\\" + execname;
-	result = 4096;
-	MsiGetProperty(ISMSI_HANDLE, "CustomActionData", installdir, result);
-	//SprintfBox (INFORMATION, "Debug-InstallJawsScript", "%s %s %s", SRCDIR, targetdir, TARGETDIR); 
-	
-	CopyJawsScript(installdir, target, ".jcf");
-	CopyJawsScript(installdir, target, ".jkm");
-	CopyJawsScript(installdir, target, ".jsh");
-	CopyJawsScript(installdir, target, ".jss");
-	CompileJawsScript(jawsdir, target + ".jss");
-end;
-
-function CopyJawsScript(installdir, target, suffix)
-begin
-	CopyFile(installdir + "\\Scripts\\Jaws\\aiBrowser" + suffix, target + suffix);
-end;
-
-function CompileJawsScript(jawsdir, target)
-    STRING scompileName;
-begin
-	scompileName = "\"" + jawsdir + "\\" + "scompile.exe" + "\"";
-	target = "\"" + target + "\"";
-    // SprintfBox (INFORMATION, "Debug-CompileJawsScript", "%s %s", scompileName, target); 
-	LaunchApplication("", scompileName + " " + target, "", SW_HIDE,
-	                  LAAW_PARAMETERS.nTimeOut, LAAW_OPTION_WAIT | LAAW_OPTION_CHANGEDIRECTORY);	
-end;
-
-function CleanupInstallDirectory(hMSI)
-	NUMBER result;
-	STRING installdir;
-begin
-	result = 4096;
-	MsiGetProperty(ISMSI_HANDLE, "CustomActionData", installdir, result);
-	
-	DeleteDir(INSTALLDIR, ALLCONTENTS);
-end;
diff --git a/others/org.eclipse.actf.examples.aibrowser-installer/InstallShield/aiBrowserInstaller.ism b/others/org.eclipse.actf.examples.aibrowser-installer/InstallShield/aiBrowserInstaller.ism
deleted file mode 100644
index 801738a..0000000
--- a/others/org.eclipse.actf.examples.aibrowser-installer/InstallShield/aiBrowserInstaller.ism
+++ /dev/null
Binary files differ
diff --git a/others/org.eclipse.actf.examples.aibrowser-installer/readme.txt b/others/org.eclipse.actf.examples.aibrowser-installer/readme.txt
deleted file mode 100644
index da70ab2..0000000
--- a/others/org.eclipse.actf.examples.aibrowser-installer/readme.txt
+++ /dev/null
@@ -1,26 +0,0 @@
-############################################################################
-# Copyright (c) 2007, 2008 IBM Corporation and others.
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License v1.0
-# which accompanies this distribution, and is available at
-# http://www.eclipse.org/legal/epl-v10.html
-#
-# Contributors:
-#     IBM Corporation - initial Documentation
-############################################################################
-
-1. Download this project into the workspace that has aiBrowser plugins.
-
-2. Export aiBrowser into C:\build\aiBrowser directory by using 
-   Eclipse Product export wizard.
-
- ** Before export, remove "eclipse" folder in C:\build\aiBrowser.
-   
-3. Run setup.bat from the Command Prompt (or Cygwin shell)
-
-$ cd <eclipse_workspace>\org.eclipse.actf.examples.aibrowser-installer
-$ setup.bat
-
- ** setup.bat can't work well by double clicking from the Eclipse workspace
- 
-4. Build installer by using aiBrowserInstaller.ism (InstallShield)
diff --git a/others/org.eclipse.actf.examples.aibrowser-installer/setup.bat b/others/org.eclipse.actf.examples.aibrowser-installer/setup.bat
deleted file mode 100644
index 6fc444e..0000000
--- a/others/org.eclipse.actf.examples.aibrowser-installer/setup.bat
+++ /dev/null
@@ -1,27 +0,0 @@
-::############################################################################
-::# Copyright (c) 2007, 2008 IBM Corporation and others.
-::# All rights reserved. This program and the accompanying materials
-::# are made available under the terms of the Eclipse Public License v1.0
-::# which accompanies this distribution, and is available at
-::# http://www.eclipse.org/legal/epl-v10.html
-::#
-::# Contributors:
-::#     IBM Corporation - initial API and implementation
-::############################################################################
-REM aiBrowser installer setup script
-::
-setlocal
-if not defined BUILDDIR set BUILDDIR=c:\build\aiBrowser
-
-copy /Y "..\org.eclipse.actf.examples.aibrowser-feature\epl-v10.html" %BUILDDIR%\eclipse
-copy /Y "..\org.eclipse.actf.examples.aibrowser-feature\license.html" %BUILDDIR%\eclipse\notice.html
-
-echo osgi.configuration.area=@user.home/Application Data/ACTF/aiBrowser/1.0/configuration >> %BUILDDIR%\eclipse\configuration\config.ini
-echo osgi.instance.area=@user.home/Application Data/ACTF/aiBrowser/1.0/workspace >> %BUILDDIR%\eclipse\configuration\config.ini
-
-mkdir %BUILDDIR%\Scripts\jaws
-copy /Y "..\org.eclipse.actf.ai.screenreader.jaws\script\*" %BUILDDIR%\Scripts\jaws
-
-mkdir %BUILDDIR%\img
-copy /Y "..\org.eclipse.actf.examples.aibrowser\splash.bmp" %BUILDDIR%\img
-copy /Y "..\org.eclipse.actf.examples.aibrowser\icons\aiBrowser.ico" %BUILDDIR%\img