├── 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 | -------------------------------------------------------------------------------- /lib_getid3/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/sql/updates/postgresql/2.0.0.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/en-GB/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/fr-CA/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/fr-FR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/id-ID/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/pt-BR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib_getid3/getid3/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/site/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod_podcastmanager/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_podcastmedia_user/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/media/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/media/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/site/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod_podcastmanager/language/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod_podcastmanager/media/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod_podcastmanager/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod_podcastmanagerfeed/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/helpers/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/models/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/sql/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/tables/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/views/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/media/css/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/media/images/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/site/helpers/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/site/language/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/site/models/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/site/views/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/helpers/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/language/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/media/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/media/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/models/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/views/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod_podcastmanager/media/images/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod_podcastmanagerfeed/language/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod_podcastmanagerfeed/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plg_editors-xtd_podcastmanager/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_finder_podcastmanager_feeds/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_podcastmedia_user/language/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/controllers/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/helpers/html/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/language/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/models/forms/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/sql/updates/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/views/cpanel/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/views/feed/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/views/feeds/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/media/images/icons/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/site/helpers/html/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/site/views/feed/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/controllers/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/language/en-GB/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/language/fr-CA/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/language/fr-FR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/language/id-ID/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/language/pt-BR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/models/forms/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/views/audio/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/views/media/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/language/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod_podcastmanager/language/en-GB/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod_podcastmanager/language/pt-BR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod_podcastmanagerfeed/language/en-GB/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod_podcastmanagerfeed/language/pt-BR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/language/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_finder_podcastmanager_podcasts/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_podcastmedia_user/language/en-GB/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_podcastmedia_user/language/pt-BR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/language/en-GB/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/language/fr-CA/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/language/fr-FR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/language/id-ID/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/language/pt-BR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/assets/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/models/fields/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/sql/updates/mysql/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/views/cpanel/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/views/feed/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/views/feeds/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/views/podcast/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/views/podcasts/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/site/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /com_podcastmanager/site/language/en-GB/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/site/language/fr-CA/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/site/language/fr-FR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/site/language/id-ID/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/site/language/pt-BR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/site/models/forms/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /com_podcastmanager/site/views/feed/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/site/views/form/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /com_podcastmanager/site/views/podcast/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/views/audio/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/views/audiolist/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/views/media/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/views/medialist/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/language/en-GB/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/language/fr-CA/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/language/fr-FR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/language/id-ID/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/language/pt-BR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/language/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mod_podcastmanager/language/fr-CA/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mod_podcastmanager/language/fr-FR/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mod_podcastmanager/language/id-ID/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mod_podcastmanagerfeed/language/fr-CA/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mod_podcastmanagerfeed/language/fr-FR/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mod_podcastmanagerfeed/language/id-ID/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/language/en-GB/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/language/pt-BR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/mediaelements/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_editors-xtd_podcastmanager/language/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_finder_podcastmanager_feeds/language/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_podcastmedia_user/language/fr-CA/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plg_podcastmedia_user/language/fr-FR/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plg_podcastmedia_user/language/id-ID/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/classes/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/models/fields/modal/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/sql/updates/postgresql/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/sql/updates/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/views/podcast/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/views/podcasts/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/site/views/form/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /com_podcastmanager/site/views/podcast/tmpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/views/audiolist/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/views/medialist/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/com_podcastmanager/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/com_podcastmedia/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/language/en-GB/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/podcastmanager/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/language/fr-CA/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/language/fr-FR/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/language/id-ID/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/mediaelements/css/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/mediaelements/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_editors-xtd_podcastmanager/language/en-GB/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_editors-xtd_podcastmanager/language/pt-BR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_finder_podcastmanager_feeds/language/en-GB/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_finder_podcastmanager_feeds/language/pt-BR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_finder_podcastmanager_podcasts/language/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/classes/storage/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/classes/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/language/da-DK/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/language/de-DE/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/language/el-GR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/language/en-GB/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/language/es-ES/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/language/fr-FR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/language/hu-HU/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/language/it-IT/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/language/lt-LT/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/language/nb-NO/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/language/nl-NL/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/language/pl-PL/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/language/pt-BR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/language/ru-RU/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/language/sv-SE/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/language/tr-TR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/language/uk-UA/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/com_podcastmanager/feed/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/com_podcastmanager/feeds/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/com_podcastmanager/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/com_podcastmedia/audio/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/com_podcastmedia/media/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/mediaelements/js/jquery-noconflict.js: -------------------------------------------------------------------------------- 1 | jQuery.noConflict(); 2 | -------------------------------------------------------------------------------- /plg_editors-xtd_podcastmanager/language/fr-CA/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plg_editors-xtd_podcastmanager/language/fr-FR/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plg_editors-xtd_podcastmanager/language/id-ID/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plg_finder_podcastmanager_feeds/language/fr-CA/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plg_finder_podcastmanager_feeds/language/fr-FR/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plg_finder_podcastmanager_feeds/language/id-ID/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plg_finder_podcastmanager_podcasts/language/en-GB/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_finder_podcastmanager_podcasts/language/pt-BR/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/com_podcastmanager/cpanel/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/com_podcastmanager/podcast/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/com_podcastmanager/podcasts/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/com_podcastmanager/cpanel/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/com_podcastmanager/feed/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/com_podcastmanager/feeds/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/com_podcastmanager/podcast/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/com_podcastmanager/podcasts/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/com_podcastmedia/audiolist/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/com_podcastmedia/medialist/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_finder_podcastmanager_podcasts/language/fr-CA/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plg_finder_podcastmanager_podcasts/language/fr-FR/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plg_finder_podcastmanager_podcasts/language/id-ID/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "build/phpcs/Joomla"] 2 | path = build/phpcs/Joomla 3 | url = git://github.com/joomla/coding-standards.git 4 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/sql/uninstall.mysql.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS `#__podcastmanager`; 2 | DROP TABLE IF EXISTS `#__podcastmanager_feeds`; 3 | -------------------------------------------------------------------------------- /lib_getid3/getid3/module.audio-video.mpeg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/lib_getid3/getid3/module.audio-video.mpeg.php -------------------------------------------------------------------------------- /com_podcastmanager/admin/sql/uninstall.postgresql.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS "#__podcastmanager"; 2 | DROP TABLE IF EXISTS "#__podcastmanager_feeds"; 3 | -------------------------------------------------------------------------------- /com_podcastmanager/media/images/icons/feeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/com_podcastmanager/media/images/icons/feeds.png -------------------------------------------------------------------------------- /com_podcastmanager/media/images/icons/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/com_podcastmanager/media/images/icons/files.png -------------------------------------------------------------------------------- /com_podcastmanager/admin/sql/updates/mysql/1.7.1.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `#__podcastmanager` CHANGE `itSummary` `itSummary` varchar(5120) NOT NULL default ''; 2 | -------------------------------------------------------------------------------- /com_podcastmanager/media/images/icons/podcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/com_podcastmanager/media/images/icons/podcasts.png -------------------------------------------------------------------------------- /com_podcastmanager/site/views/form/metadata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /com_podcastmanager/site/views/podcast/metadata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /mod_podcastmanager/media/images/podcast-mini2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/mod_podcastmanager/media/images/podcast-mini2.png -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/assets/ok-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/com_podcastmanager/admin/liveupdate/assets/ok-24.png -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/assets/fail-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/com_podcastmanager/admin/liveupdate/assets/fail-24.png -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/assets/warn-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/com_podcastmanager/admin/liveupdate/assets/warn-24.png -------------------------------------------------------------------------------- /com_podcastmanager/site/views/feed/metadata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/assets/current-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/com_podcastmanager/admin/liveupdate/assets/current-32.png -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/assets/update-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/com_podcastmanager/admin/liveupdate/assets/update-32.png -------------------------------------------------------------------------------- /plg_content_podcastmanager/mediaelements/css/bigplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/plg_content_podcastmanager/mediaelements/css/bigplay.png -------------------------------------------------------------------------------- /plg_content_podcastmanager/mediaelements/css/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/plg_content_podcastmanager/mediaelements/css/controls.png -------------------------------------------------------------------------------- /plg_content_podcastmanager/mediaelements/css/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/plg_content_podcastmanager/mediaelements/css/loading.gif -------------------------------------------------------------------------------- /plg_content_podcastmanager/mediaelements/css/skipback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/plg_content_podcastmanager/mediaelements/css/skipback.png -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/assets/liveupdate-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/com_podcastmanager/admin/liveupdate/assets/liveupdate-48.png -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/assets/nosupport-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/com_podcastmanager/admin/liveupdate/assets/nosupport-32.png -------------------------------------------------------------------------------- /plg_content_podcastmanager/mediaelements/css/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/plg_content_podcastmanager/mediaelements/css/background.png -------------------------------------------------------------------------------- /plg_content_podcastmanager/mediaelements/css/bigplay.fw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/plg_content_podcastmanager/mediaelements/css/bigplay.fw.png -------------------------------------------------------------------------------- /plg_content_podcastmanager/mediaelements/css/controls.fw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/plg_content_podcastmanager/mediaelements/css/controls.fw.png -------------------------------------------------------------------------------- /plg_content_podcastmanager/mediaelements/css/controls-ted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/plg_content_podcastmanager/mediaelements/css/controls-ted.png -------------------------------------------------------------------------------- /plg_content_podcastmanager/mediaelements/css/controls-wmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/plg_content_podcastmanager/mediaelements/css/controls-wmp.png -------------------------------------------------------------------------------- /com_podcastmanager/admin/sql/updates/mysql/1.8.3.sql: -------------------------------------------------------------------------------- 1 | UPDATE `#__update_sites` SET `location` = "https://www.babdev.com/updates/podman.xml" WHERE `name` = "Podcast Manager Updates"; 2 | -------------------------------------------------------------------------------- /com_podcastmanager/media/images/icons/icon-16-podcastmanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/com_podcastmanager/media/images/icons/icon-16-podcastmanager.png -------------------------------------------------------------------------------- /com_podcastmanager/media/images/icons/icon-48-podcastmanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/com_podcastmanager/media/images/icons/icon-48-podcastmanager.png -------------------------------------------------------------------------------- /plg_content_podcastmanager/mediaelements/css/controls-wmp-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/plg_content_podcastmanager/mediaelements/css/controls-wmp-bg.png -------------------------------------------------------------------------------- /plg_content_podcastmanager/mediaelements/js/flashmediaelement.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/plg_content_podcastmanager/mediaelements/js/flashmediaelement.swf -------------------------------------------------------------------------------- /plg_content_podcastmanager/mediaelements/js/flashmediaelement-cdn.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/plg_content_podcastmanager/mediaelements/js/flashmediaelement-cdn.swf -------------------------------------------------------------------------------- /plg_content_podcastmanager/mediaelements/js/silverlightmediaelement.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BabDev/Podcast-Manager/HEAD/plg_content_podcastmanager/mediaelements/js/silverlightmediaelement.xap -------------------------------------------------------------------------------- /com_podcastmanager/admin/sql/updates/mysql/1.8.1.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `#__podcastmanager` DROP `itCategory`; 2 | ALTER TABLE `#__podcastmanager_feeds` ADD `newFeed` varchar(255) NOT NULL default '' AFTER `author`; 3 | -------------------------------------------------------------------------------- /com_podcastmanager/site/views/form/tmpl/edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /com_podcastmanager/site/language/en-GB/en-GB.com_podcastmanager.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | COM_PODCASTMANAGER="Podcast Manager" 7 | -------------------------------------------------------------------------------- /com_podcastmanager/site/language/pt-BR/pt-BR.com_podcastmanager.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | COM_PODCASTMANAGER="Podcast Manager" 7 | -------------------------------------------------------------------------------- /com_podcastmanager/site/views/podcast/tmpl/edit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Packages # 2 | *.zip 3 | 4 | # Packages directories # 5 | packages 6 | packaging 7 | releases 8 | 9 | # Update Server # 10 | podman.xml 11 | files_podman_minima.xml 12 | files_podman_hathor.xml 13 | 14 | # SVN # 15 | .svn 16 | 17 | # IDE # 18 | .buildpath 19 | .project 20 | .settings 21 | .DS_Store 22 | .idea 23 | 24 | # Phing # 25 | build.properties 26 | 27 | # External Build Tools # 28 | phing-joomla-extension-builder.xml 29 | build.properties.dist 30 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/sql/updates/sqlsrv/2.1.0.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE [#__podcastmanager] ADD [alias] [nvarchar](255) CONSTRAINT [DF_#__podcastmanager_alias] DEFAULT '' NOT NULL; 2 | ALTER TABLE [#__podcastmanager] ADD [metadata] [nvarchar](max) NOT NULL; 3 | 4 | ALTER TABLE [#__podcastmanager_feeds] ADD [alias] [nvarchar](255) CONSTRAINT [DF_#__podcastmanager_feeds_alias] DEFAULT '' NOT NULL; 5 | ALTER TABLE [#__podcastmanager_feeds] ADD [metadata] [nvarchar](max) NOT NULL; 6 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/sql/updates/mysql/2.1.0.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `#__podcastmanager` ADD `alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' AFTER `title`; 2 | ALTER TABLE `#__podcastmanager` ADD `metadata` text NOT NULL AFTER `language`; 3 | 4 | ALTER TABLE `#__podcastmanager_feeds` ADD `alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' AFTER `name`; 5 | ALTER TABLE `#__podcastmanager_feeds` ADD `metadata` text NOT NULL AFTER `language`; 6 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/language/id-ID/id-ID.files_podcastmanager_hathor.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | FILES_PODCASTMANAGER_HATHOR="Podcast Manager: Penimpa Templat Hathor" 7 | FILES_PODCASTMANAGER_HATHOR_XML_DESCRIPTION="Penimpa HTML ekstensi Podcast Manager untuk templat Hathor" 8 | -------------------------------------------------------------------------------- /language/pt-BR/pt-BR.pkg_podcastmanager.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PKG_PODCASTMANAGER="Pacote de Extensões Podcast Manager" 7 | PKG_PODCASTMANAGER_XML_DESCRIPTION="Podcast Manager é um conjunto de extensões para Joomla! permitindo que os usuários hospedem e produzam feeds de podcast em seus sites." 8 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/language/en-GB/en-GB.files_podcastmanager_hathor.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | FILES_PODCASTMANAGER_HATHOR="Podcast Manager: Hathor Template Overrides" 7 | FILES_PODCASTMANAGER_HATHOR_XML_DESCRIPTION="HTML overrides for the Podcast Manager extensions for the Hathor template" 8 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/language/pt-BR/pt-BR.files_podcastmanager_hathor.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | FILES_PODCASTMANAGER_HATHOR="Podcast Manager: Hathor Template Overrides" 7 | FILES_PODCASTMANAGER_HATHOR_XML_DESCRIPTION="Overrides de HTML para as extensões Podcast Manager para o template Hathor" 8 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/language/en-GB/en-GB.files_podcastmanager_strapped.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | FILES_PODCASTMANAGER_STRAPPED="Podcast Manager: Joomla! 3 Admin Template Layouts" 7 | FILES_PODCASTMANAGER_STRAPPED_XML_DESCRIPTION="HTML layouts for the Podcast Manager extensions for Joomla! 3" 8 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/language/pt-BR/pt-BR.files_podcastmanager_hathor.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | FILES_PODCASTMANAGER_HATHOR="Podcast Manager: Hathor Template Overrides" 7 | FILES_PODCASTMANAGER_HATHOR_XML_DESCRIPTION="Overrides de HTML para as extensões Podcast Manager para o template Hathor" 8 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/language/en-GB/en-GB.files_podcastmanager_strapped.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | FILES_PODCASTMANAGER_STRAPPED="Podcast Manager: Joomla! 3 Admin Template Layouts" 7 | FILES_PODCASTMANAGER_STRAPPED_XML_DESCRIPTION="HTML layouts for the Podcast Manager extensions for Joomla! 3" 8 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/language/fr-FR/fr-FR.files_podcastmanager_hathor.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | FILES_PODCASTMANAGER_HATHOR="Podcast Manager : Overrides pour le template Hathor" 7 | FILES_PODCASTMANAGER_HATHOR_XML_DESCRIPTION="Surcharges HTML pour les extensions de Podcast Manager pour le template Hathor." 8 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/language/fr-CA/fr-CA.files_podcastmanager_hathor.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | FILES_PODCASTMANAGER_HATHOR="Gestionnaire de balados : Annulations du modèle Hathor" 7 | FILES_PODCASTMANAGER_HATHOR_XML_DESCRIPTION="Annulations HTML pour les extensions du gestionnaire de balados, pour le modèle Hathor" 8 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/language/en-GB/en-GB.com_podcastmedia.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | COM_PODCASTMEDIA="Podcast Manager: File Manager" 7 | COM_PODCASTMEDIA_ERROR_INSTALL_UPDATE="Could not retrieve the version from the database, unable to remove old files" 8 | COM_PODCASTMEDIA_XML_DESCRIPTION="Component for managing media for Podcast Manager" 9 | -------------------------------------------------------------------------------- /plg_podcastmedia_user/language/en-GB/en-GB.plg_podcastmedia_user.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PLG_PODCASTMEDIA_USER="Podcast Manager: File Manager - User Directory" 7 | PLG_PODCASTMEDIA_USER_XML_DESCRIPTION="The User Directory plugin tells the media field for podcast editing that the default directory will be the user's personal directory within the default path" 8 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/language/id-ID/id-ID.com_podcastmedia.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | COM_PODCASTMEDIA="Podcast Manager: Pengelolaan Berkas" 7 | COM_PODCASTMEDIA_ERROR_INSTALL_UPDATE="Tidak bisa mengembalikan versi database, tidak dapat membuang berkas-berkas yang lama" 8 | COM_PODCASTMEDIA_XML_DESCRIPTION="Komponen untuk mengelola media bagi Podcast Manager" 9 | -------------------------------------------------------------------------------- /plg_podcastmedia_user/language/en-GB/en-GB.plg_podcastmedia_user.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PLG_PODCASTMEDIA_USER="Podcast Manager: File Manager - User Directory" 7 | PLG_PODCASTMEDIA_USER_XML_DESCRIPTION="The User Directory plugin tells the media field for podcast editing that the default directory will be the user's personal directory within the default path" 8 | -------------------------------------------------------------------------------- /plg_podcastmedia_user/language/pt-BR/pt-BR.plg_podcastmedia_user.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PLG_PODCASTMEDIA_USER="Podcast Manager: Gerenciador de Arquivos - Diretório do Usuário" 7 | PLG_PODCASTMEDIA_USER_XML_DESCRIPTION="O User Directory plugin diz ao campo mídia para o edição do podcast que o diretório padrão será o diretório pessoal do usuário dentro do caminho padrão" 8 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/views/medialist/tmpl/default.php: -------------------------------------------------------------------------------- 1 | Optional Company Name (example.com)" 7 | PKG_PODCASTMANAGER="Podcast Manager Extension Package" 8 | PKG_PODCASTMANAGER_XML_DESCRIPTION="Podcast Manager is a suite of extensions for Joomla! allowing users to host and produce podcast feeds from their site." 9 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/views/cpanel/tmpl/default_navigation.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | plg_podcastmedia_user 4 | ##DATE## 5 | Michael Babker 6 | (C) 2011-2015 Michael Babker 7 | mbabker@flbab.com 8 | https://www.babdev.com 9 | ##VERSION## 10 | GNU/GPL Version 2 or later 11 | PLG_PODCASTMEDIA_USER_XML_DESCRIPTION 12 | 13 | user.php 14 | index.html 15 | language 16 | 17 | 18 | -------------------------------------------------------------------------------- /plg_editors-xtd_podcastmanager/language/en-GB/en-GB.plg_editors-xtd_podcastmanager.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PLG_EDITORS-XTD_PODCASTMANAGER="Button - Podcast Manager" 7 | PLG_EDITORS-XTD_PODCASTMANAGER_ERROR_ACTIVATING_PLUGIN="Could not automatically activate the "_QQ_"Button - Podcast Manager"_QQ_" plugin" 8 | PLG_EDITORS-XTD_PODCASTMANAGER_ERROR_COMPONENT="You do not have Podcast Manager installed. Please install it before installing this plugin." 9 | PLG_EDITORS-XTD_PODCASTMANAGER_XML_DESCRIPTION="The Podcast Manager Button plugin adds a Podcast button to the article editor" 10 | -------------------------------------------------------------------------------- /plg_editors-xtd_podcastmanager/language/id-ID/id-ID.plg_editors-xtd_podcastmanager.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PLG_EDITORS-XTD_PODCASTMANAGER="Tombol - Podcast Manager" 7 | PLG_EDITORS-XTD_PODCASTMANAGER_ERROR_ACTIVATING_PLUGIN="Tidak bisa mengaktifkan plugin "_QQ_"Tombol - Podcast Manager"_QQ_" secara otomatis" 8 | PLG_EDITORS-XTD_PODCASTMANAGER_ERROR_COMPONENT="Anda tidak memiliki Podcast Manager yang terpasang. Silakan pasang sebelum memasang plugin ini." 9 | PLG_EDITORS-XTD_PODCASTMANAGER_XML_DESCRIPTION="Plugin Tombol Podcast Manager menambahkan tombol Podcast ke dalam editor artikel" 10 | -------------------------------------------------------------------------------- /plg_editors-xtd_podcastmanager/language/pt-BR/pt-BR.plg_editors-xtd_podcastmanager.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PLG_EDITORS-XTD_PODCASTMANAGER="Botão - Podcast Manager" 7 | PLG_EDITORS-XTD_PODCASTMANAGER_ERROR_ACTIVATING_PLUGIN="Não foi possível ativar automaticamente o plugin "_QQ_"_QQ_"_QQ_"Botão - Podcast Manager"_QQ_"_QQ_"_QQ_"" 8 | PLG_EDITORS-XTD_PODCASTMANAGER_ERROR_COMPONENT="Você não tem o Podcast Manager instalado. Favor instalá-lo antes de instalar este plugin." 9 | PLG_EDITORS-XTD_PODCASTMANAGER_XML_DESCRIPTION="O plugin Botão Podcast Manager adiciona um botão Podcast ao editor de artigos" 10 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/language/en-GB/en-GB.files_podcastmanager_hathor.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | FILES_PODCASTMANAGER_HATHOR="Podcast Manager: Hathor Template Overrides" 7 | FILES_PODCASTMANAGER_HATHOR_ERROR_COMPONENT="You do not have Podcast Manager installed. Please install it before installing this override package." 8 | FILES_PODCASTMANAGER_HATHOR_ERROR_TEMPLATE="You do not have the Hathor administrator template installed. Please install it before installing this override package." 9 | FILES_PODCASTMANAGER_HATHOR_XML_DESCRIPTION="HTML overrides for the Podcast Manager extensions for the Hathor template" 10 | -------------------------------------------------------------------------------- /plg_editors-xtd_podcastmanager/language/fr-FR/fr-FR.plg_editors-xtd_podcastmanager.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PLG_EDITORS-XTD_PODCASTMANAGER="Bouton - Podcast Manager" 7 | PLG_EDITORS-XTD_PODCASTMANAGER_ERROR_ACTIVATING_PLUGIN="Impossible d'activer automatiquement le plugin "_QQ_"Bouton - Podcast Manager"_QQ_"" 8 | PLG_EDITORS-XTD_PODCASTMANAGER_ERROR_COMPONENT="Vous n'avez pas installé Podcast Manager. Veuillez l'installer avant d'installer ce plugin." 9 | PLG_EDITORS-XTD_PODCASTMANAGER_XML_DESCRIPTION="Le plugin "_QQ_"Bouton - Podcast Manager"_QQ_" ajoute un bouton "_QQ_"Podcast"_QQ_" dans l'éditeur d'articles." 10 | -------------------------------------------------------------------------------- /plg_editors-xtd_podcastmanager/language/fr-CA/fr-CA.plg_editors-xtd_podcastmanager.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PLG_EDITORS-XTD_PODCASTMANAGER="Bouton - Gestionnaire de balados" 7 | PLG_EDITORS-XTD_PODCASTMANAGER_ERROR_ACTIVATING_PLUGIN="Impossible d'activer automatiquement le plugiciel « Bouton - Gestionnaire de balados »" 8 | PLG_EDITORS-XTD_PODCASTMANAGER_ERROR_COMPONENT="Le Gestionnaire de balados n'est pas installé. Veuillez le faire avant d'installer ce plugiciel." 9 | PLG_EDITORS-XTD_PODCASTMANAGER_XML_DESCRIPTION="Le plugiciel « Bouton du gestionnaire de balados » ajoute un bouton « Balado » à l'éditeur d'articles." 10 | -------------------------------------------------------------------------------- /com_podcastmanager/media/css/template.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Podcast Manager for Joomla! 3 | * 4 | * @package PodcastManager 5 | * @subpackage com_podcastmanager 6 | * 7 | * @copyright Copyright (C) 2011-2015 Michael Babker. All rights reserved. 8 | * @license GNU/GPL - http://www.gnu.org/copyleft/gpl.html 9 | * 10 | * Podcast Manager is based upon the ideas found in Podcast Suite created by Joe LeBlanc 11 | * Original copyright (c) 2005 - 2008 Joseph L. LeBlanc and released under the GPLv2 license 12 | */ 13 | 14 | .icon-16-podcastmanager { 15 | background-image: url(../images/icons/icon-16-podcastmanager.png) !important; 16 | } 17 | 18 | .icon-48-podcastmanager { 19 | background-image: url(../images/icons/icon-48-podcastmanager.png) !important; 20 | } 21 | 22 | select#batch-feed-id { 23 | margin-right: 30px; 24 | } 25 | -------------------------------------------------------------------------------- /plg_editors-xtd_podcastmanager/podcastmanager.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | plg_editors-xtd_podcastmanager 4 | ##DATE## 5 | Michael Babker 6 | (C) 2011-2015 Michael Babker 7 | mbabker@flbab.com 8 | https://www.babdev.com 9 | ##VERSION## 10 | GNU/GPL Version 2 or later 11 | PLG_EDITORS-XTD_PODCASTMANAGER_XML_DESCRIPTION 12 | script.php 13 | 14 | podcastmanager.php 15 | index.html 16 | language 17 | 18 | 19 | -------------------------------------------------------------------------------- /com_podcastmanager/site/podcastmanager.php: -------------------------------------------------------------------------------- 1 | input; 20 | 21 | $controller = JControllerLegacy::getInstance('PodcastManager'); 22 | $controller->execute($input->get('task', '', 'cmd')); 23 | $controller->redirect(); 24 | -------------------------------------------------------------------------------- /plg_finder_podcastmanager_feeds/podcastmanager_feeds.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | plg_finder_podcastmanager_feeds 4 | ##DATE## 5 | Michael Babker 6 | (C) 2011-2015 Michael Babker 7 | mbabker@flbab.com 8 | https://www.babdev.com 9 | ##VERSION## 10 | GNU/GPL Version 2 or later 11 | PLG_FINDER_PODCASTMANAGER_FEEDS_XML_DESCRIPTION 12 | script.php 13 | 14 | podcastmanager_feeds.php 15 | index.html 16 | language 17 | 18 | 19 | -------------------------------------------------------------------------------- /plg_finder_podcastmanager_podcasts/podcastmanager_podcasts.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | plg_finder_podcastmanager_podcasts 4 | ##DATE## 5 | Michael Babker 6 | (C) 2011-2015 Michael Babker 7 | mbabker@flbab.com 8 | https://www.babdev.com 9 | ##VERSION## 10 | GNU/GPL Version 2 or later 11 | PLG_FINDER_PODCASTMANAGER_PODCASTS_XML_DESCRIPTION 12 | script.php 13 | 14 | podcastmanager_podcasts.php 15 | index.html 16 | language 17 | 18 | 19 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/sql/updates/mysql/2.0.0.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `#__podcastmanager` ADD `asset_id` int(11) UNSIGNED NOT NULL default '0' AFTER `id`; 2 | ALTER TABLE `#__podcastmanager` ADD `created_by` integer unsigned NOT NULL default '0' AFTER `created`; 3 | ALTER TABLE `#__podcastmanager` ADD `itImage` varchar(255) NOT NULL default '' AFTER `itExplicit`; 4 | ALTER TABLE `#__podcastmanager` ADD `mime` varchar(20) NOT NULL default '' AFTER `itSummary`; 5 | 6 | ALTER TABLE `#__podcastmanager_feeds` ADD `asset_id` int(11) UNSIGNED NOT NULL default '0' AFTER `id`; 7 | ALTER TABLE `#__podcastmanager_feeds` ADD `created_by` integer unsigned NOT NULL default '0' AFTER `created`; 8 | ALTER TABLE `#__podcastmanager_feeds` ADD `boilerplate` varchar(5120) NOT NULL default '' AFTER `description`; 9 | ALTER TABLE `#__podcastmanager_feeds` ADD `bp_position` integer unsigned NOT NULL default '0' AFTER `boilerplate`; 10 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/language/en-GB/en-GB.plg_content_podcastmanager.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PLG_CONTENT_PODCASTMANAGER="Content - Podcast Manager" 7 | PLG_CONTENT_PODCASTMANAGER_ERROR_ACTIVATING_PLUGIN="Could not automatically activate the "_QQ_"Content - Podcast Manager"_QQ_" plugin" 8 | PLG_CONTENT_PODCASTMANAGER_ERROR_COMPONENT="You do not have Podcast Manager installed. Please install it before installing this plugin." 9 | PLG_CONTENT_PODCASTMANAGER_ERROR_INSTALL_UPDATE="Could not retrieve the version from the database, unable to remove old media folders." 10 | PLG_CONTENT_PODCASTMANAGER_XML_DESCRIPTION="The Podcast Manager plugin turns {podcast ...} tags into players and links" 11 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/language/id-ID/id-ID.plg_content_podcastmanager.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PLG_CONTENT_PODCASTMANAGER="Konten - Podcast Manager" 7 | PLG_CONTENT_PODCASTMANAGER_ERROR_ACTIVATING_PLUGIN="Tidak bisa mengaktifkan plugin 'Konten - Podcast Manager' secara otomatis" 8 | PLG_CONTENT_PODCASTMANAGER_ERROR_COMPONENT="Anda tidak memiliki Podcast Manager yang terpasang. Silakan pasang sebelum memasang plugin ini." 9 | PLG_CONTENT_PODCASTMANAGER_ERROR_INSTALL_UPDATE="Tidak bisa mengembalikan versi database, tidak dapat membuang folder-folder media yang lama" 10 | PLG_CONTENT_PODCASTMANAGER_XML_DESCRIPTION="Plugin Podcast Manager membuat tagar {podcast ...} untuk pemutar dan tautan" 11 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
7 | 14 | 20 | 21 | 22 | 23 |
24 |
25 | -------------------------------------------------------------------------------- /mod_podcastmanagerfeed/mod_podcastmanagerfeed.php: -------------------------------------------------------------------------------- 1 | get('moduleclass_sfx')); 21 | 22 | require JModuleHelper::getLayoutPath('mod_podcastmanagerfeed', $params->get('layout', 'default')); 23 | -------------------------------------------------------------------------------- /mod_podcastmanager/tmpl/default.php: -------------------------------------------------------------------------------- 1 | 17 | 18 |
19 | get('text'); ?> 20 |
21 |
22 | 23 | 24 | 25 |
26 | get('plainlink') == 1) : ?> 27 |
28 | 29 | 30 | 31 |
32 | load('com_podcastmedia', JPATH_COMPONENT_ADMINISTRATOR, null, false, false) 20 | || $lang->load('com_podcastmedia', JPATH_COMPONENT_ADMINISTRATOR, $lang->getDefault(), false, false); 21 | 22 | // Hand processing over to the admin base file 23 | require_once JPATH_COMPONENT_ADMINISTRATOR . '/podcastmedia.php'; 24 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/language/fr-CA/fr-CA.plg_content_podcastmanager.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PLG_CONTENT_PODCASTMANAGER="Contenu - Gestionnaire de balados" 7 | PLG_CONTENT_PODCASTMANAGER_ERROR_ACTIVATING_PLUGIN="Impossible d'activer automatiquement le plugiciel « Contenu - Gestionnaire de balados »" 8 | PLG_CONTENT_PODCASTMANAGER_ERROR_COMPONENT="Le gestionnaire de balados n'est pas installé. Veuillez le faire avant d'installer ce plugiciel." 9 | PLG_CONTENT_PODCASTMANAGER_ERROR_INSTALL_UPDATE="Récupération de la version depuis la base de données, et suppression des anciens dossiers de médias impossibles." 10 | PLG_CONTENT_PODCASTMANAGER_XML_DESCRIPTION="Le plugiciel du gestion des balados change les balises {podcast ...} en lecteurs et en liens." 11 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/com_podcastmanager/cpanel/cpanel.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Podcast Manager for Joomla! 3 | * 4 | * @package PodcastManager 5 | * @subpackage files_podcastmanager_hathor 6 | * 7 | * @copyright Copyright (C) 2011-2015 Michael Babker. All rights reserved. 8 | * @license GNU/GPL - http://www.gnu.org/copyleft/gpl.html 9 | * 10 | * Podcast Manager is based upon the ideas found in Podcast Suite created by Joe LeBlanc 11 | * Original copyright (c) 2005 - 2008 Joseph L. LeBlanc and released under the GPLv2 license 12 | */ 13 | 14 | #content .toolbar-box { 15 | border-top: 1px solid #C7C8B2; 16 | } 17 | 18 | #element-box { 19 | padding: 15px; 20 | } 21 | 22 | p#skiptargetholder { 23 | display: none; 24 | } 25 | 26 | #element-box p.intro { 27 | font-size: 12px; 28 | padding-bottom: 5px; 29 | } 30 | 31 | .cpanel-component .pane-slider div { 32 | padding: 5px; 33 | } 34 | 35 | .cpanel-component .pane-slider div ul li { 36 | list-style: disc outside none; 37 | margin-left: 20px; 38 | } 39 | -------------------------------------------------------------------------------- /com_podcastmanager/media/js/podcast.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Podcast Manager for Joomla! 3 | * 4 | * @package PodcastManager 5 | * @subpackage com_podcastmanager 6 | * 7 | * @copyright Copyright (C) 2011-2015 Michael Babker. All rights reserved. 8 | * @license GNU/GPL - http://www.gnu.org/copyleft/gpl.html 9 | * 10 | * Podcast Manager is based upon the ideas found in Podcast Suite created by Joe LeBlanc 11 | * Original copyright (c) 2005 - 2008 Joseph L. LeBlanc and released under the GPLv2 license 12 | */ 13 | 14 | function parseMetadata () { 15 | var fileName = jQuery('input[id=jform_filename]').val(); 16 | 17 | jQuery.post( 18 | 'index.php?option=com_podcastmanager&task=podcast.getMetadata&format=json', 19 | { filename: fileName }, 20 | function(r) { 21 | if (r.error) { 22 | Joomla.renderMessages(r.messages); 23 | } else { 24 | Joomla.removeMessages(); 25 | 26 | jQuery.each(r.data, function(key, value) { 27 | jQuery('input[id=jform_' + key + ']').val(value); 28 | }); 29 | } 30 | } 31 | ); 32 | } 33 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/classes/tmpl/nagscreen.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | defined('_JEXEC') or die(); 9 | 10 | $stability = JText::_('LIVEUPDATE_STABILITY_'.$this->updateInfo->stability); 11 | ?> 12 | 13 |
14 | 15 |
16 |

