├── com_podcastmanager ├── admin │ ├── sql │ │ ├── updates │ │ │ ├── sqlsrv │ │ │ │ ├── 2.0.0.sql │ │ │ │ ├── index.html │ │ │ │ └── 2.1.0.sql │ │ │ ├── postgresql │ │ │ │ ├── 2.0.0.sql │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── mysql │ │ │ │ ├── index.html │ │ │ │ ├── 1.7.1.sql │ │ │ │ ├── 1.8.3.sql │ │ │ │ ├── 1.8.1.sql │ │ │ │ ├── 2.1.0.sql │ │ │ │ ├── 2.0.0.sql │ │ │ │ └── 1.7.0.sql │ │ ├── index.html │ │ ├── uninstall.mysql.sql │ │ └── uninstall.postgresql.sql │ ├── index.html │ ├── helpers │ │ ├── index.html │ │ └── html │ │ │ └── index.html │ ├── models │ │ ├── index.html │ │ ├── forms │ │ │ └── index.html │ │ └── fields │ │ │ ├── index.html │ │ │ └── modal │ │ │ └── index.html │ ├── tables │ │ └── index.html │ ├── views │ │ ├── index.html │ │ ├── cpanel │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ ├── index.html │ │ │ │ └── default_navigation.php │ │ ├── feed │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ └── index.html │ │ ├── feeds │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ └── index.html │ │ ├── podcast │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ └── index.html │ │ └── podcasts │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ └── index.html │ ├── controllers │ │ ├── index.html │ │ ├── feeds.php │ │ ├── podcasts.php │ │ └── podcast.json.php │ ├── language │ │ ├── index.html │ │ ├── en-GB │ │ │ └── index.html │ │ ├── fr-CA │ │ │ └── index.html │ │ ├── fr-FR │ │ │ └── index.html │ │ ├── id-ID │ │ │ └── index.html │ │ └── pt-BR │ │ │ └── index.html │ ├── liveupdate │ │ ├── index.html │ │ ├── assets │ │ │ ├── index.html │ │ │ ├── ok-24.png │ │ │ ├── fail-24.png │ │ │ ├── warn-24.png │ │ │ ├── current-32.png │ │ │ ├── update-32.png │ │ │ ├── liveupdate-48.png │ │ │ └── nosupport-32.png │ │ ├── classes │ │ │ ├── index.html │ │ │ ├── storage │ │ │ │ └── index.html │ │ │ └── tmpl │ │ │ │ ├── index.html │ │ │ │ ├── nagscreen.php │ │ │ │ └── install.php │ │ ├── language │ │ │ ├── da-DK │ │ │ │ └── index.html │ │ │ ├── de-DE │ │ │ │ └── index.html │ │ │ ├── el-GR │ │ │ │ └── index.html │ │ │ ├── en-GB │ │ │ │ └── index.html │ │ │ ├── es-ES │ │ │ │ └── index.html │ │ │ ├── fr-FR │ │ │ │ └── index.html │ │ │ ├── hu-HU │ │ │ │ └── index.html │ │ │ ├── it-IT │ │ │ │ └── index.html │ │ │ ├── lt-LT │ │ │ │ └── index.html │ │ │ ├── nb-NO │ │ │ │ └── index.html │ │ │ ├── nl-NL │ │ │ │ └── index.html │ │ │ ├── pl-PL │ │ │ │ └── index.html │ │ │ ├── pt-BR │ │ │ │ └── index.html │ │ │ ├── ru-RU │ │ │ │ └── index.html │ │ │ ├── sv-SE │ │ │ │ └── index.html │ │ │ ├── tr-TR │ │ │ │ └── index.html │ │ │ └── uk-UA │ │ │ │ └── index.html │ │ └── config.php │ ├── podcastmanager.php │ └── access.xml ├── media │ ├── index.html │ ├── js │ │ ├── index.html │ │ └── podcast.js │ ├── css │ │ ├── index.html │ │ └── template.css │ └── images │ │ ├── index.html │ │ └── icons │ │ ├── index.html │ │ ├── feeds.png │ │ ├── files.png │ │ ├── podcasts.png │ │ ├── icon-16-podcastmanager.png │ │ └── icon-48-podcastmanager.png └── site │ ├── index.html │ ├── helpers │ ├── index.html │ └── html │ │ └── index.html │ ├── language │ ├── index.html │ ├── en-GB │ │ ├── index.html │ │ └── en-GB.com_podcastmanager.sys.ini │ ├── fr-CA │ │ └── index.html │ ├── fr-FR │ │ └── index.html │ ├── id-ID │ │ └── index.html │ └── pt-BR │ │ ├── index.html │ │ └── pt-BR.com_podcastmanager.sys.ini │ ├── models │ ├── index.html │ └── forms │ │ └── index.html │ ├── views │ ├── index.html │ ├── feed │ │ ├── index.html │ │ ├── tmpl │ │ │ ├── index.html │ │ │ └── feed.php │ │ └── metadata.xml │ ├── form │ │ ├── index.html │ │ ├── tmpl │ │ │ ├── index.html │ │ │ └── edit.xml │ │ └── metadata.xml │ └── podcast │ │ ├── index.html │ │ ├── tmpl │ │ ├── index.html │ │ └── edit.xml │ │ └── metadata.xml │ ├── controllers │ ├── index.html │ └── podcast.json.php │ └── podcastmanager.php ├── language ├── index.html ├── en-GB │ ├── index.html │ ├── en-GB.pkg_podcastmanager.ini │ └── en-GB.pkg_podcastmanager.sys.ini ├── fr-CA │ ├── index.html │ └── fr-CA.pkg_podcastmanager.sys.ini ├── fr-FR │ ├── index.html │ └── fr-FR.pkg_podcastmanager.sys.ini ├── id-ID │ ├── index.html │ └── id-ID.pkg_podcastmanager.sys.ini └── pt-BR │ ├── index.html │ ├── pt-BR.pkg_podcastmanager.ini │ └── pt-BR.pkg_podcastmanager.sys.ini ├── lib_getid3 ├── index.html └── getid3 │ ├── index.html │ ├── module.audio-video.mpeg.php │ ├── module.misc.par2.php │ ├── module.misc.pdf.php │ ├── license.txt │ └── module.misc.msoffice.php ├── com_podcastmedia ├── admin │ ├── index.html │ ├── helpers │ │ └── index.html │ ├── language │ │ ├── index.html │ │ ├── en-GB │ │ │ ├── index.html │ │ │ └── en-GB.com_podcastmedia.sys.ini │ │ ├── fr-CA │ │ │ ├── index.html │ │ │ └── fr-CA.com_podcastmedia.sys.ini │ │ ├── fr-FR │ │ │ ├── index.html │ │ │ └── fr-FR.com_podcastmedia.sys.ini │ │ ├── id-ID │ │ │ ├── index.html │ │ │ └── id-ID.com_podcastmedia.sys.ini │ │ └── pt-BR │ │ │ ├── index.html │ │ │ └── pt-BR.com_podcastmedia.sys.ini │ ├── media │ │ ├── index.html │ │ └── js │ │ │ └── index.html │ ├── models │ │ ├── index.html │ │ └── forms │ │ │ └── index.html │ ├── views │ │ ├── index.html │ │ ├── audio │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ └── index.html │ │ ├── media │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ ├── index.html │ │ │ │ ├── default_folders.php │ │ │ │ └── default_navigation.php │ │ ├── audiolist │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ │ ├── index.html │ │ │ │ ├── default_up.php │ │ │ │ ├── default.php │ │ │ │ ├── default_folder.php │ │ │ │ └── default_audio.php │ │ └── medialist │ │ │ ├── index.html │ │ │ └── tmpl │ │ │ ├── index.html │ │ │ ├── default.php │ │ │ ├── thumbs_up.php │ │ │ ├── details_up.php │ │ │ └── thumbs.php │ ├── controllers │ │ └── index.html │ └── config.xml ├── site │ ├── index.html │ └── podcastmedia.php └── podcastmedia.xml ├── mod_podcastmanager ├── index.html ├── language │ ├── index.html │ ├── en-GB │ │ ├── index.html │ │ ├── en-GB.mod_podcastmanager.sys.ini │ │ └── en-GB.mod_podcastmanager.ini │ ├── pt-BR │ │ ├── index.html │ │ ├── pt-BR.mod_podcastmanager.sys.ini │ │ └── pt-BR.mod_podcastmanager.ini │ ├── fr-CA │ │ ├── index.html │ │ ├── fr-CA.mod_podcastmanager.sys.ini │ │ └── fr-CA.mod_podcastmanager.ini │ ├── fr-FR │ │ ├── index.html │ │ ├── fr-FR.mod_podcastmanager.sys.ini │ │ └── fr-FR.mod_podcastmanager.ini │ └── id-ID │ │ ├── index.html │ │ ├── id-ID.mod_podcastmanager.sys.ini │ │ └── id-ID.mod_podcastmanager.ini ├── media │ ├── index.html │ └── images │ │ ├── index.html │ │ └── podcast-mini2.png ├── tmpl │ ├── index.html │ └── default.php └── mod_podcastmanager.php ├── plg_podcastmedia_user ├── index.html ├── language │ ├── index.html │ ├── en-GB │ │ ├── index.html │ │ ├── en-GB.plg_podcastmedia_user.ini │ │ └── en-GB.plg_podcastmedia_user.sys.ini │ ├── pt-BR │ │ ├── index.html │ │ ├── pt-BR.plg_podcastmedia_user.sys.ini │ │ └── pt-BR.plg_podcastmedia_user.ini │ ├── fr-CA │ │ ├── index.html │ │ ├── fr-CA.plg_podcastmedia_user.ini │ │ └── fr-CA.plg_podcastmedia_user.sys.ini │ ├── fr-FR │ │ ├── index.html │ │ ├── fr-FR.plg_podcastmedia_user.ini │ │ └── fr-FR.plg_podcastmedia_user.sys.ini │ └── id-ID │ │ ├── index.html │ │ ├── id-ID.plg_podcastmedia_user.ini │ │ └── id-ID.plg_podcastmedia_user.sys.ini ├── user.xml └── user.php ├── files_podcastmanager_hathor ├── index.html ├── language │ ├── index.html │ ├── en-GB │ │ ├── index.html │ │ ├── en-GB.files_podcastmanager_hathor.ini │ │ └── en-GB.files_podcastmanager_hathor.sys.ini │ ├── fr-CA │ │ ├── index.html │ │ └── fr-CA.files_podcastmanager_hathor.sys.ini │ ├── fr-FR │ │ ├── index.html │ │ └── fr-FR.files_podcastmanager_hathor.sys.ini │ ├── id-ID │ │ ├── index.html │ │ └── id-ID.files_podcastmanager_hathor.sys.ini │ └── pt-BR │ │ ├── index.html │ │ ├── pt-BR.files_podcastmanager_hathor.ini │ │ └── pt-BR.files_podcastmanager_hathor.sys.ini ├── com_podcastmanager │ ├── index.html │ ├── feed │ │ └── index.html │ ├── feeds │ │ └── index.html │ ├── cpanel │ │ ├── index.html │ │ ├── default_navigation.php │ │ └── cpanel.css │ ├── podcast │ │ └── index.html │ └── podcasts │ │ ├── index.html │ │ └── podcasts.css ├── podcastmanager_hathor.xml └── script.php ├── mod_podcastmanagerfeed ├── index.html ├── language │ ├── index.html │ ├── en-GB │ │ ├── index.html │ │ ├── en-GB.mod_podcastmanagerfeed.sys.ini │ │ └── en-GB.mod_podcastmanagerfeed.ini │ ├── pt-BR │ │ ├── index.html │ │ ├── pt-BR.mod_podcastmanagerfeed.sys.ini │ │ └── pt-BR.mod_podcastmanagerfeed.ini │ ├── fr-CA │ │ ├── index.html │ │ ├── fr-CA.mod_podcastmanagerfeed.sys.ini │ │ └── fr-CA.mod_podcastmanagerfeed.ini │ ├── fr-FR │ │ ├── index.html │ │ ├── fr-FR.mod_podcastmanagerfeed.sys.ini │ │ └── fr-FR.mod_podcastmanagerfeed.ini │ └── id-ID │ │ ├── index.html │ │ ├── id-ID.mod_podcastmanagerfeed.sys.ini │ │ └── id-ID.mod_podcastmanagerfeed.ini ├── tmpl │ ├── index.html │ └── default.php ├── mod_podcastmanagerfeed.php └── script.php ├── plg_content_podcastmanager ├── index.html ├── language │ ├── index.html │ ├── en-GB │ │ ├── index.html │ │ ├── en-GB.plg_content_podcastmanager.sys.ini │ │ └── en-GB.plg_content_podcastmanager.ini │ ├── pt-BR │ │ ├── index.html │ │ ├── pt-BR.plg_content_podcastmanager.sys.ini │ │ └── pt-BR.plg_content_podcastmanager.ini │ ├── fr-CA │ │ ├── index.html │ │ ├── fr-CA.plg_content_podcastmanager.sys.ini │ │ └── fr-CA.plg_content_podcastmanager.ini │ ├── fr-FR │ │ ├── index.html │ │ ├── fr-FR.plg_content_podcastmanager.sys.ini │ │ └── fr-FR.plg_content_podcastmanager.ini │ └── id-ID │ │ ├── index.html │ │ ├── id-ID.plg_content_podcastmanager.sys.ini │ │ └── id-ID.plg_content_podcastmanager.ini ├── mediaelements │ ├── index.html │ ├── css │ │ ├── index.html │ │ ├── bigplay.png │ │ ├── controls.png │ │ ├── loading.gif │ │ ├── skipback.png │ │ ├── background.png │ │ ├── bigplay.fw.png │ │ ├── controls.fw.png │ │ ├── controls-ted.png │ │ ├── controls-wmp.png │ │ ├── controls-wmp-bg.png │ │ └── bigplay.svg │ └── js │ │ ├── index.html │ │ ├── jquery-noconflict.js │ │ ├── flashmediaelement.swf │ │ ├── flashmediaelement-cdn.swf │ │ └── silverlightmediaelement.xap └── podcastmanager.xml ├── files_podcastmanager_strapped ├── index.html ├── language │ ├── index.html │ └── en-GB │ │ ├── index.html │ │ ├── en-GB.files_podcastmanager_strapped.ini │ │ └── en-GB.files_podcastmanager_strapped.sys.ini ├── com_podcastmedia │ ├── index.html │ ├── audio │ │ └── index.html │ ├── media │ │ ├── index.html │ │ └── default_folders.php │ ├── audiolist │ │ ├── index.html │ │ ├── default_up.php │ │ ├── default_folder.php │ │ ├── default.php │ │ └── default_audio.php │ └── medialist │ │ ├── index.html │ │ ├── details_up.php │ │ ├── thumbs_up.php │ │ └── thumbs.php ├── podcastmanager │ └── index.html ├── com_podcastmanager │ ├── index.html │ ├── cpanel │ │ └── index.html │ ├── feed │ │ └── index.html │ ├── feeds │ │ └── index.html │ ├── podcast │ │ └── index.html │ └── podcasts │ │ └── index.html └── podcastmanager_strapped.xml ├── plg_editors-xtd_podcastmanager ├── index.html ├── language │ ├── index.html │ ├── en-GB │ │ ├── index.html │ │ ├── en-GB.plg_editors-xtd_podcastmanager.ini │ │ └── en-GB.plg_editors-xtd_podcastmanager.sys.ini │ ├── pt-BR │ │ ├── index.html │ │ ├── pt-BR.plg_editors-xtd_podcastmanager.ini │ │ └── pt-BR.plg_editors-xtd_podcastmanager.sys.ini │ ├── fr-CA │ │ ├── index.html │ │ ├── fr-CA.plg_editors-xtd_podcastmanager.ini │ │ └── fr-CA.plg_editors-xtd_podcastmanager.sys.ini │ ├── fr-FR │ │ ├── index.html │ │ ├── fr-FR.plg_editors-xtd_podcastmanager.ini │ │ └── fr-FR.plg_editors-xtd_podcastmanager.sys.ini │ └── id-ID │ │ ├── index.html │ │ ├── id-ID.plg_editors-xtd_podcastmanager.ini │ │ └── id-ID.plg_editors-xtd_podcastmanager.sys.ini └── podcastmanager.xml ├── plg_finder_podcastmanager_feeds ├── index.html ├── language │ ├── index.html │ ├── en-GB │ │ ├── index.html │ │ ├── en-GB.plg_finder_podcastmanager_feeds.ini │ │ └── en-GB.plg_finder_podcastmanager_feeds.sys.ini │ ├── pt-BR │ │ ├── index.html │ │ ├── pt-BR.plg_finder_podcastmanager_feeds.sys.ini │ │ └── pt-BR.plg_finder_podcastmanager_feeds.ini │ ├── fr-CA │ │ ├── index.html │ │ ├── fr-CA.plg_finder_podcastmanager_feeds.ini │ │ └── fr-CA.plg_finder_podcastmanager_feeds.sys.ini │ ├── fr-FR │ │ ├── index.html │ │ ├── fr-FR.plg_finder_podcastmanager_feeds.sys.ini │ │ └── fr-FR.plg_finder_podcastmanager_feeds.ini │ └── id-ID │ │ ├── index.html │ │ ├── id-ID.plg_finder_podcastmanager_feeds.ini │ │ └── id-ID.plg_finder_podcastmanager_feeds.sys.ini ├── podcastmanager_feeds.xml └── script.php ├── plg_finder_podcastmanager_podcasts ├── index.html ├── language │ ├── index.html │ ├── en-GB │ │ ├── index.html │ │ ├── en-GB.plg_finder_podcastmanager_podcasts.ini │ │ └── en-GB.plg_finder_podcastmanager_podcasts.sys.ini │ ├── pt-BR │ │ ├── index.html │ │ ├── pt-BR.plg_finder_podcastmanager_podcasts.ini │ │ └── pt-BR.plg_finder_podcastmanager_podcasts.sys.ini │ ├── fr-CA │ │ ├── index.html │ │ └── fr-CA.plg_finder_podcastmanager_podcasts.sys.ini │ ├── fr-FR │ │ ├── index.html │ │ └── fr-FR.plg_finder_podcastmanager_podcasts.sys.ini │ └── id-ID │ │ ├── index.html │ │ └── id-ID.plg_finder_podcastmanager_podcasts.sys.ini ├── podcastmanager_podcasts.xml └── script.php ├── .gitmodules └── .gitignore /com_podcastmanager/admin/sql/updates/sqlsrv/2.0.0.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/index.html: -------------------------------------------------------------------------------- 1 |
updateInfo->version, $stability) ?>
19 |25 | Powered by Akeeba Live Update 26 |
27 | 28 || 19 | |
|---|
| 24 | |
30 | Powered by Akeeba Live Update 31 |
32 | 33 | -------------------------------------------------------------------------------- /com_podcastmedia/podcastmedia.xml: -------------------------------------------------------------------------------- 1 | 2 || 22 | | 23 | | 24 | |
|---|
| 22 | | 23 | | 24 | |
|---|