diff options
author | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-05 19:40:46 +0000 |
---|---|---|
committer | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-05 19:40:46 +0000 |
commit | 13adee0994f4f177a6630077f298eafcb9c48169 (patch) | |
tree | 49e644f699c7787dfdaaf45be016480f31ae9942 | |
parent | 1dc35343c241696d4d3a270a693df423b7615bfd (diff) | |
download | vdr-plugin-live-13adee0994f4f177a6630077f298eafcb9c48169.tar.gz vdr-plugin-live-13adee0994f4f177a6630077f298eafcb9c48169.tar.bz2 |
- removed CompPath directive
- changed component name to "" to force loading from local shared object
- incorporated all code into one shared object
-rw-r--r-- | tntconfig.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tntconfig.cpp b/tntconfig.cpp index 2036a46..040ae0b 100644 --- a/tntconfig.cpp +++ b/tntconfig.cpp @@ -3,6 +3,7 @@ #include <fstream> #include <sstream> #include <stdexcept> +#include <vdr/config.h> #include <vdr/plugin.h> #include "live.h" #include "setup.h" @@ -33,10 +34,9 @@ void TntConfig::WriteConfig() } // XXX modularize - file << "MapUrl ^/$ whats_on_now@libtnt-live" << endl; - file << "MapUrl /([^.]+)(\\..+)? $1@libtnt-live" << endl; + file << "MapUrl ^/$ whats_on_now@" << endl; + file << "MapUrl /([^.]+)(\\..+)? $1@" << endl; file << "PropertyFile " << m_propertiesPath << endl; - file << "CompPath " << LiveSetup().GetLibraryPath() << endl; Setup::IpList const& ips = LiveSetup().GetServerIps(); int port = LiveSetup().GetServerPort(); |