17 | 18 |

updateInfo->version, $stability) ?>

19 |
20 |

21 | 22 |

23 | 24 |

25 | Powered by Akeeba Live Update 26 |

27 | 28 |
-------------------------------------------------------------------------------- /files_podcastmanager_strapped/com_podcastmedia/audiolist/default_up.php: -------------------------------------------------------------------------------- 1 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | .. 26 | 27 | 28 |   29 | 30 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/config.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | defined('_JEXEC') or die(); 9 | 10 | /** 11 | * Configuration class for your extension's updates. Override to your liking. 12 | */ 13 | class LiveUpdateConfig extends LiveUpdateAbstractConfig 14 | { 15 | var $_extensionName = 'pkg_podcastmanager'; 16 | var $_extensionTitle = 'Podcast Manager'; 17 | var $_requiresAuthorization = false; 18 | var $_updateURL = 'https://www.babdev.com/index.php?option=com_ars&view=update&format=ini&id=3'; 19 | var $_versionStrategy = 'different'; 20 | var $_xmlFilename = 'pkg_podcastmanager.xml'; 21 | 22 | function __construct() 23 | { 24 | jimport('joomla.application.component.helper'); 25 | $podmanparams = JComponentHelper::getParams('com_podcastmanager'); 26 | $this->_minStability = $podmanparams->get('minstability', 'alpha'); 27 | parent::__construct(); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/views/audiolist/tmpl/default_up.php: -------------------------------------------------------------------------------- 1 | 17 | 18 | 19 | 20 | 16, 'height' => 16), true); ?> 21 | 22 | 23 | .. 24 | 25 |   26 | 27 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/mediaelements/css/bigplay.svg: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/views/media/tmpl/default_folders.php: -------------------------------------------------------------------------------- 1 | 18 | 30 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/liveupdate/classes/tmpl/install.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | defined( '_JEXEC' ) or die(); 9 | 10 | $state = $this->get('State'); 11 | $message1 = $state->get('message'); 12 | $message2 = $state->get('extmessage'); 13 | ?> 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 |

