git: c16cf4baec98 - main - www/sahi: Remove expired port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 30 Sep 2024 19:21:20 UTC
The branch main has been updated by rene: URL: https://cgit.FreeBSD.org/ports/commit/?id=c16cf4baec98402e35265bb9d64701734dc37d14 commit c16cf4baec98402e35265bb9d64701734dc37d14 Author: Rene Ladan <rene@FreeBSD.org> AuthorDate: 2024-09-30 19:21:14 +0000 Commit: Rene Ladan <rene@FreeBSD.org> CommitDate: 2024-09-30 19:21:14 +0000 www/sahi: Remove expired port 2024-09-30 www/sahi: Abandonware and outdated, newer versions requires users to purchase a license and current versions refers to Java 1.5 --- MOVED | 1 + www/Makefile | 1 - www/sahi/Makefile | 92 ---- www/sahi/distinfo | 2 - www/sahi/files/patch-bin__web.sh | 6 - .../files/patch-config__browser_types__linux.xml | 32 -- www/sahi/files/patch-config__os.properties | 10 - www/sahi/files/patch-config__sahi.properties | 11 - www/sahi/files/sahi.sh.in | 20 - www/sahi/pkg-descr | 9 - www/sahi/pkg-message | 8 - www/sahi/pkg-plist | 472 --------------------- 12 files changed, 1 insertion(+), 663 deletions(-) diff --git a/MOVED b/MOVED index d9f07b277f4c..b33f9a9d472e 100644 --- a/MOVED +++ b/MOVED @@ -3510,3 +3510,4 @@ sysutils/bacula11-docs||2024-09-30|Has expired: Unsupported. Please migrate to b sysutils/bacula11-server||2024-09-30|Has expired: Unsupported. Please migrate to bacula15-server net-mgmt/nagios-check_bacula11||2024-09-30|Has expired: Unsupported. Please migrate to bacula15-server sysutils/bhyve+||2024-09-30|Has expired: EOLed upstream +www/sahi||2024-09-30|Has expired: Abandonware and outdated, newer versions requires users to purchase a license and current versions refers to Java 1.5 diff --git a/www/Makefile b/www/Makefile index 5ebf9ebbfbbe..32f65d8f5af0 100644 --- a/www/Makefile +++ b/www/Makefile @@ -2331,7 +2331,6 @@ SUBDIR += rustypaste-cli SUBDIR += s SUBDIR += sabredav - SUBDIR += sahi SUBDIR += samdruckerserver SUBDIR += sarg SUBDIR += scloader diff --git a/www/sahi/Makefile b/www/sahi/Makefile deleted file mode 100644 index e7d5a3d9d682..000000000000 --- a/www/sahi/Makefile +++ /dev/null @@ -1,92 +0,0 @@ -PORTNAME= sahi -PORTVERSION= 3.5.${SAHI_BUILD} -PORTREVISION= 3 -CATEGORIES= www -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-v${PORTVERSION:R:R:R:S,.,,}/${SAHI_BUILD:S,.,,g}/ -DISTNAME= ${PORTNAME}_${SAHI_BUILD:S,.,,g} - -MAINTAINER= nivit@FreeBSD.org -COMMENT= Web automation and testing tool -WWW= http://www.sahi.co.in/w/sahi - -LICENSE= APACHE20 MPL11 -LICENSE_COMB= multi - -DEPRECATED= Abandonware and outdated, newer versions requires users to purchase a license and current versions refers to Java 1.5 -EXPIRATION_DATE=2024-09-30 - -RUN_DEPENDS= xdg-open:devel/xdg-utils - -DATADIR= ${JAVASHAREDIR}/${PORTNAME} - -JAVA_OS= native -JAVA_RUN= yes - -NO_BUILD= yes - -OPTIONS_DEFINE= DOCS -OPTIONS_DEFAULT= CHROME -OPTIONS_SINGLE= BROWSER -OPTIONS_SINGLE_BROWSER= CHROME FIREFOX - -CHROME_DESC= Use Chrome as default browser -FIREFOX_DESC= Use Firefox as default browser - -USES= dos2unix zip -DOS2UNIX_GLOB= linux.xml os.properties sahi.properties - -.include <bsd.port.options.mk> - -SAHI_BUILD= 2011.07.19 - -USE_JAVA= yes - -WRKSRC= ${WRKDIR}/sahi - -REINPLACE_ARGS= -i '' - -SUB_FILES= ${PORTNAME}.sh -SUB_LIST= BROWSER=${BROWSER} JAVA_HOME=${JAVA_HOME} - -post-patch: - @${FIND} ${WRKSRC} -type f \( -name "*.orig" -or -name "*.bat" \) -delete - @${FIND} ${WRKSRC} -type f \( -name "*.sh" -or -name "linux.xml" \ - -or -name "sahi.properties" \) -print0 \ - | ${XARGS} -0 ${REINPLACE_CMD} -E \ - -e 's,%%CHROME%%,${LOCALBASE}/bin/chrome,g' \ - -e 's,%%DATADIR%%,${DATADIR},g' \ - -e 's,%%FIREFOX%%,${LOCALBASE}/bin/firefox,g' \ - -e 's,%%JAVA%%,${JAVA},g' \ - -e 's,%%JAVA_KEYTOOL%%,${JAVA_KEYTOOL},g' \ - -e 's,%%OPERA%%,${LOCALBASE}/bin/opera,g' \ - -e 's,(SAHI_HOME=).*$$,\1${DATADIR},g' \ - -e 's,(export (SAHI_)?USERDATA_DIR=).*$$,if [ -z "$${SAHI_USERDATA_DIR}" ]; then \1\$${HOME}/.sahi; fi,g' \ - -e 's,^(\#!/bin/)ba(sh)$$,\1\2,g' - -do-install: - @${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${STAGEDIR}${PREFIX}/bin/${PORTNAME} - @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} - - @${CP} ${STAGEDIR}${DATADIR}/config/browser_types/linux.xml ${STAGEDIR}${DATADIR}/userdata/config/browser_types.xml -.for d in bin userdata/bin - @${CHMOD} ${BINMODE} ${STAGEDIR}${DATADIR}/${d}/* -.endfor -.if ${PORT_OPTIONS:MDOCS} - @${MV} ${STAGEDIR}${DATADIR}/docs ${STAGEDIR}${DOCSDIR} -.else - @${RM} -r ${STAGEDIR}${DATADIR}/docs -.endif - -.include <bsd.port.pre.mk> - -.if ${PORT_OPTIONS:MCHROME} -BROWSER= chrome -RUN_DEPENDS+= chrome:www/chromium -.endif - -.if ${PORT_OPTIONS:MFIREFOX} -BROWSER= firefox -RUN_DEPENDS+= firefox:www/firefox -.endif - -.include <bsd.port.post.mk> diff --git a/www/sahi/distinfo b/www/sahi/distinfo deleted file mode 100644 index 73d2fbfe5589..000000000000 --- a/www/sahi/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (sahi_20110719.zip) = f4c2a1aaee4856a9f3403e24ca4d7eb4aa10b4285199f0df77416855455f48e5 -SIZE (sahi_20110719.zip) = 2779326 diff --git a/www/sahi/files/patch-bin__web.sh b/www/sahi/files/patch-bin__web.sh deleted file mode 100644 index 46f5f5548f9b..000000000000 --- a/www/sahi/files/patch-bin__web.sh +++ /dev/null @@ -1,6 +0,0 @@ ---- ./bin/web.sh.orig 2012-08-04 23:17:56.000000000 +0200 -+++ ./bin/web.sh 2012-08-04 23:18:19.000000000 +0200 -@@ -1,2 +1,2 @@ --java -cp ../lib/sahi.jar net.sf.sahi.WebServer -+%%JAVA%% -cp %%DATADIR%%/lib/sahi.jar net.sf.sahi.WebServer - diff --git a/www/sahi/files/patch-config__browser_types__linux.xml b/www/sahi/files/patch-config__browser_types__linux.xml deleted file mode 100644 index 7f63daa18f07..000000000000 --- a/www/sahi/files/patch-config__browser_types__linux.xml +++ /dev/null @@ -1,32 +0,0 @@ ---- ./config/browser_types/linux.xml.orig 2012-08-06 23:58:57.000000000 +0200 -+++ ./config/browser_types/linux.xml 2012-08-07 00:00:07.000000000 +0200 -@@ -3,7 +3,7 @@ - <name>firefox</name> - <displayName>Firefox</displayName> - <icon>firefox.png</icon> -- <path>/usr/bin/firefox</path> -+ <path>%%FIREFOX%%</path> - <options>-profile "$userDir/browser/ff/profiles/sahi$threadNo" -no-remote</options> - <processName>firefox</processName> - <capacity>5</capacity> -@@ -13,9 +13,18 @@ - <name>chrome</name> - <displayName>Chrome</displayName> - <icon>chrome.png</icon> -- <path>/usr/bin/google-chrome</path> -+ <path>%%CHROME%%</path> - <options>--user-data-dir=$userDir/browser/chrome/profiles/sahi$threadNo --proxy-server=localhost:9999 --disable-popup-blocking</options> - <processName>chrome</processName> - <capacity>5</capacity> - </browserType> --</browserTypes> -+ -+ <browserType> -+ <name>opera</name> -+ <displayName>Opera</displayName> -+ <icon>opera.png</icon> -+ <path>%%OPERA%%</path> -+ <options>-personaldir $userDir/browser/opera/profiles/sahi$threadNo</options> -+ <processName>opera</processName> -+ </browserType> -+ </browserTypes> diff --git a/www/sahi/files/patch-config__os.properties b/www/sahi/files/patch-config__os.properties deleted file mode 100644 index 4423454ce74a..000000000000 --- a/www/sahi/files/patch-config__os.properties +++ /dev/null @@ -1,10 +0,0 @@ ---- ./config/os.properties.orig 2012-08-05 18:28:12.000000000 +0200 -+++ ./config/os.properties 2012-08-05 18:28:19.000000000 +0200 -@@ -29,6 +29,7 @@ - SunOS=linux - HP-UX=linux - AIX=linux -+FreeBSD=linux - - # For windows XP - xp.processhelper.pid_list_cmd=tasklist /FI "IMAGENAME eq $imageName" /NH /FO TABLE diff --git a/www/sahi/files/patch-config__sahi.properties b/www/sahi/files/patch-config__sahi.properties deleted file mode 100644 index 66bb556c7e87..000000000000 --- a/www/sahi/files/patch-config__sahi.properties +++ /dev/null @@ -1,11 +0,0 @@ ---- ./config/sahi.properties.orig 2012-08-05 18:28:08.000000000 +0200 -+++ ./config/sahi.properties 2012-08-05 18:28:42.000000000 +0200 -@@ -86,7 +86,7 @@ - # This is generally in the <java_home>/bin directory - # On windows, keytool path, if specified, should have double backslashes without encompassing quotes. Eg. - # keytool.path=D:\\java path\\bin\\keytool.exe --keytool.path=keytool -+keytool.path=%%JAVA_KEYTOOL%% - - http.keep_alive=true - diff --git a/www/sahi/files/sahi.sh.in b/www/sahi/files/sahi.sh.in deleted file mode 100644 index fcdf625e47b7..000000000000 --- a/www/sahi/files/sahi.sh.in +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh -if [ ! -d ${HOME}/.sahi ] && [ -z "${SAHI_USERDATA_DIR}" ]; then - cp -r %%DATADIR%%/userdata ${HOME}/.sahi - chmod u+w ${HOME}/.sahi/config/* - export SAHI_USERDATA_DIR=${HOME}/.sahi -fi - -if [ -z "${BROWSER}" ]; then - export BROWSER=%%BROWSER%% -fi - -if [ -z "${http_proxy}" ]; then - export http_proxy=http://localhost:9999 -fi - -if [ -z "${SAHI_USERDATA_DIR}" ]; then - export SAHI_USERDATA_DIR=${HOME}/.sahi -fi - -exec /usr/bin/env JAVA_HOME=%%JAVA_HOME%% ${SAHI_USERDATA_DIR}/bin/start_dashboard.sh diff --git a/www/sahi/pkg-descr b/www/sahi/pkg-descr deleted file mode 100644 index 9c7afc8291a3..000000000000 --- a/www/sahi/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Sahi is an automation tool to test web applications. Sahi injects -javascript into web pages using a proxy and the javascript helps -automate web applications. - -Sahi is a tester friendly tool. It abstracts out most difficulties -that testers face while automating web applications. Some salient -features include excellent recorder, platform and browser independence, -no XPaths, no waits, multithreaded playback, excellent Java interaction -and inbuilt reporting. diff --git a/www/sahi/pkg-message b/www/sahi/pkg-message deleted file mode 100644 index f55ce2780f44..000000000000 --- a/www/sahi/pkg-message +++ /dev/null @@ -1,8 +0,0 @@ -[ -{ type: install - message: <<EOM - To bring up the Sahi Controller use CTRL-ALT-DblClick on the page - you are visiting with your browser -EOM -} -] diff --git a/www/sahi/pkg-plist b/www/sahi/pkg-plist deleted file mode 100644 index 9e19e4384405..000000000000 --- a/www/sahi/pkg-plist +++ /dev/null @@ -1,472 +0,0 @@ -bin/sahi -%%DATADIR%%/NOTICE.htm -%%DATADIR%%/NOTICE.txt -%%DATADIR%%/batch_runners/README.txt -%%DATADIR%%/batch_runners/ant/sample.properties -%%DATADIR%%/batch_runners/ant/sample.xml -%%DATADIR%%/batch_runners/ruby/default_props.rb -%%DATADIR%%/batch_runners/ruby/sahi.rake -%%DATADIR%%/bin/dashboard.sh -%%DATADIR%%/bin/sahi.sh -%%DATADIR%%/bin/web.sh -%%DATADIR%%/config/browser_types/linux.xml -%%DATADIR%%/config/browser_types/mac.xml -%%DATADIR%%/config/browser_types/win32.xml -%%DATADIR%%/config/browser_types/win64.xml -%%DATADIR%%/config/ff_profile_template/prefs.js -%%DATADIR%%/config/inject_bottom.txt -%%DATADIR%%/config/inject_top.txt -%%DATADIR%%/config/license.txt -%%DATADIR%%/config/license_html.txt -%%DATADIR%%/config/mime-types.mapping -%%DATADIR%%/config/normal_functions.txt -%%DATADIR%%/config/os.properties -%%DATADIR%%/config/proxy.pac -%%DATADIR%%/config/sahi.properties -%%DATADIR%%/config/scheduler.properties -%%DATADIR%%/config/scheduler_functions.txt -%%DATADIR%%/config/ssl.txt -%%DATADIR%%/config/userdata_template/config/download_contenttypes.txt -%%DATADIR%%/config/userdata_template/config/download_urls.txt -%%DATADIR%%/config/userdata_template/config/exclude_inject.txt -%%DATADIR%%/config/userdata_template/config/jira.properties -%%DATADIR%%/config/userdata_template/config/log.properties -%%DATADIR%%/config/userdata_template/config/userdata.properties -%%DATADIR%%/config/version.txt -%%DATADIR%%/demo.xml -%%PORTDOCS%%%%DOCSDIR%%/README.txt -%%PORTDOCS%%%%DOCSDIR%%/TODO.txt -%%PORTDOCS%%%%DOCSDIR%%/ant.html -%%PORTDOCS%%%%DOCSDIR%%/apis.html -%%PORTDOCS%%%%DOCSDIR%%/changelog.txt -%%PORTDOCS%%%%DOCSDIR%%/contributors.txt -%%PORTDOCS%%%%DOCSDIR%%/devnotes.html -%%PORTDOCS%%%%DOCSDIR%%/extend.html -%%PORTDOCS%%%%DOCSDIR%%/ide.html -%%PORTDOCS%%%%DOCSDIR%%/index.html -%%PORTDOCS%%%%DOCSDIR%%/install.html -%%PORTDOCS%%%%DOCSDIR%%/java_client/net/sf/sahi/client/Browser.html -%%PORTDOCS%%%%DOCSDIR%%/licenses/apc/LICENSE.txt -%%PORTDOCS%%%%DOCSDIR%%/licenses/rhino/LICENSE.txt -%%PORTDOCS%%%%DOCSDIR%%/licenses/sahi/license.htm -%%PORTDOCS%%%%DOCSDIR%%/licenses/sahi/license.txt -%%PORTDOCS%%%%DOCSDIR%%/problems.html -%%PORTDOCS%%%%DOCSDIR%%/props.html -%%PORTDOCS%%%%DOCSDIR%%/releasenotes.txt -%%PORTDOCS%%%%DOCSDIR%%/sahi.TCL -%%PORTDOCS%%%%DOCSDIR%%/sahi.css -%%PORTDOCS%%%%DOCSDIR%%/sahi.jpg -%%PORTDOCS%%%%DOCSDIR%%/sahi.syn -%%PORTDOCS%%%%DOCSDIR%%/sahi.xml -%%PORTDOCS%%%%DOCSDIR%%/sahi_architecture.gif -%%PORTDOCS%%%%DOCSDIR%%/sahi_controller.jpg -%%PORTDOCS%%%%DOCSDIR%%/sahi_playback_help.jpg -%%PORTDOCS%%%%DOCSDIR%%/sahi_recorder_help.htm -%%PORTDOCS%%%%DOCSDIR%%/sahi_recorder_help.jpg -%%PORTDOCS%%%%DOCSDIR%%/sahi_recording.jpg -%%PORTDOCS%%%%DOCSDIR%%/sahi_textpad.zip -%%PORTDOCS%%%%DOCSDIR%%/screenshots.html -%%PORTDOCS%%%%DOCSDIR%%/scripting.html -%%PORTDOCS%%%%DOCSDIR%%/ssl.txt -%%PORTDOCS%%%%DOCSDIR%%/ssl_alert.gif -%%PORTDOCS%%%%DOCSDIR%%/ssl_alert.htm -%%PORTDOCS%%%%DOCSDIR%%/ssl_alert.html -%%PORTDOCS%%%%DOCSDIR%%/timeout.html -%%PORTDOCS%%%%DOCSDIR%%/using.html -%%DATADIR%%/editors/notepad++/README.txt -%%DATADIR%%/editors/notepad++/plugin/APIs/sahi.xml -%%DATADIR%%/editors/notepad++/sahi_syn.xml -%%DATADIR%%/editors/textpad/README.txt -%%DATADIR%%/editors/textpad/sahi.TCL -%%DATADIR%%/editors/textpad/sahi.syn -%%DATADIR%%/extlib/README.txt -%%DATADIR%%/extlib/apc/commons-codec-1.3.jar -%%DATADIR%%/extlib/rhino/js.jar -%%DATADIR%%/htdocs/404.htm -%%DATADIR%%/htdocs/demo/EventViewer.htm -%%DATADIR%%/htdocs/demo/RegExp_toString_Fix.htm -%%DATADIR%%/htdocs/demo/add.gif -%%DATADIR%%/htdocs/demo/ajax1.htm -%%DATADIR%%/htdocs/demo/ajax1iframes.htm -%%DATADIR%%/htdocs/demo/ajax5xx.htm -%%DATADIR%%/htdocs/demo/ajaxResponse1.htm -%%DATADIR%%/htdocs/demo/alertTest.htm -%%DATADIR%%/htdocs/demo/base.html -%%DATADIR%%/htdocs/demo/blank.htm -%%DATADIR%%/htdocs/demo/callee.htm -%%DATADIR%%/htdocs/demo/checkbox_onchange.htm -%%DATADIR%%/htdocs/demo/clickCombo.htm -%%DATADIR%%/htdocs/demo/clicks.htm -%%DATADIR%%/htdocs/demo/common.js -%%DATADIR%%/htdocs/demo/confirmTest.htm -%%DATADIR%%/htdocs/demo/containTest.htm -%%DATADIR%%/htdocs/demo/count.htm -%%DATADIR%%/htdocs/demo/cryllic_lang.htm -%%DATADIR%%/htdocs/demo/css_selector.htm -%%DATADIR%%/htdocs/demo/diffDomain.htm -%%DATADIR%%/htdocs/demo/diffDomainExt.htm -%%DATADIR%%/htdocs/demo/diffDomain_dummy1.htm -%%DATADIR%%/htdocs/demo/diffDomain_dummy2.htm -%%DATADIR%%/htdocs/demo/diffDomain_iframe.htm -%%DATADIR%%/htdocs/demo/diffDomain_traverse.htm -%%DATADIR%%/htdocs/demo/docWriteFramesTest.htm -%%DATADIR%%/htdocs/demo/docWriteIFrame.htm -%%DATADIR%%/htdocs/demo/doc_written_popup.htm -%%DATADIR%%/htdocs/demo/docdomain.htm -%%DATADIR%%/htdocs/demo/docdomain_dummy1.htm -%%DATADIR%%/htdocs/demo/docdomain_dummy2.htm -%%DATADIR%%/htdocs/demo/docwrite.htm -%%DATADIR%%/htdocs/demo/docwrite.js -%%DATADIR%%/htdocs/demo/docwriteframes.htm -%%DATADIR%%/htdocs/demo/docwritten.htm -%%DATADIR%%/htdocs/demo/domRel.htm -%%DATADIR%%/htdocs/demo/error.htm -%%DATADIR%%/htdocs/demo/errorPages.htm -%%DATADIR%%/htdocs/demo/euro.htm -%%DATADIR%%/htdocs/demo/eventSequence.htm -%%DATADIR%%/htdocs/demo/events.htm -%%DATADIR%%/htdocs/demo/fileUpload.htm -%%DATADIR%%/htdocs/demo/focusTest.htm -%%DATADIR%%/htdocs/demo/formTest.htm -%%DATADIR%%/htdocs/demo/formTest2.htm -%%DATADIR%%/htdocs/demo/framesTest.htm -%%DATADIR%%/htdocs/demo/framesTestWithTitle.htm -%%DATADIR%%/htdocs/demo/greek.htm -%%DATADIR%%/htdocs/demo/headingsTest.htm -%%DATADIR%%/htdocs/demo/html5_form_fields.htm -%%DATADIR%%/htdocs/demo/htmlUnit.htm -%%DATADIR%%/htdocs/demo/ifTest.htm -%%DATADIR%%/htdocs/demo/iframesTest.htm -%%DATADIR%%/htdocs/demo/iframesTest_inc.htm -%%DATADIR%%/htdocs/demo/index.htm -%%DATADIR%%/htdocs/demo/inputImage.htm -%%DATADIR%%/htdocs/demo/jseval.htm -%%DATADIR%%/htdocs/demo/keyevent.htm -%%DATADIR%%/htdocs/demo/keypress.htm -%%DATADIR%%/htdocs/demo/label.htm -%%DATADIR%%/htdocs/demo/lang.htm -%%DATADIR%%/htdocs/demo/lang_back.htm -%%DATADIR%%/htdocs/demo/linkByContent.htm -%%DATADIR%%/htdocs/demo/linkByHtml.htm -%%DATADIR%%/htdocs/demo/linkInTd.htm -%%DATADIR%%/htdocs/demo/linkTest.htm -%%DATADIR%%/htdocs/demo/map.htm -%%DATADIR%%/htdocs/demo/map.png -%%DATADIR%%/htdocs/demo/menu.htm -%%DATADIR%%/htdocs/demo/method_delete.htm -%%DATADIR%%/htdocs/demo/method_put.htm -%%DATADIR%%/htdocs/demo/modal.htm -%%DATADIR%%/htdocs/demo/mouseover.htm -%%DATADIR%%/htdocs/demo/nestedTds.htm -%%DATADIR%%/htdocs/demo/onBeforeUnloadTest.htm -%%DATADIR%%/htdocs/demo/onLoadTest.htm -%%DATADIR%%/htdocs/demo/onchange.htm -%%DATADIR%%/htdocs/demo/php/500.php -%%DATADIR%%/htdocs/demo/php/delayedLoad.php -%%DATADIR%%/htdocs/demo/php/delayedLoadInner.php -%%DATADIR%%/htdocs/demo/php/fileUpload.htm -%%DATADIR%%/htdocs/demo/php/fileUpload.php -%%DATADIR%%/htdocs/demo/php/method_delete.php -%%DATADIR%%/htdocs/demo/php/method_put.php -%%DATADIR%%/htdocs/demo/php/status.php -%%DATADIR%%/htdocs/demo/plain/clickSimulTest.htm -%%DATADIR%%/htdocs/demo/plain/close.htm -%%DATADIR%%/htdocs/demo/plain/codes.htm -%%DATADIR%%/htdocs/demo/plain/diffDomain.htm -%%DATADIR%%/htdocs/demo/plain/diffDomain2.htm -%%DATADIR%%/htdocs/demo/plain/event.htm -%%DATADIR%%/htdocs/demo/plain/event2.htm -%%DATADIR%%/htdocs/demo/plain/iframeLoadTest.htm -%%DATADIR%%/htdocs/demo/plain/interact.htm -%%DATADIR%%/htdocs/demo/plain/modifier.htm -%%DATADIR%%/htdocs/demo/plain/sel.htm -%%DATADIR%%/htdocs/demo/plain/sim2.htm -%%DATADIR%%/htdocs/demo/poundTest.htm -%%DATADIR%%/htdocs/demo/promptTest.htm -%%DATADIR%%/htdocs/demo/regexp.htm -%%DATADIR%%/htdocs/demo/regression/jquery_onchange.htm -%%DATADIR%%/htdocs/demo/rel.htm -%%DATADIR%%/htdocs/demo/safariClickBug.htm -%%DATADIR%%/htdocs/demo/sanity.htm -%%DATADIR%%/htdocs/demo/saveAs.htm -%%DATADIR%%/htdocs/demo/selectTest.htm -%%DATADIR%%/htdocs/demo/showModal.htm -%%DATADIR%%/htdocs/demo/showModal_Modal.htm -%%DATADIR%%/htdocs/demo/spandiv.htm -%%DATADIR%%/htdocs/demo/strict_visible.htm -%%DATADIR%%/htdocs/demo/tableTest.htm -%%DATADIR%%/htdocs/demo/temp.js -%%DATADIR%%/htdocs/demo/temp2.js -%%DATADIR%%/htdocs/demo/testStart.htm -%%DATADIR%%/htdocs/demo/testapp.htm -%%DATADIR%%/htdocs/demo/testapploggedin.htm -%%DATADIR%%/htdocs/demo/testsaveas.zip -%%DATADIR%%/htdocs/demo/training/books.htm -%%DATADIR%%/htdocs/demo/training/common.css -%%DATADIR%%/htdocs/demo/training/index.htm -%%DATADIR%%/htdocs/demo/training/login.htm -%%DATADIR%%/htdocs/demo/training/register.htm -%%DATADIR%%/htdocs/demo/training/v2/books.htm -%%DATADIR%%/htdocs/demo/training/v2/common.css -%%DATADIR%%/htdocs/demo/training/v2/index.htm -%%DATADIR%%/htdocs/demo/training/v2/login.htm -%%DATADIR%%/htdocs/demo/training/v2/register.htm -%%DATADIR%%/htdocs/demo/under.htm -%%DATADIR%%/htdocs/demo/visible.htm -%%DATADIR%%/htdocs/demo/waitCondition1.htm -%%DATADIR%%/htdocs/demo/waitCondition2.htm -%%DATADIR%%/htdocs/demo/waitCondition3.htm -%%DATADIR%%/htdocs/demo/waitFor.htm -%%DATADIR%%/htdocs/demo/window_opener.htm -%%DATADIR%%/htdocs/demo/window_opener_close.htm -%%DATADIR%%/htdocs/demo/window_opener_close_1.htm -%%DATADIR%%/htdocs/demo/window_opener_iframe.htm -%%DATADIR%%/htdocs/favicon.ico -%%DATADIR%%/htdocs/spr/401.htm -%%DATADIR%%/htdocs/spr/5xx.htm -%%DATADIR%%/htdocs/spr/Copy of concat.js -%%DATADIR%%/htdocs/spr/auto.htm -%%DATADIR%%/htdocs/spr/blank.htm -%%DATADIR%%/htdocs/spr/cannotConnect.htm -%%DATADIR%%/htdocs/spr/close.htm -%%DATADIR%%/htdocs/spr/common.js -%%DATADIR%%/htdocs/spr/concat.js -%%DATADIR%%/htdocs/spr/concat.zip -%%DATADIR%%/htdocs/spr/concat3.js -%%DATADIR%%/htdocs/spr/controller2.htm -%%DATADIR%%/htdocs/spr/controller2.js -%%DATADIR%%/htdocs/spr/controller3.htm -%%DATADIR%%/htdocs/spr/controller4.htm -%%DATADIR%%/htdocs/spr/controller4.js -%%DATADIR%%/htdocs/spr/controller7.htm -%%DATADIR%%/htdocs/spr/controller7.js -%%DATADIR%%/htdocs/spr/controllertw.htm -%%DATADIR%%/htdocs/spr/controllertw.js -%%DATADIR%%/htdocs/spr/cookie.js -%%DATADIR%%/htdocs/spr/cookies.htm -%%DATADIR%%/htdocs/spr/css/consolidated_log_format.css -%%DATADIR%%/htdocs/spr/css/error.css -%%DATADIR%%/htdocs/spr/css/playback_log_format.css -%%DATADIR%%/htdocs/spr/domainfix.js -%%DATADIR%%/htdocs/spr/dummyFunctions.js -%%DATADIR%%/htdocs/spr/editor.htm -%%DATADIR%%/htdocs/spr/event.js -%%DATADIR%%/htdocs/spr/exception.js -%%DATADIR%%/htdocs/spr/ext/javascript-xpath/README.txt -%%DATADIR%%/htdocs/spr/ext/javascript-xpath/javascript-xpath.js -%%DATADIR%%/htdocs/spr/ext/selenium/README.txt -%%DATADIR%%/htdocs/spr/ext/selenium/locatorBuilders.js -%%DATADIR%%/htdocs/spr/ext_player.htm -%%DATADIR%%/htdocs/spr/ext_player.js -%%DATADIR%%/htdocs/spr/extensions.js -%%DATADIR%%/htdocs/spr/favicon.ico -%%DATADIR%%/htdocs/spr/favicon.jpg -%%DATADIR%%/htdocs/spr/footer.htm -%%DATADIR%%/htdocs/spr/getFocus.htm -%%DATADIR%%/htdocs/spr/history.htm -%%DATADIR%%/htdocs/spr/images/document-new.png -%%DATADIR%%/htdocs/spr/images/document-open.png -%%DATADIR%%/htdocs/spr/images/edit-clear.png -%%DATADIR%%/htdocs/spr/images/folder.png -%%DATADIR%%/htdocs/spr/images/go-next.png -%%DATADIR%%/htdocs/spr/images/go-previous.png -%%DATADIR%%/htdocs/spr/images/go-up.png -%%DATADIR%%/htdocs/spr/images/installer_logo.png -%%DATADIR%%/htdocs/spr/images/installer_logo_sq.png -%%DATADIR%%/htdocs/spr/images/list-add.png -%%DATADIR%%/htdocs/spr/images/list-remove.png -%%DATADIR%%/htdocs/spr/images/mail-send-receive.png -%%DATADIR%%/htdocs/spr/images/media-floppy.png -%%DATADIR%%/htdocs/spr/images/media-playback-pause.png -%%DATADIR%%/htdocs/spr/images/media-playback-start.png -%%DATADIR%%/htdocs/spr/images/media-playback-stop.png -%%DATADIR%%/htdocs/spr/images/media-record.png -%%DATADIR%%/htdocs/spr/images/media-skip-forward.png -%%DATADIR%%/htdocs/spr/images/process-stop.png -%%DATADIR%%/htdocs/spr/images/sahi_logo_web.png -%%DATADIR%%/htdocs/spr/images/sahi_logo_web_alpha.png -%%DATADIR%%/htdocs/spr/images/sahi_os_icon.ico -%%DATADIR%%/htdocs/spr/images/sahi_os_icon.png -%%DATADIR%%/htdocs/spr/images/sahi_os_logo1.png -%%DATADIR%%/htdocs/spr/images/sahi_os_logo2.png -%%DATADIR%%/htdocs/spr/images/sahi_pro_logo1.png -%%DATADIR%%/htdocs/spr/images/sahi_pro_logo2.png -%%DATADIR%%/htdocs/spr/images/view-refresh.png -%%DATADIR%%/htdocs/spr/initialized.htm -%%DATADIR%%/htdocs/spr/json.js -%%DATADIR%%/htdocs/spr/language_pack.js -%%DATADIR%%/htdocs/spr/launch.htm -%%DATADIR%%/htdocs/spr/lib.js -%%DATADIR%%/htdocs/spr/link.js -%%DATADIR%%/htdocs/spr/manage.htm -%%DATADIR%%/htdocs/spr/manage/configureUI.htm -%%DATADIR%%/htdocs/spr/manage/ssl/green.png -%%DATADIR%%/htdocs/spr/manage/ssl/manager.htm -%%DATADIR%%/htdocs/spr/manage/ssl/red.png -%%DATADIR%%/htdocs/spr/manage/ssl/success.htm -%%DATADIR%%/htdocs/spr/mock.gif -%%DATADIR%%/htdocs/spr/parsed.js -%%DATADIR%%/htdocs/spr/playback.htm -%%DATADIR%%/htdocs/spr/playback.js -%%DATADIR%%/htdocs/spr/probe.htm -%%DATADIR%%/htdocs/spr/recorder.htm -%%DATADIR%%/htdocs/spr/rte.htm -%%DATADIR%%/htdocs/spr/runner/android.htm -%%DATADIR%%/htdocs/spr/runner/runner.htm -%%DATADIR%%/htdocs/spr/runner/runner2.htm -%%DATADIR%%/htdocs/spr/sahi_playback_help.jpg -%%DATADIR%%/htdocs/spr/sahi_recorder_help.htm -%%DATADIR%%/htdocs/spr/sahi_recorder_help.jpg -%%DATADIR%%/htdocs/spr/sahiextjs.js -%%DATADIR%%/htdocs/spr/script.htm -%%DATADIR%%/htdocs/spr/settings.htm -%%DATADIR%%/htdocs/spr/simpleMock.htm -%%DATADIR%%/htdocs/spr/state.js -%%DATADIR%%/htdocs/spr/suggest.js -%%DATADIR%%/htdocs/spr/tabs.htm -%%DATADIR%%/htdocs/spr/test/ultratextarea.htm -%%DATADIR%%/htdocs/spr/util.js -%%DATADIR%%/htdocs/spr/viewlogs.htm -%%DATADIR%%/lib/ant-sahi.jar -%%DATADIR%%/lib/sahi.jar -%%DATADIR%%/ruby/README.txt -%%DATADIR%%/ruby/cucumber/example/login.feature -%%DATADIR%%/ruby/cucumber/example/login.rb -%%DATADIR%%/ruby/lib/sahi.rb -%%DATADIR%%/ruby/nbproject/project.properties -%%DATADIR%%/ruby/nbproject/project.xml -%%DATADIR%%/ruby/sahi-1.0.0.gem -%%DATADIR%%/ruby/sahi-1.0.1.gem -%%DATADIR%%/ruby/sahi.gemspec -%%DATADIR%%/ruby/test/elementstub_test.rb -%%DATADIR%%/ruby/test/learn.rb -%%DATADIR%%/ruby/test/sahi_test.rb -%%DATADIR%%/sample_java_project/.classpath -%%DATADIR%%/sample_java_project/.project -%%DATADIR%%/sample_java_project/DriverClientTest.java -%%DATADIR%%/sample_java_project/README.txt -%%DATADIR%%/sample_java_project/SahiTestCase.java -%%DATADIR%%/sample_java_project/myuserdata/config/download_urls.txt -%%DATADIR%%/sample_java_project/myuserdata/config/exclude_inject.txt -%%DATADIR%%/sample_java_project/myuserdata/config/log.properties -%%DATADIR%%/sample_java_project/myuserdata/config/userdata.properties -%%DATADIR%%/sample_java_project/src/in/co/sahi/JavaClientTest.java -%%DATADIR%%/tools/backup_proxy_config.exe -%%DATADIR%%/tools/proxy.properties -%%DATADIR%%/tools/proxy_config.exe -%%DATADIR%%/tools/toggle_IE_proxy.exe -%%DATADIR%%/userdata/bin/start_dashboard.sh -%%DATADIR%%/userdata/bin/start_sahi.sh -%%DATADIR%%/userdata/bin/start_web.sh -%%DATADIR%%/userdata/bin/testrunner.sh -%%DATADIR%%/userdata/config/block_ssl_domains.txt -%%DATADIR%%/userdata/config/browser_types.xml -%%DATADIR%%/userdata/config/domainfix.txt -%%DATADIR%%/userdata/config/download_contenttypes.txt -%%DATADIR%%/userdata/config/download_urls.txt -%%DATADIR%%/userdata/config/exclude_inject.txt -%%DATADIR%%/userdata/config/jira.properties -%%DATADIR%%/userdata/config/log.properties -%%DATADIR%%/userdata/config/userdata.properties -%%DATADIR%%/userdata/scripts/apis.sah -%%DATADIR%%/userdata/scripts/demo/204.sah -%%DATADIR%%/userdata/scripts/demo/RegExp_toString_Fix.sah -%%DATADIR%%/userdata/scripts/demo/alert.sah -%%DATADIR%%/userdata/scripts/demo/blank.sah -%%DATADIR%%/userdata/scripts/demo/browser.sah -%%DATADIR%%/userdata/scripts/demo/clickCombo.sah -%%DATADIR%%/userdata/scripts/demo/clickNative.sah -%%DATADIR%%/userdata/scripts/demo/clicksTest.sah -%%DATADIR%%/userdata/scripts/demo/close_window.sah -%%DATADIR%%/userdata/scripts/demo/collect.sah -%%DATADIR%%/userdata/scripts/demo/confirm.sah -%%DATADIR%%/userdata/scripts/demo/csv.sah -%%DATADIR%%/userdata/scripts/demo/db.sah -%%DATADIR%%/userdata/scripts/demo/delayedLoad.sah -%%DATADIR%%/userdata/scripts/demo/demo.suite -%%DATADIR%%/userdata/scripts/demo/docWriteIFrame.sah -%%DATADIR%%/userdata/scripts/demo/doc_written_popup.sah -%%DATADIR%%/userdata/scripts/demo/dragDrop.sah -%%DATADIR%%/userdata/scripts/demo/dragDropXY.sah -%%DATADIR%%/userdata/scripts/demo/errorPages.sah -%%DATADIR%%/userdata/scripts/demo/evalOnRhino.sah -%%DATADIR%%/userdata/scripts/demo/events.sah -%%DATADIR%%/userdata/scripts/demo/execute.sah -%%DATADIR%%/userdata/scripts/demo/executeTimeout.sah -%%DATADIR%%/userdata/scripts/demo/extjs1.sah -%%DATADIR%%/userdata/scripts/demo/fetchAPIs.sah -%%DATADIR%%/userdata/scripts/demo/fetch_table_data.sah -%%DATADIR%%/userdata/scripts/demo/fileUpload.sah -%%DATADIR%%/userdata/scripts/demo/find_in_google.sah -%%DATADIR%%/userdata/scripts/demo/globalget.sah -%%DATADIR%%/userdata/scripts/demo/globalset.sah -%%DATADIR%%/userdata/scripts/demo/globalvar.suite -%%DATADIR%%/userdata/scripts/demo/google_search_dd.sah -%%DATADIR%%/userdata/scripts/demo/greek.sah -%%DATADIR%%/userdata/scripts/demo/headingsTest.sah -%%DATADIR%%/userdata/scripts/demo/hidden.sah -%%DATADIR%%/userdata/scripts/demo/if.sah -%%DATADIR%%/userdata/scripts/demo/if_include.sah -%%DATADIR%%/userdata/scripts/demo/in.sah -%%DATADIR%%/userdata/scripts/demo/includes/sahi_demo_include.sah -%%DATADIR%%/userdata/scripts/demo/includes/values.txt -%%DATADIR%%/userdata/scripts/demo/integration.sah -%%DATADIR%%/userdata/scripts/demo/is_visible.sah -%%DATADIR%%/userdata/scripts/demo/keypress.sah -%%DATADIR%%/userdata/scripts/demo/label.sah -%%DATADIR%%/userdata/scripts/demo/language.sah -%%DATADIR%%/userdata/scripts/demo/libTest.sah -%%DATADIR%%/userdata/scripts/demo/link_test.sah -%%DATADIR%%/userdata/scripts/demo/local_stack.sah -%%DATADIR%%/userdata/scripts/demo/map.sah -%%DATADIR%%/userdata/scripts/demo/modal.sah -%%DATADIR%%/userdata/scripts/demo/onchange.sah -%%DATADIR%%/userdata/scripts/demo/opener.sah -%%DATADIR%%/userdata/scripts/demo/opentest.sah -%%DATADIR%%/userdata/scripts/demo/popup_title.sah -%%DATADIR%%/userdata/scripts/demo/popup_title_name_mix.sah -%%DATADIR%%/userdata/scripts/demo/prompt.sah -%%DATADIR%%/userdata/scripts/demo/promptUserInput.sah -%%DATADIR%%/userdata/scripts/demo/readURL.sah -%%DATADIR%%/userdata/scripts/demo/readfile.sah -%%DATADIR%%/userdata/scripts/demo/regexp.sah -%%DATADIR%%/userdata/scripts/demo/reset.sah -%%DATADIR%%/userdata/scripts/demo/sahi_demo.sah -%%DATADIR%%/userdata/scripts/demo/sahi_demo_frames.sah -%%DATADIR%%/userdata/scripts/demo/sahi_demo_include.sah -%%DATADIR%%/userdata/scripts/demo/save_as.sah -%%DATADIR%%/userdata/scripts/demo/select.sah -%%DATADIR%%/userdata/scripts/demo/sencha_combobox.sah -%%DATADIR%%/userdata/scripts/demo/set.sah -%%DATADIR%%/userdata/scripts/demo/set_array.sah -%%DATADIR%%/userdata/scripts/demo/set_included.sah -%%DATADIR%%/userdata/scripts/demo/set_included2.sah -%%DATADIR%%/userdata/scripts/demo/shouldfail/click_null.sah -%%DATADIR%%/userdata/scripts/demo/shouldfail/fail.suite -%%DATADIR%%/userdata/scripts/demo/shouldfail/fail_missing.suite -%%DATADIR%%/userdata/scripts/demo/shouldfail/log_browser_exception_as_failure.sah -%%DATADIR%%/userdata/scripts/demo/shouldfail/log_exception_as_failure.sah -%%DATADIR%%/userdata/scripts/demo/shouldfail/set_recovery.sah -%%DATADIR%%/userdata/scripts/demo/shouldfail/stop_on_error.sah -%%DATADIR%%/userdata/scripts/demo/shouldfail/syntax_error_line_number.sah -%%DATADIR%%/userdata/scripts/demo/spandiv.sah -%%DATADIR%%/userdata/scripts/demo/strict_visible.sah -%%DATADIR%%/userdata/scripts/demo/table_2darray.sah -%%DATADIR%%/userdata/scripts/demo/table_cell.sah -%%DATADIR%%/userdata/scripts/demo/testuff.sah -%%DATADIR%%/userdata/scripts/demo/textarea.sah -%%DATADIR%%/userdata/scripts/demo/trycatch.sah -%%DATADIR%%/userdata/scripts/demo/under.sah -%%DATADIR%%/userdata/scripts/demo/uploadme.txt -%%DATADIR%%/userdata/scripts/demo/uploadme2.txt -%%DATADIR%%/userdata/scripts/demo/verify_shorthands.sah -%%DATADIR%%/userdata/scripts/demo/verify_shorthands_gen.sah -%%DATADIR%%/userdata/scripts/demo/verify_shorthands_inc.sah -%%DATADIR%%/userdata/scripts/demo/wait_for.sah -%%DATADIR%%/userdata/scripts/demo/wait_for_with_reload.sah -%%DATADIR%%/userdata/scripts/demo/wait_long.sah -%%DATADIR%%/userdata/scripts/demo/while.sah -%%DATADIR%%/userdata/scripts/demo/window_opener_close.sah -%%DATADIR%%/userdata/scripts/demo/zk_speed.sah -@dir %%DATADIR%%/userdata/logs -@dir %%DATADIR%%/ruby/lib/sahi