summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2008-11-27 20:28:23 +0000
committerHenri Herscher <henri@oreka.org>2008-11-27 20:28:23 +0000
commit6c2787b2d8b547cc860fd63446ae406f7c65bd9a (patch)
treedb136c9896510bf21572db604e883b0228aec1ab
parent5571e669cf3e27b0c9e7cb97685ae5fcbe5fced7 (diff)
deleted config.xml and logging.properties from distribution so that there is only one copy of these files under svn control. The proper place shall be in the orkaudio source tree.
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@573 09dcff7a-b715-0410-9601-b79a96267cd0
-rw-r--r--distribution/orkaudio-win32-binary/config.xml56
-rw-r--r--distribution/orkaudio-win32-binary/logging.properties47
2 files changed, 0 insertions, 103 deletions
diff --git a/distribution/orkaudio-win32-binary/config.xml b/distribution/orkaudio-win32-binary/config.xml
deleted file mode 100644
index 7520768..0000000
--- a/distribution/orkaudio-win32-binary/config.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-<config>
- <!-- This is an example configuration file for the Oreka orkaudio capture service on Windows -->
- <!-- Copy this to config.xml and modify according to taste -->
-
- <AudioOutputPath>./AudioRecordings</AudioOutputPath>
-
- <!-- Uncomment the plugin you want to use -->
- <CapturePlugin>VoIP.dll</CapturePlugin>
- <!--<CapturePlugin>Generator.dll</CapturePlugin>-->
- <!--<CapturePlugin>SoundDevice.dll</CapturePlugin>-->
- <CapturePluginPath>audiocaptureplugins/</CapturePluginPath>
-
- <!-- Audio file storage format: choose from: native, gsm, ulaw, alaw, pcmwav -->
- <StorageAudioFormat>gsm</StorageAudioFormat>
-
- <!-- If you want to keep native audio files as well as compressed, change this to "no" -->
- <DeleteNativeFile>yes</DeleteNativeFile>
-
- <TrackerHostname>localhost</TrackerHostname>
- <EnableReporting>true</EnableReporting>
- <ClientTimeout>1000</ClientTimeout>
-
- <NumBatchThreads></NumBatchThreads>
-
- <AudioSegmentation>false</AudioSegmentation>
- <AudioSegmentDuration>10</AudioSegmentDuration>
-
- <CapturePortFilters>LiveMonitoring</CapturePortFilters>
- <TapeProcessors>BatchProcessing, Reporting</TapeProcessors>
-
- <VoIpPlugin>
- <!-- Use this if you want to force capture from a given list of devices. -->
- <!-- All available devices are listed in orkaudio.log when the service is starting -->
- <!--<Devices>\Device\NPF_{E0E496FA-DABF-47C1-97C2-DD914DFD3354}, \Device\NPF_{ADE496FA-DABF-47C1-97C2-DD914DFDAB38}</Devices>-->
-
- <!-- If AllowedIpRanges is used, only packets with *both* source and destination -->
- <!-- matching the list are retained -->
- <!--<AllowedIpRanges>212.125.143.0/24, 82.150.0.0/16, 82.199.64.133</AllowedIpRanges>-->
- <!-- If BlockedIpRanges is used, packets with *either* source or destination -->
- <!-- matching the list are dropped -->
- <!--<BlockedIpRanges>212.125.143.0/24, 82.150.0.0/16, 82.199.64.133</BlockedIpRanges>-->
-
- <!-- LanMasks can be ignored if you have standard LAN addresses (192.168.x.x or 10.x.x.x) -->
- <!-- LanMasks might be used to determine the direction of a call (incoming or outgoing into or from the LAN) -->
- <!--<LanMasks>10.4.3.4, 1.2.3.4</LanMasks>-->
-
- <!-- The following is a csv list of your PBX, PSTN gateway, conferencing server or such "gateway" devices -->
- <!-- It is needed to properly detect call direction -->
- <!--<MediaGateways>10.0.0.102</MediaGateways>-->
- </VoIpPlugin>
- <GeneratorPlugin>
- <NumConcurrentPorts>1</NumConcurrentPorts>
- <AudioDuration>5</AudioDuration>
- <AudioFilename>sine.8KHz.pcm.wav</AudioFilename>
- </GeneratorPlugin>
-</config>
diff --git a/distribution/orkaudio-win32-binary/logging.properties b/distribution/orkaudio-win32-binary/logging.properties
deleted file mode 100644
index d94a719..0000000
--- a/distribution/orkaudio-win32-binary/logging.properties
+++ /dev/null
@@ -1,47 +0,0 @@
-#This is the logging configuration file for orkaudio
-# for more information on the apache log4cxx (and log4j) logging system, see:
-# http://logging.apache.org/log4cxx/manual/Introduction.html
-
-# console
-log4j.appender.stdout=org.apache.log4j.ConsoleAppender
-log4j.appender.stdout.Target=System.out
-log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
-log4j.appender.stdout.layout.ConversionPattern=%d{ISO8601} %5p %c{1}:%L - %m%n
-
-# main logfile
-log4j.appender.A1=org.apache.log4j.RollingFileAppender
-log4j.appender.A1.File=orkaudio.log
-log4j.appender.A1.MaxFileSize=5000KB
-log4j.appender.A1.MaxBackupIndex=2
-log4j.appender.A1.layout=org.apache.log4j.PatternLayout
-log4j.appender.A1.layout.ConversionPattern=%d{ISO8601} %5p %c{1}:%L - %m%n
-
-# messages logfile
-log4j.appender.messages=org.apache.log4j.RollingFileAppender
-log4j.appender.messages.File=messages.log
-log4j.appender.messages.MaxFileSize=5000KB
-log4j.appender.messages.MaxBackupIndex=2
-log4j.appender.messages.layout=org.apache.log4j.PatternLayout
-log4j.appender.messages.layout.ConversionPattern=%d{ISO8601} %5p %c{1}:%L - %m%n
-
-#tapelist logfile
-log4j.appender.tapelist=org.apache.log4j.RollingFileAppender
-log4j.appender.tapelist.File=tapelist.log
-log4j.appender.tapelist.MaxFileSize=5000KB
-log4j.appender.tapelist.MaxBackupIndex=2
-log4j.appender.tapelist.layout=org.apache.log4j.PatternLayout
-log4j.appender.tapelist.layout.ConversionPattern=%m%n
-
-
-# Set root logger level to DEBUG
-log4j.rootLogger=INFO, A1, stdout
-log4j.logger.reporting=INFO, messages
-log4j.logger.tapelist=INFO, tapelist
-log4j.logger.rtpringbuffer=INFO
-log4j.logger.packet=INFO
-log4j.logger.packet.rtp=INFO
-log4j.logger.packet.skinny=INFO
-log4j.logger.packet.sip=INFO
-log4j.logger.rtpsessions=INFO
-log4j.logger.rtpsession=INFO
-log4j.logger.sipextraction=INFO