From 1b1912d7b080a0dfe954bac9311eafc5bb293bc3 Mon Sep 17 00:00:00 2001 From: Christian Wieninger Date: Sat, 12 May 2012 20:23:45 +0200 Subject: =?UTF-8?q?Drop=20.pl=20suffix=20from=20svdrpsend=20references=20l?= =?UTF-8?q?ike=20VDR=201.7.23+=20did,=20thanks=20to=20Ville=20Skytt=C3=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HISTORY | 2 +- doc-src/de/epgsearch.1.txt | 6 +++--- doc-src/en/epgsearch.1.txt | 6 +++--- doc-src/en/epgsearch.4.txt | 6 +++--- epgsearch.c | 6 +++--- scripts/convert_epgsearchdone_data.pl | 2 +- scripts/epg2autotimer.sh | 3 ++- scripts/epg2taste.sh | 3 ++- scripts/mtdone2epgsearchdone.sh | 4 ++-- scripts/recordingdone.sh | 4 ++-- scripts/recrep.sh | 2 +- scripts/rememberevent.sh | 9 +++++---- scripts/timerrep.sh | 4 ++-- scripts/undoneepgsearch.sh | 2 +- 14 files changed, 31 insertions(+), 28 deletions(-) diff --git a/HISTORY b/HISTORY index 69f4162..7783944 100644 --- a/HISTORY +++ b/HISTORY @@ -1153,7 +1153,7 @@ fixes: 2005-04-14: Version 0.9.3 - implemented direct SVDRP communication (no more need for - svdrpsend.pl. For now, the old external method can still be used when you pass + svdrpsend. For now, the old external method can still be used when you pass it with -f as parameter, if you omit -f the internal method is used) - added buttons '<<' and '>>' in detailed epg view (summary) to jump to the previous/next event of the menu behind (schedule, now, next, diff --git a/doc-src/de/epgsearch.1.txt b/doc-src/de/epgsearch.1.txt index 577cda4..5f725a7 100644 --- a/doc-src/de/epgsearch.1.txt +++ b/doc-src/de/epgsearch.1.txt @@ -60,7 +60,7 @@ Teile der Quelltexte basieren auf dem repeating-epg-patch von Gerhard Steiner, d =item -f file, --svdrpsendcmd=file -Pfad zu svdrpsend.pl für externe SVDRP-Kommunikation (Standard ist interne +Pfad zu svdrpsend für externe SVDRP-Kommunikation (Standard ist interne Kommunikation, deshalb ist dieser Paramter normalerweise nicht notwendig) =item -c path, --config=path @@ -707,11 +707,11 @@ keine Sendungen zugeordnet sind. W kann diese Situation auftreten. Am einfachsten geht das mit dem SVDRP-Befehl SETS im EPG-Update-Skript: -svdrpsend.pl plug epgsearch SETS off +svdrpsend plug epgsearch SETS off -svdrpsend.pl plug epgsearch SETS on +svdrpsend plug epgsearch SETS on =head3 1.4.6 Timer-Konflikt-Prüfung diff --git a/doc-src/en/epgsearch.1.txt b/doc-src/en/epgsearch.1.txt index a6cf583..4cbce76 100644 --- a/doc-src/en/epgsearch.1.txt +++ b/doc-src/en/epgsearch.1.txt @@ -58,7 +58,7 @@ Parts of the sources are based on the repeating-ECG patch from Gerhard Steiner, =item -f file, --svdrpsendcmd=file -the path to svdrpsend.pl for external SVDRP communication (default is +the path to svdrpsend for external SVDRP communication (default is internal communication, so this is usually not needed anymore) =item -c path, --config=path @@ -688,11 +688,11 @@ situation can exist while the new EPG is feeded to VDR. A simple way to disable search timer updates is to use the SVDRP command SETS in your EPG update script: -svdrpsend.pl plug epgsearch SETS off +svdrpsend plug epgsearch SETS off -svdrpsend.pl plug epgsearch SETS on +svdrpsend plug epgsearch SETS on =head3 1.4.6 Timer conflict checking diff --git a/doc-src/en/epgsearch.4.txt b/doc-src/en/epgsearch.4.txt index 16dbe3e..5a54ca9 100644 --- a/doc-src/en/epgsearch.4.txt +++ b/doc-src/en/epgsearch.4.txt @@ -343,10 +343,10 @@ directory with the following lines in it: UseSubtitle=x // 1(default) or 0 UseDescr=x // 1(default) or 0 -Then call Epgsearch via svdrpsend.pl (you must have assigned a key +Then call Epgsearch via svdrpsend (you must have assigned a key to it), e.g. - svdrpsend.pl HITK green + svdrpsend HITK green At startup Epgsearch will look for this file and give you the search results for your search, if it exists. After that the file is @@ -371,7 +371,7 @@ I have added a quick and dirty dummy plugin epgsearch implements a SVDRP interface, that can be accessed for example like this - svdrpsend.pl PLUG epgsearch LSTS + svdrpsend PLUG epgsearch LSTS the following commands are available: diff --git a/epgsearch.c b/epgsearch.c index 1e0cf71..2b0f08b 100644 --- a/epgsearch.c +++ b/epgsearch.c @@ -85,7 +85,7 @@ int cLogFile::loglevellimit = 0; bool cPluginEpgsearch::VDR_readyafterStartup = false; // external SVDRPCommand -const char *cSVDRPClient::SVDRPSendCmd = "svdrpsend.pl"; +const char *cSVDRPClient::SVDRPSendCmd = "svdrpsend"; cPluginEpgsearch::cPluginEpgsearch(void) { @@ -117,7 +117,7 @@ const char* cPluginEpgsearch::Description(void) const char *cPluginEpgsearch::CommandLineHelp(void) { - return " -f file, --svdrpsendcmd=file the path to svdrpsend.pl for external\n" + return " -f file, --svdrpsendcmd=file the path to svdrpsend for external\n" " SVDRP communication (default is internal\n" " communication)\n" " -c path, --config=path to specify a specific config dir for epgsearch\n" @@ -208,7 +208,7 @@ bool cPluginEpgsearch::ProcessArgs(int argc, char *argv[]) if (EPGSearchConfig.useExternalSVDRP && access(cSVDRPClient::SVDRPSendCmd, F_OK) != 0) { - LogFile.eSysLog("ERROR - can't find SVDRPSend script: '%s'", cSVDRPClient::SVDRPSendCmd); + LogFile.eSysLog("ERROR - can't find svdrpsend script: '%s'", cSVDRPClient::SVDRPSendCmd); cSVDRPClient::SVDRPSendCmd = NULL; } diff --git a/scripts/convert_epgsearchdone_data.pl b/scripts/convert_epgsearchdone_data.pl index 719b456..25c7607 100755 --- a/scripts/convert_epgsearchdone_data.pl +++ b/scripts/convert_epgsearchdone_data.pl @@ -18,7 +18,7 @@ # # z.B. convert_epgsearchdone_data.pl /etc/vdr/plugins/ # -# "svdrpsend.pl plug epgsearch updd" nicht vergesssen. +# "svdrpsend plug epgsearch updd" nicht vergesssen. # # Backup erstellen? # diff --git a/scripts/epg2autotimer.sh b/scripts/epg2autotimer.sh index dd07879..524720b 100755 --- a/scripts/epg2autotimer.sh +++ b/scripts/epg2autotimer.sh @@ -11,6 +11,7 @@ # CONFIG START AUTOTIMER_FILE="$SOURCEDIR/vdradmin/vdradmind.at" + SVDRPSEND=/usr/local/bin/svdrpsend # default autotimer settings STATUS=1 # 0 = inactive (by default) / 1 = active @@ -27,6 +28,6 @@ echo "Done..." # jump back at now </dev/null" | at now + echo "$SVDRPSEND MESG '$2 already runs!' >/dev/null" | at now else if [ -z "$(find $ATD_SPOOL -exec grep -qs "^$entry$" \{} \; -exec rm -v \{} \;)" ]; then at $(date -d "1970-01-01 $FORMAT $secs seconds" +"%H:%M %m/%d/%Y") </dev/null + $SVDRPSEND MESG '${switch_time#* }: $2' >/dev/null sleep $(($MINSBEFORE*60))s if [ $1 -eq 1 ] ; then - svdrpsend.pl CHAN $5 >/dev/null + $SVDRPSEND CHAN $5 >/dev/null else - svdrpsend.pl MESG '$2 starts!' >/dev/null + $SVDRPSEND MESG '$2 starts!' >/dev/null fi $entry EOT diff --git a/scripts/timerrep.sh b/scripts/timerrep.sh index d00ea1c..691e279 100755 --- a/scripts/timerrep.sh +++ b/scripts/timerrep.sh @@ -15,8 +15,8 @@ # adjust the following lines to your config # your plugins config dir PLUGINCONFDIR=/etc/vdr/plugins/epgsearch -# path to svdrpsend.pl -SVDRPSEND=/usr/local/src/VDR/svdrpsend.pl +# path to svdrpsend +SVDRPSEND=/usr/local/src/VDR/svdrpsend # if you are using special subfolders for some recordings, please add them here FOLDERS="Comedy,Wissen,Serien,Magazine" # the key used to call epgsearch diff --git a/scripts/undoneepgsearch.sh b/scripts/undoneepgsearch.sh index 8716ec8..98cdbbc 100755 --- a/scripts/undoneepgsearch.sh +++ b/scripts/undoneepgsearch.sh @@ -32,7 +32,7 @@ EPGSEARCHDONE_FILE="/etc/vdr/plugins/epgsearch/epgsearchdone.data" # Backup epgsearchdone.data before changing it (only once a day) BACKUP=yes -SVDRPSEND=svdrpsend.pl +SVDRPSEND=svdrpsend # For some debugging infos, set to yes DEBUG=no -- cgit v1.2.3