diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-10-29 22:32:50 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-10-29 22:32:50 +0000 |
| commit | 7f38db72b754a1a5205f2e904aaacf5822793198 (patch) | |
| tree | 9d66cfa4e574dbec04d83fd16b928e44839f9a7e /lib/service | |
| parent | dc9aae2149e737517e46534c3c1230a58873d397 (diff) | |
| download | enigma2-7f38db72b754a1a5205f2e904aaacf5822793198.tar.gz enigma2-7f38db72b754a1a5205f2e904aaacf5822793198.zip | |
add 'tags' interface (4th line in .meta files are a space-seperated list of tags used for filtering)
Diffstat (limited to 'lib/service')
| -rw-r--r-- | lib/service/iservice.h | 4 | ||||
| -rw-r--r-- | lib/service/servicedvb.cpp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lib/service/iservice.h b/lib/service/iservice.h index 31c1c99d..ba14245e 100644 --- a/lib/service/iservice.h +++ b/lib/service/iservice.h @@ -276,7 +276,9 @@ public: sTracknumber, sGenre, sCAIDs, - sVideoType // MPEG2 MPEG4 + sVideoType, // MPEG2 MPEG4 + + sTags, /* space seperated list of tags */ }; enum { resNA = -1, resIsString = -2, resIsPyObject = -3 }; diff --git a/lib/service/servicedvb.cpp b/lib/service/servicedvb.cpp index 077685f6..6c980c76 100644 --- a/lib/service/servicedvb.cpp +++ b/lib/service/servicedvb.cpp @@ -212,6 +212,8 @@ std::string eStaticServiceDVBPVRInformation::getInfoString(const eServiceReferen return m_parser.m_description; case iServiceInformation::sServiceref: return m_parser.m_ref.toString(); + case iServiceInformation::sTags: + return m_parser.m_tags; default: return ""; } |
