├── .github └── workflows │ ├── build.yml │ └── buildbot.yml ├── .gitignore ├── CI ├── PEP8.sh ├── build.sh ├── chmod.sh └── dos2unix.sh ├── README.md ├── etc └── epgimport │ └── readme.txt └── src ├── EPGImport ├── EPGConfig.py ├── EPGImport.py ├── ExpandableSelectionList.py ├── Makefile.am ├── OfflineImport.py ├── __init__.py ├── dreamcrc.c ├── epgdat.py ├── epgdat_importer.py ├── filtersServices.py ├── gen_xmltv.py ├── import_source.py ├── locale │ ├── EPGImport.pot │ ├── Makefile.am │ ├── ar.po │ ├── cs.po │ ├── de.po │ ├── el.po │ ├── en.po │ ├── en_GB.po │ ├── es.po │ ├── et.po │ ├── fi.po │ ├── fr.po │ ├── hu.po │ ├── it.po │ ├── lt.po │ ├── nb.po │ ├── nl.po │ ├── pl.po │ ├── pt.po │ ├── ru.po │ ├── sk.po │ ├── sv.po │ ├── tr.po │ ├── uk.po │ ├── updateallpo.sh │ ├── updatepot.sh │ ├── xml2po.py │ └── zh_CN.po ├── log.py ├── offline__init__.py ├── plugin.png ├── plugin.py ├── setup.xml └── xmltvconverter.py ├── dreamcrc.c ├── setup.py └── setup_translate.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/buildbot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/.github/workflows/buildbot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.mo -------------------------------------------------------------------------------- /CI/PEP8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/CI/PEP8.sh -------------------------------------------------------------------------------- /CI/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/CI/build.sh -------------------------------------------------------------------------------- /CI/chmod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/CI/chmod.sh -------------------------------------------------------------------------------- /CI/dos2unix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/CI/dos2unix.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/README.md -------------------------------------------------------------------------------- /etc/epgimport/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/etc/epgimport/readme.txt -------------------------------------------------------------------------------- /src/EPGImport/EPGConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/EPGConfig.py -------------------------------------------------------------------------------- /src/EPGImport/EPGImport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/EPGImport.py -------------------------------------------------------------------------------- /src/EPGImport/ExpandableSelectionList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/ExpandableSelectionList.py -------------------------------------------------------------------------------- /src/EPGImport/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/Makefile.am -------------------------------------------------------------------------------- /src/EPGImport/OfflineImport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/OfflineImport.py -------------------------------------------------------------------------------- /src/EPGImport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/__init__.py -------------------------------------------------------------------------------- /src/EPGImport/dreamcrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/dreamcrc.c -------------------------------------------------------------------------------- /src/EPGImport/epgdat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/epgdat.py -------------------------------------------------------------------------------- /src/EPGImport/epgdat_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/epgdat_importer.py -------------------------------------------------------------------------------- /src/EPGImport/filtersServices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/filtersServices.py -------------------------------------------------------------------------------- /src/EPGImport/gen_xmltv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/gen_xmltv.py -------------------------------------------------------------------------------- /src/EPGImport/import_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/import_source.py -------------------------------------------------------------------------------- /src/EPGImport/locale/EPGImport.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/EPGImport.pot -------------------------------------------------------------------------------- /src/EPGImport/locale/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/Makefile.am -------------------------------------------------------------------------------- /src/EPGImport/locale/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/ar.po -------------------------------------------------------------------------------- /src/EPGImport/locale/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/cs.po -------------------------------------------------------------------------------- /src/EPGImport/locale/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/de.po -------------------------------------------------------------------------------- /src/EPGImport/locale/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/el.po -------------------------------------------------------------------------------- /src/EPGImport/locale/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/en.po -------------------------------------------------------------------------------- /src/EPGImport/locale/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/en_GB.po -------------------------------------------------------------------------------- /src/EPGImport/locale/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/es.po -------------------------------------------------------------------------------- /src/EPGImport/locale/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/et.po -------------------------------------------------------------------------------- /src/EPGImport/locale/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/fi.po -------------------------------------------------------------------------------- /src/EPGImport/locale/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/fr.po -------------------------------------------------------------------------------- /src/EPGImport/locale/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/hu.po -------------------------------------------------------------------------------- /src/EPGImport/locale/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/it.po -------------------------------------------------------------------------------- /src/EPGImport/locale/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/lt.po -------------------------------------------------------------------------------- /src/EPGImport/locale/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/nb.po -------------------------------------------------------------------------------- /src/EPGImport/locale/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/nl.po -------------------------------------------------------------------------------- /src/EPGImport/locale/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/pl.po -------------------------------------------------------------------------------- /src/EPGImport/locale/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/pt.po -------------------------------------------------------------------------------- /src/EPGImport/locale/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/ru.po -------------------------------------------------------------------------------- /src/EPGImport/locale/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/sk.po -------------------------------------------------------------------------------- /src/EPGImport/locale/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/sv.po -------------------------------------------------------------------------------- /src/EPGImport/locale/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/tr.po -------------------------------------------------------------------------------- /src/EPGImport/locale/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/uk.po -------------------------------------------------------------------------------- /src/EPGImport/locale/updateallpo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/updateallpo.sh -------------------------------------------------------------------------------- /src/EPGImport/locale/updatepot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/updatepot.sh -------------------------------------------------------------------------------- /src/EPGImport/locale/xml2po.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/xml2po.py -------------------------------------------------------------------------------- /src/EPGImport/locale/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/locale/zh_CN.po -------------------------------------------------------------------------------- /src/EPGImport/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/log.py -------------------------------------------------------------------------------- /src/EPGImport/offline__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/EPGImport/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/plugin.png -------------------------------------------------------------------------------- /src/EPGImport/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/plugin.py -------------------------------------------------------------------------------- /src/EPGImport/setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/setup.xml -------------------------------------------------------------------------------- /src/EPGImport/xmltvconverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/EPGImport/xmltvconverter.py -------------------------------------------------------------------------------- /src/dreamcrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/dreamcrc.c -------------------------------------------------------------------------------- /src/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/setup.py -------------------------------------------------------------------------------- /src/setup_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/XMLTV-Import/HEAD/src/setup_translate.py --------------------------------------------------------------------------------