30 | Powered by Akeeba Live Update 31 |

32 | 33 | -------------------------------------------------------------------------------- /com_podcastmedia/podcastmedia.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | com_podcastmedia 4 | Michael Babker 5 | ##DATE## 6 | Michael Babker 7 | (C) 2011-2015 Michael Babker 8 | mbabker@flbab.com 9 | https://www.babdev.com 10 | ##VERSION## 11 | GNU/GPL Version 2 or later 12 | COM_PODCASTMEDIA_XML_DESCRIPTION 13 | script.php 14 | 15 | index.html 16 | podcastmedia.php 17 | 18 | 19 | 20 | config.xml 21 | controller.php 22 | index.html 23 | podcastmedia.php 24 | controllers 25 | helpers 26 | language 27 | media 28 | models 29 | views 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/com_podcastmedia/medialist/details_up.php: -------------------------------------------------------------------------------- 1 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | .. 27 | 28 | 29 |   30 | authorise('core.delete', 'com_podcastmanager')) 31 | { ?> 32 |   33 | 34 | 35 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/com_podcastmedia/medialist/thumbs_up.php: -------------------------------------------------------------------------------- 1 | 17 |
  • 18 |
    19 |
    20 | 21 | 22 | 23 |
    24 |
    25 |
    26 |   27 |
    28 |
    29 | .. 30 |
    31 |
  • 32 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/podcastmanager.php: -------------------------------------------------------------------------------- 1 | input; 19 | 20 | // Access check. 21 | if (!JFactory::getUser()->authorise('core.manage', 'com_podcastmanager')) 22 | { 23 | return JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR')); 24 | } 25 | 26 | // Check if Live Update is being accessed and bypass all other component data 27 | require_once JPATH_COMPONENT_ADMINISTRATOR . '/liveupdate/liveupdate.php'; 28 | 29 | if ($input->get('view', '', 'cmd') == 'liveupdate') 30 | { 31 | LiveUpdate::handleRequest(); 32 | 33 | return; 34 | } 35 | 36 | $controller = JControllerLegacy::getInstance('PodcastManager'); 37 | $controller->execute($input->get('task', '', 'cmd')); 38 | $controller->redirect(); 39 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/views/medialist/tmpl/thumbs_up.php: -------------------------------------------------------------------------------- 1 | 17 |
    18 |
    19 | 24 |
    25 |
    26 |   27 |
    28 |
    29 | 30 | .. 31 | 32 |
    33 |
    34 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/views/medialist/tmpl/details_up.php: -------------------------------------------------------------------------------- 1 | 18 | 19 | 20 | 21 | 16, 'height' => 16), true); ?> 22 | 23 | 24 | 25 | 26 | .. 27 | 28 | 29 |   30 | authorise('core.delete', 'com_podcastmanager')) 31 | { ?> 32 |   33 | 34 | 35 | -------------------------------------------------------------------------------- /language/en-GB/en-GB.pkg_podcastmanager.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PODMAN_TRANSLATED_BY="Translated by: Your Name Optional Company Name (example.com)" 7 | PKG_PODCASTMANAGER="Podcast Manager Extension Package" 8 | PKG_PODCASTMANAGER_ERROR_DB_SUPPORT="This release of Podcast Manager is not compatible with your database driver." 9 | PKG_PODCASTMANAGER_ERROR_INSTALL_JVERSION="This release of Podcast Manager requires Joomla! 2.5.6 or newer" 10 | PKG_PODCASTMANAGER_ERROR_INSTALL_PHPVERSION="This release of Podcast Manager requires PHP 5.3 or newer" 11 | PKG_PODCASTMANAGER_XML_DESCRIPTION="Podcast Manager is a suite of extensions for Joomla! allowing users to host and produce podcast feeds from their site." 12 | 13 | ; Install Screen Strings (General) 14 | PKG_PODCASTMANAGER_EXTENSION="Extension" 15 | PKG_PODCASTMANAGER_INSTALLED="Installed" 16 | PKG_PODCASTMANAGER_NA="N/A" 17 | PKG_PODCASTMANAGER_NOT_INSTALLED="Not Installed" 18 | PKG_PODCASTMANAGER_TYPE="Type" 19 | 20 | ; Install Screen Strings for Extensions 21 | GETID3="getID3 Library" 22 | PKG_PODCASTMANAGER_STRAPPED="Joomla! 3 Admin Layouts" 23 | -------------------------------------------------------------------------------- /lib_getid3/getid3/module.misc.par2.php: -------------------------------------------------------------------------------- 1 | // 4 | // available at http://getid3.sourceforge.net // 5 | // or http://www.getid3.org // 6 | // also https://github.com/JamesHeinrich/getID3 // 7 | ///////////////////////////////////////////////////////////////// 8 | // See readme.txt for more details // 9 | ///////////////////////////////////////////////////////////////// 10 | // // 11 | // module.misc.par2.php // 12 | // module for analyzing PAR2 files // 13 | // dependencies: NONE // 14 | // /// 15 | ///////////////////////////////////////////////////////////////// 16 | 17 | 18 | class getid3_par2 extends getid3_handler 19 | { 20 | 21 | public function Analyze() { 22 | $info = &$this->getid3->info; 23 | 24 | $info['fileformat'] = 'par2'; 25 | 26 | $info['error'][] = 'PAR2 parsing not enabled in this version of getID3()'; 27 | return false; 28 | 29 | } 30 | 31 | } 32 | -------------------------------------------------------------------------------- /language/id-ID/id-ID.pkg_podcastmanager.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PODMAN_TRANSLATED_BY="Diterjemahkan oleh: Uring " 7 | PKG_PODCASTMANAGER="Paket Podcast Manager Extension" 8 | PKG_PODCASTMANAGER_ERROR_DB_SUPPORT="Rilis Podcast Manager ini tidak sesuai dengan driver database Anda." 9 | PKG_PODCASTMANAGER_ERROR_INSTALL_JVERSION="Rilis Podcast Manager ini memerlukan Joomla! 2.5.6 atau yang lebih baru" 10 | PKG_PODCASTMANAGER_ERROR_INSTALL_PHPVERSION="Rilis Podcast Manager ini memerlukan PHP 5.3 atau yang lebih baru" 11 | PKG_PODCASTMANAGER_XML_DESCRIPTION="Podcast Manager adalah perangkat ekstensi untuk Joomla! yang mengizinkan pengguna untuk memiliki dan memproduksi pengumpan podcast dari situs mereka." 12 | 13 | ; Install Screen Strings (General) 14 | PKG_PODCASTMANAGER_EXTENSION="Ekstensi" 15 | PKG_PODCASTMANAGER_INSTALLED="Terpasang" 16 | PKG_PODCASTMANAGER_NA="N/A" 17 | PKG_PODCASTMANAGER_NOT_INSTALLED="Tidak Terpasang" 18 | PKG_PODCASTMANAGER_TYPE="Tipe" 19 | 20 | ; Install Screen Strings for Extensions 21 | GETID3="Kepustakaan getID3" 22 | PKG_PODCASTMANAGER_STRAPPED="Tata Letak Admin Joomla! 3" 23 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/views/media/tmpl/default_navigation.php: -------------------------------------------------------------------------------- 1 | get('layout', 'thumbs'); 18 | ?> 19 | 33 | -------------------------------------------------------------------------------- /lib_getid3/getid3/module.misc.pdf.php: -------------------------------------------------------------------------------- 1 | // 4 | // available at http://getid3.sourceforge.net // 5 | // or http://www.getid3.org // 6 | // also https://github.com/JamesHeinrich/getID3 // 7 | ///////////////////////////////////////////////////////////////// 8 | // See readme.txt for more details // 9 | ///////////////////////////////////////////////////////////////// 10 | // // 11 | // module.misc.pdf.php // 12 | // module for analyzing PDF files // 13 | // dependencies: NONE // 14 | // /// 15 | ///////////////////////////////////////////////////////////////// 16 | 17 | 18 | class getid3_pdf extends getid3_handler 19 | { 20 | 21 | public function Analyze() { 22 | $info = &$this->getid3->info; 23 | 24 | $info['fileformat'] = 'pdf'; 25 | 26 | $info['error'][] = 'PDF parsing not enabled in this version of getID3() ['.$this->getid3->version().']'; 27 | return false; 28 | 29 | } 30 | 31 | } 32 | -------------------------------------------------------------------------------- /language/pt-BR/pt-BR.pkg_podcastmanager.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PODMAN_TRANSLATED_BY="Traduzido por: OpenTranslators OpenTranslatorsn (opentranslators.org)" 7 | PKG_PODCASTMANAGER="Pacote de Extensões Podcast Manager" 8 | PKG_PODCASTMANAGER_ERROR_DB_SUPPORT="Este lançamento do Podcast Manager não é compatível com o driver de seu banco de dados." 9 | PKG_PODCASTMANAGER_ERROR_INSTALL_JVERSION="Esta lançamento do Podcast Manager requer Joomla! 2.5 ou mais recente" 10 | PKG_PODCASTMANAGER_ERROR_INSTALL_PHPVERSION="Esta versão do Podcast Manager requer PHP 5.3 ou mais recente" 11 | PKG_PODCASTMANAGER_XML_DESCRIPTION="Podcast Manager é um conjunto de extensões para Joomla! permitindo que os usuários hospedem e produzam feeds de podcast em seus sites." 12 | 13 | ; Install Screen Strings (General) 14 | PKG_PODCASTMANAGER_EXTENSION="Extensão" 15 | PKG_PODCASTMANAGER_INSTALLED="Instalado" 16 | PKG_PODCASTMANAGER_NA="N/A" 17 | PKG_PODCASTMANAGER_NOT_INSTALLED="Não Instalado" 18 | PKG_PODCASTMANAGER_TYPE="Tipo" 19 | 20 | ; Install Screen Strings for Extensions 21 | GETID3="Biblioteca getID3" 22 | PKG_PODCASTMANAGER_STRAPPED="Layouts Admin Joomla! 3" 23 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/language/en-GB/en-GB.plg_content_podcastmanager.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PLG_CONTENT_PODCASTMANAGER="Content - Podcast Manager" 7 | PLG_CONTENT_PODCASTMANAGER_ERROR_INVALID_FILETYPE="The file type for the file %s is not supported by this plugin" 8 | PLG_CONTENT_PODCASTMANAGER_ERROR_INVALID_PLAYER="The %s player specified is not a supported player type" 9 | PLG_CONTENT_PODCASTMANAGER_ERROR_NO_FILEPATH="Could not render the media player, no file path available" 10 | PLG_CONTENT_PODCASTMANAGER_ERROR_PULLING_DATABASE="Could not get the information for the podcast %s from the database." 11 | PLG_CONTENT_PODCASTMANAGER_FIELDSET_ADVANCED_LOADJQUERY_DESCRIPTION="Choose whether to load jQuery with the media player. NOTE: This will only load jQuery once and currently loads version 1.8.3. If another extension (for example, your template) loads jQuery, you can safely disable this option without impacting the media player's performance." 12 | PLG_CONTENT_PODCASTMANAGER_FIELDSET_ADVANCED_LOADJQUERY_LABEL="Load jQuery with Media Player" 13 | PLG_CONTENT_PODCASTMANAGER_XML_DESCRIPTION="The Podcast Manager plugin turns {podcast ...} tags into players and links" 14 | -------------------------------------------------------------------------------- /plg_podcastmedia_user/user.php: -------------------------------------------------------------------------------- 1 | loadLanguage(); 38 | } 39 | 40 | /** 41 | * Appends the user name to the default path 42 | * 43 | * @return string The user name 44 | * 45 | * @since 2.0 46 | */ 47 | public function onPathFind() 48 | { 49 | return JFactory::getUser()->username; 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /mod_podcastmanagerfeed/tmpl/default.php: -------------------------------------------------------------------------------- 1 | 17 |
      18 | 19 |
    • 20 | get('show_item_player') == 1) : 21 | echo $item->text; 22 | else : ?> 23 | 24 | title; ?> 25 | 26 | get('author') == 1 && strlen($item->itAuthor) >= 1) : 27 | echo 'by ' . $item->itAuthor; 28 | endif; 29 | endif; 30 | if ($params->get('description') == 1 && strlen($item->itSummary) >= 1) : 31 | echo '
      ' . $item->itSummary; 32 | endif; 33 | if ($params->get('created') == 1) : 34 | echo '
      ' . JText::sprintf('JGLOBAL_CREATED_DATE_ON', $item->created); 35 | endif; ?> 36 |
    • 37 | 38 |
    39 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/views/audiolist/tmpl/default.php: -------------------------------------------------------------------------------- 1 | 17 |
    18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | loadTemplate('up'); 28 | 29 | // Load the folders 30 | for ($i = 0, $n = count($this->folders); $i < $n; $i++) 31 | { 32 | $this->setFolder($i); 33 | echo $this->loadTemplate('folder'); 34 | } 35 | 36 | // Load the files 37 | for ($i = 0, $n = count($this->audio); $i < $n; $i++) 38 | { 39 | $this->setAudio($i); 40 | echo $this->loadTemplate('audio'); 41 | } ?> 42 | 43 |
    44 |
    45 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/language/pt-BR/pt-BR.plg_content_podcastmanager.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PLG_CONTENT_PODCASTMANAGER="Content - Podcast Manager" 7 | PLG_CONTENT_PODCASTMANAGER_ERROR_INVALID_FILETYPE="O tipo de arquivo para o arquivo %s não é suportado por este plugin" 8 | PLG_CONTENT_PODCASTMANAGER_ERROR_INVALID_PLAYER="O reprodutor %s especificado não é suportado" 9 | PLG_CONTENT_PODCASTMANAGER_ERROR_NO_FILEPATH="Não foi possível executar o mídia player, nenhum caminho de arquivos disponível" 10 | PLG_CONTENT_PODCASTMANAGER_ERROR_PULLING_DATABASE="Não foi possível obter a informação para o podcast %s da base de dados." 11 | PLG_CONTENT_PODCASTMANAGER_FIELDSET_ADVANCED_LOADJQUERY_DESCRIPTION="Escolha se quer carregar jQuery com o mídia player. NOTA: O jQuery será carregado apenas uma vez a versão carregada é a 1.8.3. Se uma outra extensão (por exemplo, o seu template) carrega o jQuery, você pode desativar essa opção sem afetar o desempenho do mídia player." 12 | PLG_CONTENT_PODCASTMANAGER_FIELDSET_ADVANCED_LOADJQUERY_LABEL="Carregar o jQuery com o mídia player." 13 | PLG_CONTENT_PODCASTMANAGER_XML_DESCRIPTION="O plugin Podcast Manager transforma {podcast ...} tags em players e links" 14 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/com_podcastmedia/audiolist/default_folder.php: -------------------------------------------------------------------------------- 1 | input; 18 | ?> 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | _tmp_folder->name; ?> 28 | 29 | 30 |   31 | 32 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/language/id-ID/id-ID.plg_content_podcastmanager.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PLG_CONTENT_PODCASTMANAGER="Konten - Podcast Manager" 7 | PLG_CONTENT_PODCASTMANAGER_ERROR_INVALID_FILETYPE="Tipe berkas untuk %s ini tidak didukung oleh plugin" 8 | PLG_CONTENT_PODCASTMANAGER_ERROR_INVALID_PLAYER="Pemutar %s yang ditentukan bukanlah tipe pemutar yang didukung" 9 | PLG_CONTENT_PODCASTMANAGER_ERROR_NO_FILEPATH="Tidak bisa merender pemutar media, tidak ada jalur berkas yang tersedia" 10 | PLG_CONTENT_PODCASTMANAGER_ERROR_PULLING_DATABASE="Tidak bisa mendapatkan informasi untuk podcast %s dari database." 11 | PLG_CONTENT_PODCASTMANAGER_FIELDSET_ADVANCED_LOADJQUERY_DESCRIPTION="Pilih apakah akan memuat jQuery bersama pemutar medianya. CATATAN: Hal ini hanya akan memuat jQuery sekali saja dan saat ini memuat versi 1.8.3. Kalau ekstensi lain (sebagai contoh, templat Anda) memuat jQuery, maka Anda bisa menonaktifkan opsi ini dengan aman tanpa berdampak pada performa pemutar media." 12 | PLG_CONTENT_PODCASTMANAGER_FIELDSET_ADVANCED_LOADJQUERY_LABEL="Muat jQuery bersama Pemutar Media" 13 | PLG_CONTENT_PODCASTMANAGER_XML_DESCRIPTION="Plugin Podcast Manager membuat tagar {podcast ...} untuk pemutar dan tautan" 14 | -------------------------------------------------------------------------------- /language/fr-CA/fr-CA.pkg_podcastmanager.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PODMAN_TRANSLATED_BY="Traduit par : https://www.transifex.com/accounts/profile/yahoe.001/" 7 | PKG_PODCASTMANAGER="Paquet d'extension du gestionnaire de balados" 8 | PKG_PODCASTMANAGER_ERROR_DB_SUPPORT="Cette version du gestionnaire de balados n'est pas compatible avec le pilote de votre base de données." 9 | PKG_PODCASTMANAGER_ERROR_INSTALL_JVERSION="Cette version du gestionnaire de balados exige Joomla! 2.5.6 ou plus récent" 10 | PKG_PODCASTMANAGER_ERROR_INSTALL_PHPVERSION="Cette version du gestionnaire de balados exige PHP 5.3 ou plus récent" 11 | PKG_PODCASTMANAGER_XML_DESCRIPTION="Le gestionnaire de balados est une suite d'extensions pour Joomla!, permettant aux utilisateurs d'héberger et de produire des flux de balados depuis leur site." 12 | 13 | ; Install Screen Strings (General) 14 | PKG_PODCASTMANAGER_EXTENSION="Extension" 15 | PKG_PODCASTMANAGER_INSTALLED="Installé" 16 | PKG_PODCASTMANAGER_NA="S.O." 17 | PKG_PODCASTMANAGER_NOT_INSTALLED="Non installé" 18 | PKG_PODCASTMANAGER_TYPE="Type" 19 | 20 | ; Install Screen Strings for Extensions 21 | GETID3="Bibliothèque getID3" 22 | PKG_PODCASTMANAGER_STRAPPED="Mise en page d'administration de Joomla! 3" 23 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/controllers/feeds.php: -------------------------------------------------------------------------------- 1 | true)) 40 | { 41 | $model = parent::getModel($name, $prefix, $config); 42 | 43 | return $model; 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/controllers/podcasts.php: -------------------------------------------------------------------------------- 1 | true)) 40 | { 41 | $model = parent::getModel($name, $prefix, $config); 42 | 43 | return $model; 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /com_podcastmedia/admin/views/medialist/tmpl/thumbs.php: -------------------------------------------------------------------------------- 1 | 17 |
    18 |
    19 | loadTemplate('up'); 20 | 21 | // Load the folders 22 | for ($i = 0, $n = count($this->folders); $i < $n; $i++) 23 | { 24 | $this->setFolder($i); 25 | echo $this->loadTemplate('folder'); 26 | } 27 | 28 | // Load the files 29 | for ($i = 0, $n = count($this->audio); $i < $n; $i++) 30 | { 31 | $this->setAudio($i); 32 | echo $this->loadTemplate('audio'); 33 | } ?> 34 | 35 | 36 | 37 | 38 | 39 |
    40 |
    41 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/com_podcastmedia/audiolist/default.php: -------------------------------------------------------------------------------- 1 | 17 |
    18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | loadTemplate('up'); 28 | 29 | // Load the folders 30 | for ($i = 0, $n = count($this->folders); $i < $n; $i++) 31 | { 32 | $this->setFolder($i); 33 | echo $this->loadTemplate('folder'); 34 | } 35 | 36 | // Load the files 37 | for ($i = 0, $n = count($this->audio); $i < $n; $i++) 38 | { 39 | $this->setAudio($i); 40 | echo $this->loadTemplate('audio'); 41 | } ?> 42 | 43 |
    44 |
    45 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/sql/updates/mysql/1.7.0.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `#__podcastmanager` ADD `feedname` int(11) NOT NULL AFTER `filename`; 2 | 3 | ALTER TABLE `#__podcastmanager` DEFAULT CHARSET=utf8; 4 | 5 | CREATE TABLE IF NOT EXISTS `#__podcastmanager_feeds` ( 6 | `id` int(11) NOT NULL auto_increment, 7 | `name` varchar(255) default NULL, 8 | `subtitle` varchar(255) NOT NULL default '', 9 | `description` varchar(5120) NOT NULL default '', 10 | `copyright` varchar(255) NOT NULL default '', 11 | `explicit` tinyint(1) NOT NULL default '0', 12 | `block` tinyint(1) NOT NULL default '0', 13 | `ownername` varchar(255) NOT NULL default '', 14 | `owneremail` varchar(255) NOT NULL default '', 15 | `keywords` varchar(255) NOT NULL default '', 16 | `author` varchar(255) NOT NULL default '', 17 | `image` varchar(255) NOT NULL default '', 18 | `category1` varchar(255) NOT NULL default '', 19 | `category2` varchar(255) NOT NULL default '', 20 | `category3` varchar(255) NOT NULL default '', 21 | `published` tinyint(1) NOT NULL default '0', 22 | `created` datetime NOT NULL default '0000-00-00 00:00:00', 23 | `modified` datetime NOT NULL default '0000-00-00 00:00:00', 24 | `modified_by` integer unsigned NOT NULL default '0', 25 | `checked_out` integer unsigned NOT NULL default '0', 26 | `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00', 27 | `language` char(7) NOT NULL, 28 | PRIMARY KEY (`id`) 29 | ) DEFAULT CHARSET=utf8; 30 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/com_podcastmedia/medialist/thumbs.php: -------------------------------------------------------------------------------- 1 | 17 |
    18 |
      19 | loadTemplate('up'); 20 | 21 | // Load the folders 22 | for ($i = 0, $n = count($this->folders); $i < $n; $i++) 23 | { 24 | $this->setFolder($i); 25 | echo $this->loadTemplate('folder'); 26 | } 27 | 28 | // Load the files 29 | for ($i = 0, $n = count($this->audio); $i < $n; $i++) 30 | { 31 | $this->setAudio($i); 32 | echo $this->loadTemplate('audio'); 33 | } ?> 34 | 35 | 36 | 37 | 38 | 39 |
    40 |
    41 | -------------------------------------------------------------------------------- /mod_podcastmanagerfeed/script.php: -------------------------------------------------------------------------------- 1 | input; 18 | ?> 19 | 20 | 21 | 22 | _tmp_folder->name, array('width' => 16, 'height' => 16), true); ?> 23 | 24 | 25 | 26 | 27 | _tmp_folder->name; ?> 28 | 29 | 30 |   31 | 32 | -------------------------------------------------------------------------------- /lib_getid3/getid3/license.txt: -------------------------------------------------------------------------------- 1 | ///////////////////////////////////////////////////////////////// 2 | /// getID3() by James Heinrich // 3 | // available at http://getid3.sourceforge.net // 4 | // or http://www.getid3.org // 5 | // also https://github.com/JamesHeinrich/getID3 // 6 | ///////////////////////////////////////////////////////////////// 7 | 8 | ***************************************************************** 9 | ***************************************************************** 10 | 11 | getID3() is released under multiple licenses. You may choose 12 | from the following licenses, and use getID3 according to the 13 | terms of the license most suitable to your project. 14 | 15 | GNU GPL: https://gnu.org/licenses/gpl.html (v3) 16 | https://gnu.org/licenses/old-licenses/gpl-2.0.html (v2) 17 | https://gnu.org/licenses/old-licenses/gpl-1.0.html (v1) 18 | 19 | GNU LGPL: https://gnu.org/licenses/lgpl.html (v3) 20 | 21 | Mozilla MPL: http://www.mozilla.org/MPL/2.0/ (v2) 22 | 23 | getID3 Commercial License: http://getid3.org/#gCL (payment required) 24 | 25 | ***************************************************************** 26 | ***************************************************************** 27 | 28 | Copies of each of the above licenses are included in the 'licenses' 29 | directory of the getID3 distribution. 30 | -------------------------------------------------------------------------------- /mod_podcastmanager/mod_podcastmanager.php: -------------------------------------------------------------------------------- 1 | def('text', ''); 21 | $params->def('urischeme', 'http'); 22 | $params->def('plainlink', 1); 23 | 24 | $plainlink = $params->get('otherlink', ''); 25 | $feed = $params->get('feedname', ''); 26 | 27 | if (!$plainlink) 28 | { 29 | $plainlink = JRoute::_(PodcastManagerHelperRoute::getFeedRssRoute($feed), false, 2); 30 | } 31 | 32 | $img = JHtml::_('image', 'mod_podcastmanager/podcast-mini2.png', JText::_('MOD_PODCASTMANAGER_PODCASTFEED'), null, true); 33 | 34 | if ($params->get('urischeme') == 'http') 35 | { 36 | $link = $plainlink; 37 | } 38 | else 39 | { 40 | $link = str_replace(array('http:', 'https:'), $params->get('urischeme') . ':', $plainlink); 41 | } 42 | 43 | require JModuleHelper::getLayoutPath('mod_podcastmanager', $params->get('layout', 'default')); 44 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/language/fr-CA/fr-CA.plg_content_podcastmanager.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PLG_CONTENT_PODCASTMANAGER="Contenu - Gestionnaire de balados" 7 | PLG_CONTENT_PODCASTMANAGER_ERROR_INVALID_FILETYPE="Le type du fichier %s n'est pas pris en charge par ce plugiciel." 8 | PLG_CONTENT_PODCASTMANAGER_ERROR_INVALID_PLAYER="Le lecteur %s spécifié n'est pas d'un type pris en charge." 9 | PLG_CONTENT_PODCASTMANAGER_ERROR_NO_FILEPATH="Le lecteur de médias ne peut pas fonctionner, aucun chemin de fichier de disponible." 10 | PLG_CONTENT_PODCASTMANAGER_ERROR_PULLING_DATABASE="Impossible de récupérer les informations de la balado %s depuis la base de données." 11 | PLG_CONTENT_PODCASTMANAGER_FIELDSET_ADVANCED_LOADJQUERY_DESCRIPTION="Choisir le chargement de JQuery avec le lecteur de médias, ou non. NOTE : Ceci ne chargera JQuery qu'une fois et actuellement dans sa version 1.8.3. Si une autre extension (par exemple votre modèle) charge JQuery, vous pouvez désactiver cette option sans conséquence sur la performance du lecteur de médias." 12 | PLG_CONTENT_PODCASTMANAGER_FIELDSET_ADVANCED_LOADJQUERY_LABEL="Charger JQuery avec le lecteur de médias." 13 | PLG_CONTENT_PODCASTMANAGER_XML_DESCRIPTION="Le plugiciel de gestion des balados change les balises {podcast ...} en lecteurs et en liens." 14 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/language/fr-FR/fr-FR.plg_content_podcastmanager.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PLG_CONTENT_PODCASTMANAGER="Contenu - Podcast Manager" 7 | PLG_CONTENT_PODCASTMANAGER_ERROR_INVALID_FILETYPE="Le type de fichier du fichier %s n'est pas supporté par ce plugin." 8 | PLG_CONTENT_PODCASTMANAGER_ERROR_INVALID_PLAYER="Le lecteur %s spécifié ne fait pas parti des types de lecteurs supportés." 9 | PLG_CONTENT_PODCASTMANAGER_ERROR_NO_FILEPATH="Impossible d'afficher le lecteur, chemin du fichier introuvable." 10 | PLG_CONTENT_PODCASTMANAGER_ERROR_PULLING_DATABASE="Impossible de récupérer les informations du podcast %s depuis la base de données." 11 | PLG_CONTENT_PODCASTMANAGER_FIELDSET_ADVANCED_LOADJQUERY_DESCRIPTION="Choisissez si vous souhaitez charger jQuery avec le lecteur multimédia. NOTE : Cela ne chargera jQuery qu'une fois et chargera la version 1.8.3. Si une autre extension (par exemple votre template) charge jQuery, vous pouvez désactiver cette option en toute sécurité sans affecter les performances du lecteur multimédia." 12 | PLG_CONTENT_PODCASTMANAGER_FIELDSET_ADVANCED_LOADJQUERY_LABEL="Charge jQuery avec le lecteur multimédia." 13 | PLG_CONTENT_PODCASTMANAGER_XML_DESCRIPTION="Le plugin Podcast Manager affiche à la place de la balise {podcast ...} les lecteurs et les liens." 14 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/access.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
    12 |
    13 | 14 | 15 | 16 | 17 | 18 |
    19 |
    -------------------------------------------------------------------------------- /files_podcastmanager_strapped/com_podcastmedia/media/default_folders.php: -------------------------------------------------------------------------------- 1 | folders['data']->relative); 19 | ?> 20 | 35 | -------------------------------------------------------------------------------- /language/fr-FR/fr-FR.pkg_podcastmanager.sys.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | PODMAN_TRANSLATED_BY="Traduction par : Opentranslators Opentranslators (opentranslators.org), Marc Antoine Thevenet idimWeb (idimweb.com)" 7 | PKG_PODCASTMANAGER="Paquet d'extensions pour Podcast Manager" 8 | PKG_PODCASTMANAGER_ERROR_DB_SUPPORT="Cette version de Podcast Manager n'est pas compatible avec le pilote de votre base de données." 9 | PKG_PODCASTMANAGER_ERROR_INSTALL_JVERSION="Cette version de Podcast Manager nécessite la version 2.5.6 de Joomla! ou plus récente." 10 | PKG_PODCASTMANAGER_ERROR_INSTALL_PHPVERSION="Cette version de Podcast Manager nécessite la version PHP 5.3 ou plus récente." 11 | PKG_PODCASTMANAGER_XML_DESCRIPTION="Podcast Manager est une suite d'extensions pour Joomla! qui permet aux utilisateurs d'héberger et de produire des flux de podcast pour leur site." 12 | 13 | ; Install Screen Strings (General) 14 | PKG_PODCASTMANAGER_EXTENSION="Extension" 15 | PKG_PODCASTMANAGER_INSTALLED="Installé" 16 | PKG_PODCASTMANAGER_NA="Indisponible" 17 | PKG_PODCASTMANAGER_NOT_INSTALLED="Pas installé" 18 | PKG_PODCASTMANAGER_TYPE="Type" 19 | 20 | ; Install Screen Strings for Extensions 21 | GETID3="Bibliothèque getID3" 22 | PKG_PODCASTMANAGER_STRAPPED="Mise en page de l'interface d'administration de Joomla! 3" 23 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/podcastmanager_hathor.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | files_podcastmanager_hathor 4 | ##DATE## 5 | Michael Babker 6 | (C) 2011-2015 Michael Babker 7 | mbabker@flbab.com 8 | https://www.babdev.com 9 | ##VERSION## 10 | GNU/GPL Version 2 or later 11 | FILES_PODCASTMANAGER_HATHOR_XML_DESCRIPTION 12 | script.php 13 | 14 | 15 | cpanel 16 | feed 17 | feeds 18 | podcast 19 | podcasts 20 | index.html 21 | 22 | 23 | 24 | en-GB/en-GB.files_podcastmanager_hathor.ini 25 | en-GB/en-GB.files_podcastmanager_hathor.sys.ini 26 | pt-BR/pt-BR.files_podcastmanager_hathor.ini 27 | pt-BR/pt-BR.files_podcastmanager_hathor.sys.ini 28 | 29 | 30 | https://www.babdev.com/updates/files_podman_hathor.xml 31 | 32 | 33 | -------------------------------------------------------------------------------- /plg_content_podcastmanager/podcastmanager.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | plg_content_podcastmanager 4 | ##DATE## 5 | Michael Babker 6 | (C) 2011-2015 Michael Babker 7 | mbabker@flbab.com 8 | https://www.babdev.com 9 | ##VERSION## 10 | GNU/GPL Version 2 or later 11 | PLG_CONTENT_PODCASTMANAGER_XML_DESCRIPTION 12 | script.php 13 | 14 | podcastmanager.php 15 | player.php 16 | index.html 17 | language 18 | 19 | 20 | css 21 | js 22 | index.html 23 | 24 | 25 | 26 |
    27 | 34 | 36 | 38 | 39 |
    40 |
    41 |
    42 |
    43 | -------------------------------------------------------------------------------- /plg_finder_podcastmanager_feeds/script.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | files_podcastmanager_strapped 4 | ##DATE## 5 | Michael Babker 6 | (C) 2011-2015 Michael Babker 7 | mbabker@flbab.com 8 | https://www.babdev.com 9 | ##VERSION## 10 | GNU/GPL Version 2 or later 11 | FILES_PODCASTMANAGER_STRAPPED_XML_DESCRIPTION 12 | 13 | 14 | cpanel 15 | feed 16 | feeds 17 | podcast 18 | podcasts 19 | index.html 20 | 21 | 22 | audio 23 | audiolist 24 | media 25 | medialist 26 | index.html 27 | 28 | 29 | index.html 30 | mediamanager.js 31 | popup-audiomanager.js 32 | 33 | 34 | 35 | en-GB/en-GB.files_podcastmanager_strapped.ini 36 | en-GB/en-GB.files_podcastmanager_strapped.sys.ini 37 | 38 | 39 | -------------------------------------------------------------------------------- /mod_podcastmanagerfeed/language/pt-BR/pt-BR.mod_podcastmanagerfeed.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | MOD_PODCASTMANAGERFEED="Listagem de Feeds do Podcast Manager" 7 | MOD_PODCASTMANAGERFEED_FIELD_AUTHOR_DESCRIPTION="Escolha se quer exibir o autor do podcast." 8 | MOD_PODCASTMANAGERFEED_FIELD_AUTHOR_LABEL="Exibir autor do podcast" 9 | MOD_PODCASTMANAGERFEED_FIELD_COUNT_DESC="O número de episódios de podcast a exibir." 10 | MOD_PODCASTMANAGERFEED_FIELD_COUNT_LABEL="Contar" 11 | MOD_PODCASTMANAGERFEED_FIELD_CREATED_DESCRIPTION="Escolha se quer exibir a data de criação do podcast." 12 | MOD_PODCASTMANAGERFEED_FIELD_CREATED_LABEL="Exibir data de criação do podcast" 13 | MOD_PODCASTMANAGERFEED_FIELD_DESCRIPTION_DESCRIPTION="Escolha se quer exibir o resumo do podcast." 14 | MOD_PODCASTMANAGERFEED_FIELD_DESCRIPTION_LABEL="Exibir resumo do podcast" 15 | MOD_PODCASTMANAGERFEED_FIELD_FEEDNAME_DESCRIPTION="O feed ao qual linkar este módulo." 16 | MOD_PODCASTMANAGERFEED_FIELD_FEEDNAME_LABEL="Feed" 17 | MOD_PODCASTMANAGERFEED_FIELD_SHOW_ITEM_PLAYER_DESCRIPTION="Se definido como sim, em seguida, exibir o media player para cada episódio listado. O Plugin Gerenciador de Conteúdo de Podcast deve estar habilitado para o reprodutor renderizar." 18 | MOD_PODCASTMANAGERFEED_FIELD_SHOW_ITEM_PLAYER_LABEL="Mostrar reprodutor de Podcast" 19 | MOD_PODCASTMANAGERFEED_XML_DESCRIPTION="O módulo de Listagem de Feeds do Podcast Manager oferece uma listagem dos últimos episódios de podcast publicados em um feed específico." 20 | -------------------------------------------------------------------------------- /files_podcastmanager_hathor/script.php: -------------------------------------------------------------------------------- 1 | trigger('onContentBeforeDisplay', array('com_podcastmedia.file', &$this->_tmp_audio, &$params)); 20 | ?> 21 | 22 | 23 | 24 | _tmp_audio->icon_16, $this->_tmp_audio->name, null, true, true) ? JHtml::_('image', $this->_tmp_audio->icon_16, $this->_tmp_audio->title, null, true) : JHtml::_('image', 'media/con_info.png', $this->_tmp_audio->name, null, true); ?> 25 | 26 | 27 | 28 | 29 | escape($this->_tmp_audio->title); ?> 30 | 31 | 32 | 33 | _tmp_audio->size); ?> 34 | 35 | 36 | trigger('onContentAfterDisplay', array('com_podcastmedia.file', &$this->_tmp_audio, &$params)); 38 | -------------------------------------------------------------------------------- /lib_getid3/getid3/module.misc.msoffice.php: -------------------------------------------------------------------------------- 1 | // 4 | // available at http://getid3.sourceforge.net // 5 | // or http://www.getid3.org // 6 | // also https://github.com/JamesHeinrich/getID3 // 7 | ///////////////////////////////////////////////////////////////// 8 | // See readme.txt for more details // 9 | ///////////////////////////////////////////////////////////////// 10 | // // 11 | // module.misc.msoffice.php // 12 | // module for analyzing MS Office (.doc, .xls, etc) files // 13 | // dependencies: NONE // 14 | // /// 15 | ///////////////////////////////////////////////////////////////// 16 | 17 | 18 | class getid3_msoffice extends getid3_handler 19 | { 20 | 21 | public function Analyze() { 22 | $info = &$this->getid3->info; 23 | 24 | $this->fseek($info['avdataoffset']); 25 | $DOCFILEheader = $this->fread(8); 26 | $magic = "\xD0\xCF\x11\xE0\xA1\xB1\x1A\xE1"; 27 | if (substr($DOCFILEheader, 0, 8) != $magic) { 28 | $info['error'][] = 'Expecting "'.getid3_lib::PrintHexBytes($magic).'" at '.$info['avdataoffset'].', found '.getid3_lib::PrintHexBytes(substr($DOCFILEheader, 0, 8)).' instead.'; 29 | return false; 30 | } 31 | $info['fileformat'] = 'msoffice'; 32 | 33 | $info['error'][] = 'MS Office (.doc, .xls, etc) parsing not enabled in this version of getID3() ['.$this->getid3->version().']'; 34 | return false; 35 | 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /com_podcastmanager/admin/controllers/podcast.json.php: -------------------------------------------------------------------------------- 1 | input->post->get('filename', '', 'string'); 38 | 39 | $response = array(); 40 | 41 | try 42 | { 43 | $response['data'] = PodcastManagerHelper::fillMetaData($filename); 44 | $response['error'] = false; 45 | 46 | // Something in the messages array causes issues with JSON encoding, remove it 47 | unset($response['data']->messages); 48 | } 49 | catch (RuntimeException $e) 50 | { 51 | $response['error'] = true; 52 | $response['messages'] = array('warning' => array($e->getMessage())); 53 | } 54 | 55 | echo json_encode($response); 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /com_podcastmanager/site/controllers/podcast.json.php: -------------------------------------------------------------------------------- 1 | input->post->get('filename', '', 'string'); 38 | 39 | $response = array(); 40 | 41 | try 42 | { 43 | $response['data'] = PodcastManagerHelper::fillMetaData($filename); 44 | $response['error'] = false; 45 | 46 | // Something in the messages array causes issues with JSON encoding, remove it 47 | unset($response['data']->messages); 48 | } 49 | catch (RuntimeException $e) 50 | { 51 | $response['error'] = true; 52 | $response['messages'] = array('warning' => array($e->getMessage())); 53 | } 54 | 55 | echo json_encode($response); 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /mod_podcastmanagerfeed/language/fr-CA/fr-CA.mod_podcastmanagerfeed.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | MOD_PODCASTMANAGERFEED="Listage de flux du gestionnaire de balados" 7 | MOD_PODCASTMANAGERFEED_FIELD_AUTHOR_DESCRIPTION="Choisir d'afficher l'auteur du podcast, ou non. Ceci ne s'affichera pas si le lecteur est activé." 8 | MOD_PODCASTMANAGERFEED_FIELD_AUTHOR_LABEL="Afficher l'auteur de la balado" 9 | MOD_PODCASTMANAGERFEED_FIELD_COUNT_DESC="Le nombre d'épisodes de balados à afficher." 10 | MOD_PODCASTMANAGERFEED_FIELD_COUNT_LABEL="Nombre" 11 | MOD_PODCASTMANAGERFEED_FIELD_CREATED_DESCRIPTION="Choisir l'affichage de la date de création de la balado, ou non." 12 | MOD_PODCASTMANAGERFEED_FIELD_CREATED_LABEL="Afficher la date de création de la balado" 13 | MOD_PODCASTMANAGERFEED_FIELD_DESCRIPTION_DESCRIPTION="Choisir l'affichage du résumé de la balado, ou non." 14 | MOD_PODCASTMANAGERFEED_FIELD_DESCRIPTION_LABEL="Afficher le résumé de la balado" 15 | MOD_PODCASTMANAGERFEED_FIELD_FEEDNAME_DESCRIPTION="Le flux auquel relier ce module." 16 | MOD_PODCASTMANAGERFEED_FIELD_FEEDNAME_LABEL="Flux" 17 | MOD_PODCASTMANAGERFEED_FIELD_SHOW_ITEM_PLAYER_DESCRIPTION="Si réglé sur oui, affiche alors le lecteur de médias pour chaque épisode listé. Le plugiciel de contenu du gestionnaire de balados doit être activé pour que ce lecteur fonctionne." 18 | MOD_PODCASTMANAGERFEED_FIELD_SHOW_ITEM_PLAYER_LABEL="Afficher le lecteur de balado" 19 | MOD_PODCASTMANAGERFEED_XML_DESCRIPTION="Le module de listage de flux du gestionnaire de balados fournit une liste des épisodes de balados les plus récents publiés dans un flux spécifié." 20 | -------------------------------------------------------------------------------- /files_podcastmanager_strapped/com_podcastmedia/audiolist/default_audio.php: -------------------------------------------------------------------------------- 1 | trigger('onContentBeforeDisplay', array('com_podcastmedia.file', &$this->_tmp_audio, &$params)); 20 | ?> 21 | 22 | 23 | 24 | _tmp_audio->icon_16, $this->_tmp_audio->name, null, true, true) ? JHtml::_('image', $this->_tmp_audio->icon_16, $this->_tmp_audio->title, null, true) : JHtml::_('image', 'media/con_info.png', $this->_tmp_audio->name, null, true); ?> 25 | 26 | 27 | 28 | 29 | escape($this->_tmp_audio->title); ?> 30 | 31 | 32 | 33 | _tmp_audio->size); ?> 34 | 35 | 36 | trigger('onContentAfterDisplay', array('com_podcastmedia.file', &$this->_tmp_audio, &$params)); 38 | -------------------------------------------------------------------------------- /mod_podcastmanager/language/fr-CA/fr-CA.mod_podcastmanager.ini: -------------------------------------------------------------------------------- 1 | ; Podcast Manager for Joomla! 2 | ; Copyright (C) 2011-2015 Michael Babker. All rights reserved. 3 | ; Note : All ini files need to be saved as UTF-8 - No BOM 4 | ; Double quotes in the values have to be formatted as "_QQ_" 5 | 6 | MOD_PODCASTMANAGER="Gestionnaire de balados" 7 | MOD_PODCASTMANAGER_FIELD_CACHE_DESCRIPTION="Choisir la mise en cache le contenu de ce module, ou non." 8 | MOD_PODCASTMANAGER_FIELD_CACHE_LABEL="Mise en cache" 9 | MOD_PODCASTMANAGER_FIELD_FEEDNAME_DESCRIPTION="Le flux auquel est relié ce module." 10 | MOD_PODCASTMANAGER_FIELD_FEEDNAME_LABEL="Flux" 11 | MOD_PODCASTMANAGER_FIELD_OTHERLINK_DESCRIPTION="Saisir le lien personnalisé à utiliser, par exemple un lien pour les abonnements d'iTunes ." 12 | MOD_PODCASTMANAGER_FIELD_OTHERLINK_LABEL="Autre lien" 13 | MOD_PODCASTMANAGER_FIELD_PLAINLINK_DESCRIPTION="Réglez cette option sur « Oui » pour afficher un lien supplémentaire « Flux complet » qui utilise http://. Si vous avez un lien non-http d'activé ci-dessus, c'est utile pour les utilisateurs qui ne peuvent pas faire d'abonnements en un seul clic ." 14 | MOD_PODCASTMANAGER_FIELD_PLAINLINK_LABEL="Afficher le lien plat" 15 | MOD_PODCASTMANAGER_FIELD_TEXT_DESCRIPTION="Saisir tout texte à afficher avec le lien RSS." 16 | MOD_PODCASTMANAGER_FIELD_TEXT_LABEL="Texte de lien RSS" 17 | MOD_PODCASTMANAGER_FIELD_URISCHEME_DESCRIPTION="Définir cette option permet les abonnements en un seul clic pour les utilisateurs d'iTunes." 18 | MOD_PODCASTMANAGER_FIELD_URISCHEME_LABEL="Modèle d'URI" 19 | MOD_PODCASTMANAGER_FULLFEED="Flux complet" 20 | MOD_PODCASTMANAGER_PODCASTFEED="Flux de balado" 21 | MOD_PODCASTMANAGER_XML_DESCRIPTION="Le module de gestion de balados fournit des liens pour que des visiteurs du site puissent s'abonner à vos flux de balados." 22 | -------------------------------------------------------------------------------- /com_podcastmanager/site/views/feed/tmpl/feed.php: -------------------------------------------------------------------------------- 1 | feed->id) && $this->user->authorise('core.edit', 'com_podcastmanager.feed.' . $this->feed->id); 19 | ?> 20 |
    21 | params->def('show_page_heading', 1)) : ?> 22 |

    escape($this->params->get('page_heading')); ?>

    23 | feed->name) && $this->params->get('show_feed_title', 1)) : ?> 25 |

    feed->name); ?>

    26 | params->get('show_feed_description', 1) || $this->params->get('show_feed_image', 1)) : ?> 28 |
    29 | params->get('show_feed_image') && $this->feed->image) : ?> 30 | 31 | params->get('show_feed_description') && $this->feed->description) : 33 | echo JHtml::_('content.prepare', $this->feed->description); 34 | endif; ?> 35 |
    36 |
    37 | feed, $this->params); 40 | endif; 41 | echo $this->loadTemplate('items'); ?> 42 |
    43 | --------------------------------------------------------------------------------