├── .editorconfig ├── .gitignore ├── LICENSE.txt ├── README.md ├── admin ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── podcastpedia │ │ │ └── admin │ │ │ ├── authentication │ │ │ └── AuthenticationController.java │ │ │ ├── controllers │ │ │ └── propertyeditors │ │ │ │ └── UpdateFrequencyTypeEditor.java │ │ │ ├── dao │ │ │ ├── AdminToolsDao.java │ │ │ ├── DeleteDao.java │ │ │ ├── InsertDao.java │ │ │ ├── ReadDao.java │ │ │ ├── UpdateDao.java │ │ │ └── helper │ │ │ │ └── InputMarkNewEpisodesAsNew.java │ │ │ ├── delete │ │ │ ├── DeleteController.java │ │ │ ├── DeleteService.java │ │ │ └── DeleteServiceImpl.java │ │ │ ├── homepage │ │ │ └── HomePageController.java │ │ │ ├── insert │ │ │ ├── EmailNotificationService.java │ │ │ ├── EmailNotificationServiceImpl.java │ │ │ ├── InsertController.java │ │ │ ├── InsertService.java │ │ │ ├── InsertServiceImpl.java │ │ │ ├── ProposedPodcast.java │ │ │ ├── SocialMediaService.java │ │ │ ├── SocialMediaServiceImpl.java │ │ │ └── UploadFileForm.java │ │ │ ├── sitemaps │ │ │ ├── SitemapByFrequencyForm.java │ │ │ ├── SitemapService.java │ │ │ ├── SitemapServiceImpl.java │ │ │ └── SitemapsController.java │ │ │ ├── update │ │ │ ├── UpdateEpisodesController.java │ │ │ ├── UpdateService.java │ │ │ ├── UpdateServiceImpl.java │ │ │ ├── UpdateServiceImplDifferentPubDateLogic.java │ │ │ ├── batch │ │ │ │ ├── BatchUpdateController.java │ │ │ │ ├── BatchUpdateService.java │ │ │ │ └── BatchUpdateServiceImpl.java │ │ │ ├── feed │ │ │ │ ├── UpdateFeedAttributesController.java │ │ │ │ ├── UpdateFeedAttributesService.java │ │ │ │ └── UpdateFeedAttributesServiceImpl.java │ │ │ └── metadata │ │ │ │ ├── UpdateMetadataController.java │ │ │ │ ├── UpdateMetadataService.java │ │ │ │ └── UpdateMetadataServiceImpl.java │ │ │ └── util │ │ │ ├── PodcastAndEpisodeAttributesService.java │ │ │ ├── PodcastAndEpisodeAttributesServiceImpl.java │ │ │ ├── SyndFeedService.java │ │ │ ├── SyndFeedServiceImpl.java │ │ │ ├── forms │ │ │ ├── PodcastByFeedUrlForm.java │ │ │ ├── PodcastByIdForm.java │ │ │ ├── UpdatePodcastsByFrequencyForm.java │ │ │ └── UserByEmailForm.java │ │ │ ├── read │ │ │ ├── ReadService.java │ │ │ └── ReadServiceImpl.java │ │ │ └── restclient │ │ │ ├── RestClient.java │ │ │ ├── RestClientImpl.java │ │ │ └── RestController.java │ ├── resources │ │ ├── config │ │ │ ├── jetty9-dev.xml │ │ │ ├── jetty9.xml │ │ │ └── mybatisV3-config.xml │ │ ├── facebook4j.properties │ │ ├── log4j │ │ │ ├── log4j.dev.xml │ │ │ ├── log4j.dtd │ │ │ └── log4j.xml │ │ ├── mappers │ │ │ ├── AdminToolsMapper.xml │ │ │ ├── DeleteMapper.xml │ │ │ ├── InsertMapper.xml │ │ │ ├── ReadMapper.xml │ │ │ └── UpdateMapper.xml │ │ ├── spring │ │ │ ├── applicationContext-admin-security.xml │ │ │ ├── applicationContext-admin.xml │ │ │ ├── data-source.xml │ │ │ └── tiles-context.xml │ │ └── twitter4j.properties │ └── webapp │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── context-admin-dev.xml │ │ └── context.xml │ │ ├── WEB-INF │ │ ├── index.jsp │ │ ├── jsp │ │ │ ├── delete │ │ │ │ └── delete_podcasts.jsp │ │ │ ├── error │ │ │ │ └── defaultErrorPage.jsp │ │ │ ├── homepage │ │ │ │ └── admin_homepage.jsp │ │ │ ├── insert │ │ │ │ └── add_podcasts_from_file.jsp │ │ │ ├── security │ │ │ │ ├── denied.jsp │ │ │ │ ├── login.jsp │ │ │ │ └── session_expired.jsp │ │ │ ├── sitemaps │ │ │ │ └── sitemaps.jsp │ │ │ └── update │ │ │ │ ├── batch_update_by_frequency.jsp │ │ │ │ ├── update_categories_and_tags_form.jsp │ │ │ │ ├── update_feed_attributes.jsp │ │ │ │ ├── update_individual_podcast_episodes.jsp │ │ │ │ └── update_podcast_metadata.jsp │ │ ├── template │ │ │ ├── defaultContent.jsp │ │ │ ├── defaultHeader.jsp │ │ │ ├── defaultMenu.jsp │ │ │ ├── empty.jsp │ │ │ ├── includes.jsp │ │ │ └── template.jsp │ │ ├── tile-defs │ │ │ └── templates.xml │ │ └── web.xml │ │ └── static │ │ ├── bootstrap-3.1.1-dist.zip │ │ ├── bootstrap-3.1.1-dist │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── style.css │ │ └── theme │ │ │ └── theme.css │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ ├── images │ │ ├── img01.jpg │ │ ├── img02-1.jpg │ │ ├── img02.jpg │ │ ├── img03.jpg │ │ ├── img04.jpg │ │ ├── img05.jpg │ │ ├── img06.jpg │ │ ├── podcast-tm.jpg │ │ └── spacer.gif │ │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ └── test │ ├── java │ └── org │ │ └── podcastpedia │ │ └── admin │ │ ├── config │ │ └── impl │ │ │ └── ConfigBeanJdbcImplIT.java │ │ ├── dao │ │ └── mybatis │ │ │ ├── AdminToolsDaoIT.java │ │ │ ├── DeleteDaoIT.java │ │ │ ├── InsertDaoIT.java │ │ │ ├── ReadDaoIT.java │ │ │ └── UpdateDaoIT.java │ │ ├── feed │ │ └── EncodingIT.java │ │ ├── general │ │ ├── CollectionsTest.java │ │ ├── FbLike.java │ │ ├── ParseSyndFeedsIT.java │ │ ├── SocialApisTest.java │ │ ├── TestLocaleLanguageCodes.java │ │ ├── TestSetPodcastFromFile.java │ │ └── TwitterPostingIT.java │ │ ├── httpclient │ │ └── HttpClientIT.java │ │ ├── insert │ │ └── EmailNotificationServiceImplTest.java │ │ ├── service │ │ ├── SitemapServiceIT.java │ │ ├── UpdateServiceImplIT.java │ │ └── utils │ │ │ └── impl │ │ │ └── UtilsImplTest.java │ │ └── test │ │ └── util │ │ ├── TestUtils.java │ │ └── impl │ │ └── TestUtilsImpl.java │ └── resources │ ├── dao │ ├── data-source-test.xml │ └── test-spring-context.xml │ ├── data-source-test.xml │ ├── db │ └── db.properties │ ├── facebook4j.properties │ ├── jetty-context.xml │ ├── log4j.properties │ ├── test-spring-admin-context.xml │ └── twitter4j.properties ├── api ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── podcastpedia │ │ │ └── api │ │ │ ├── JaxRsApplication.java │ │ │ ├── manifest │ │ │ ├── ImplementationDetails.java │ │ │ ├── ManifestResource.java │ │ │ └── ManifestService.java │ │ │ ├── podcast │ │ │ ├── CategoryResource.java │ │ │ ├── PodcastResource.java │ │ │ └── TagResource.java │ │ │ └── search │ │ │ └── SearchResource.java │ ├── resources │ │ ├── config │ │ │ └── jetty9.xml │ │ └── spring │ │ │ ├── applicationContext-api.xml │ │ │ └── securityContext-api.xml │ └── webapp │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── context.xml │ │ └── WEB-INF │ │ └── web.xml │ └── test │ └── resources │ └── jetty-context.xml ├── common ├── README.md ├── pom.xml ├── pom.xml.releaseBackup ├── release.properties └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── podcastpedia │ │ │ └── common │ │ │ ├── controllers │ │ │ └── propertyeditors │ │ │ │ ├── MediaTypeEditor.java │ │ │ │ └── UpdateFrequencyTypeEditor.java │ │ │ ├── domain │ │ │ ├── Category.java │ │ │ ├── Episode.java │ │ │ ├── EpisodeVote.java │ │ │ ├── EpisodeWrapper.java │ │ │ ├── Podcast.java │ │ │ ├── PodcastCategory.java │ │ │ ├── PodcastTag.java │ │ │ ├── PodcastVote.java │ │ │ ├── Rating.java │ │ │ ├── RatingData.java │ │ │ ├── Subscription.java │ │ │ ├── Tag.java │ │ │ ├── User.java │ │ │ └── util │ │ │ │ ├── EpisodeListToBeDeleted.java │ │ │ │ └── Utilities.java │ │ │ ├── exception │ │ │ └── BusinessException.java │ │ │ ├── mybatis │ │ │ └── typehandlers │ │ │ │ ├── LanguageCodeHandler.java │ │ │ │ ├── MediaTypeHandler.java │ │ │ │ ├── OrderByOptionHandler.java │ │ │ │ └── UpdateFrequencyTypeHandler.java │ │ │ ├── types │ │ │ ├── ContactTopicType.java │ │ │ ├── ErrorCodeType.java │ │ │ ├── HttpStatusExtensionType.java │ │ │ ├── LanguageCode.java │ │ │ ├── MediaType.java │ │ │ ├── OrderByOption.java │ │ │ ├── SearchModeType.java │ │ │ ├── SearchTargetType.java │ │ │ ├── SetHeaderAttributesResultType.java │ │ │ └── UpdateFrequencyType.java │ │ │ ├── util │ │ │ └── config │ │ │ │ ├── ConfigBean.java │ │ │ │ ├── ConfigBeanJdbcImpl.java │ │ │ │ ├── ConfigService.java │ │ │ │ ├── ConfigServiceImpl.java │ │ │ │ └── StringResultSetExtractor.java │ │ │ └── xmladapters │ │ │ └── DateAdapter.java │ └── resources │ │ ├── img │ │ ├── fb_51.png │ │ ├── gplus_51.png │ │ └── twitter_51.png │ │ ├── spring │ │ ├── applicationContext-common-dataSource.xml │ │ └── applicationContext-common.xml │ │ └── velocity │ │ ├── podcast_addition_notification-inlinePics.vm │ │ └── podcast_addition_notification.vm │ └── test │ └── resources │ ├── db │ └── db.properties │ └── test-pcm-common.xml ├── core ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── podcastpedia │ │ │ └── core │ │ │ ├── caching │ │ │ ├── CacheUpdateService.java │ │ │ ├── CacheUpdateServiceImpl.java │ │ │ └── EnhancedDefaultKeyGenerator.java │ │ │ ├── categories │ │ │ ├── CategoryDao.java │ │ │ ├── CategoryService.java │ │ │ └── CategoryServiceImpl.java │ │ │ ├── contact │ │ │ ├── ContactForm.java │ │ │ ├── ContactService.java │ │ │ ├── ContactServiceImpl.java │ │ │ ├── EmailNotificationService.java │ │ │ └── EmailNotificationServiceImpl.java │ │ │ ├── episodes │ │ │ ├── EpisodeDao.java │ │ │ ├── EpisodeService.java │ │ │ └── EpisodeServiceImpl.java │ │ │ ├── podcasts │ │ │ ├── PodcastDao.java │ │ │ ├── PodcastService.java │ │ │ └── PodcastServiceImpl.java │ │ │ ├── searching │ │ │ ├── Result.java │ │ │ ├── SearchDao.java │ │ │ ├── SearchData.java │ │ │ ├── SearchResult.java │ │ │ ├── SearchService.java │ │ │ └── SearchServiceImpl.java │ │ │ ├── startpage │ │ │ ├── StartPageDao.java │ │ │ ├── StartPageService.java │ │ │ └── StartPageServiceImpl.java │ │ │ ├── suggestpodcast │ │ │ ├── EmailNotificationService.java │ │ │ ├── EmailNotificationServiceImpl.java │ │ │ └── SuggestedPodcast.java │ │ │ ├── tags │ │ │ ├── TagDao.java │ │ │ ├── TagService.java │ │ │ └── TagServiceImpl.java │ │ │ ├── user │ │ │ ├── PodcastSubscriptionsWrapper.java │ │ │ ├── UserDao.java │ │ │ ├── UserEmailNotificationService.java │ │ │ ├── UserEmailNotificationServiceImpl.java │ │ │ ├── UserService.java │ │ │ └── UserServiceImpl.java │ │ │ └── userinteraction │ │ │ ├── UserInteractionDao.java │ │ │ ├── UserInteractionService.java │ │ │ ├── UserInteractionServiceImpl.java │ │ │ └── emailsubscription │ │ │ ├── EmailSubscriber.java │ │ │ ├── EmailSubscriptionDao.java │ │ │ ├── EmailSubscriptionService.java │ │ │ └── EmailSubscriptionServiceImpl.java │ └── resources │ │ ├── config │ │ ├── ehcache.xml │ │ └── mybatisV3-config.xml │ │ ├── maps │ │ ├── CategoryMapper.xml │ │ ├── EmailSubscriptionMapper.xml │ │ ├── EpisodeMapper.xml │ │ ├── PodcastMapper.xml │ │ ├── SearchMapper.xml │ │ ├── StartPageMapper.xml │ │ ├── TagMapper.xml │ │ ├── UserInteractionMapper.xml │ │ └── UserMapper.xml │ │ └── spring │ │ ├── applicationContext-core-dao.xml │ │ ├── applicationContext-core-dataSource.xml │ │ ├── applicationContext-core-service.xml │ │ └── applicationContext-core.xml │ └── test │ ├── java │ └── org │ │ └── podcastpedia │ │ ├── dao │ │ └── mybatis │ │ │ ├── CategoryDaoIT.java │ │ │ ├── EpisodeDaoIT.java │ │ │ ├── PodcastDaoIT.java │ │ │ ├── SearchDaoIT.java │ │ │ ├── StartPageDaoIT.java │ │ │ └── UserInteractionDaoIT.java │ │ ├── service │ │ └── PodcastServiceImplIT.java │ │ └── test │ │ ├── AspectJAnnotationTest.java │ │ ├── JavaGeneralTest.java │ │ ├── general │ │ └── regex │ │ │ └── RegexTest.java │ │ └── util │ │ ├── TestUtils.java │ │ └── TestUtilsImpl.java │ └── resources │ ├── data-source.xml │ ├── db.properties │ ├── jetty-context.xml │ ├── log4j.properties │ └── test-spring-context.xml ├── pom.xml ├── sql-migration ├── pom.xml └── src │ ├── assembly │ └── distribution.xml │ └── main │ └── resources │ ├── README │ ├── drivers │ └── mysql-connector-java-5.1.38-bin.jar │ ├── environments │ └── development.properties │ ├── releases │ └── v1.0.0 │ │ ├── do_v1.0.0.sql │ │ └── undo_v1.0.0.sql │ └── scripts │ ├── 20160329144627_create_changelog.sql │ ├── 20160329144628_first_migration.sql │ ├── 20160329150635_add_password_reset_token_to_users.sql │ └── bootstrap.sql ├── sql ├── .gitattributes ├── MySQL info │ └── show_table_size.sql ├── README.md ├── _prepare_database_for_development │ ├── help_guide.txt │ ├── podcastpedia-2014-06-17-dev-db.sql │ ├── podcastpedia-2014-06-17-dev-db.zip │ ├── podcastpedia-2014-07-17-dev-db.sql │ └── prepare_database_for_import.sql ├── config_data_table │ ├── insert_into_config_data.sql │ └── update_data.sql ├── episodes_table │ └── pid101 - repair short_description column.sql ├── pom.xml ├── recommended_podcasts │ └── insert_recommended_podcasts.sql ├── special_tables │ └── insert_into_special_tables_update.sql ├── src │ └── main │ │ └── resources │ │ ├── db-setup │ │ ├── change-1.0-db_prepare_keycloak.sql │ │ ├── db_import.sql │ │ ├── db_prepare.sql │ │ └── my.ini │ │ └── user-registration │ │ └── alter-db-script.sql └── update │ └── update_frequency.sql └── web-ui ├── README.md ├── pom.xml ├── pom.xml.releaseBackup ├── release.properties └── src ├── jetty ├── jetty.xml ├── jetty7.xml ├── realm.properties └── webdefault.xml ├── main ├── java │ └── org │ │ └── podcastpedia │ │ └── web │ │ ├── api │ │ ├── PodcastSpringResource.java │ │ └── SearchSpringResource.java │ │ ├── caching │ │ └── CachingUpdateRestController.java │ │ ├── categories │ │ └── CategoryController.java │ │ ├── contact │ │ ├── ContactController.java │ │ └── ContactFormValidator.java │ │ ├── episodes │ │ └── EpisodeController.java │ │ ├── error │ │ └── HTTPErrorController.java │ │ ├── feeds │ │ ├── FoundEpisodesAtomFeedView.java │ │ ├── FoundEpisodesRssFeedView.java │ │ ├── FoundPodcastsAtomFeedView.java │ │ ├── FoundPodcastsRssFeedView.java │ │ ├── GenericAtomFeedView.java │ │ ├── GenericRssFeedView.java │ │ ├── ResultsAtomFeedView.java │ │ └── ResultsRssFeedView.java │ │ ├── podcasts │ │ ├── PodcastController.java │ │ └── PodcastIdentifierController.java │ │ ├── searching │ │ ├── SearchController.java │ │ └── SearchResultsFeedsController.java │ │ ├── startpage │ │ ├── StartPageController.java │ │ └── StartPageFeedsController.java │ │ ├── staticpages │ │ └── StaticPagesController.java │ │ ├── suggestpodcast │ │ ├── SuggestPodcastController.java │ │ └── SuggestPodcastValidator.java │ │ ├── tags │ │ └── TagController.java │ │ ├── user │ │ ├── CustomLoginController.java │ │ ├── PasswordForgottenController.java │ │ ├── PasswordForgottenEmailSendFormValidator.java │ │ ├── PasswordForgottenFormValidator.java │ │ ├── RegistrationController.java │ │ ├── UserController.java │ │ ├── UserHomePageController.java │ │ ├── UserRegistrationFormValidator.java │ │ ├── UserSubscriptionCategoryController.java │ │ └── UserVotesController.java │ │ ├── userinteraction │ │ └── emailsubscription │ │ │ └── EmailSubscriptionController.java │ │ └── util │ │ └── MyCustomLoginSuccessHandler.java ├── resources │ ├── app-dev.properties │ ├── certificates │ │ └── keystore.jks │ ├── config │ │ ├── jetty9-gmail-account.xml │ │ ├── jetty9-imap-ssl.xml │ │ ├── jetty9-ssl.xml │ │ └── jetty9.xml │ ├── db.mysql │ │ └── podcastmania_db_setup_mysql.txt │ ├── jmeter │ │ └── Performance-tests.jmx │ ├── log4j │ │ ├── log4j-dev.xml │ │ ├── log4j-prod.xml │ │ ├── log4j.dtd │ │ └── log4j.xml │ ├── messages │ │ ├── messages.properties │ │ ├── messages_de.properties │ │ ├── messages_en.properties │ │ ├── messages_es.properties │ │ ├── messages_fr.properties │ │ ├── messages_it.properties │ │ ├── messages_pl.properties │ │ └── messages_ro.properties │ ├── spring │ │ ├── applicationContext-web-ui-security.xml │ │ ├── applicationContext-web-ui-tiles.xml │ │ └── applicationContext-web-ui.xml │ ├── velocity │ │ ├── newContactMessageToAdmin.vm │ │ ├── newUserRegistrationEmailConfirmation.vm │ │ ├── newUserRegistrationEmailConfirmation_de.vm │ │ ├── newUserRegistrationEmailConfirmation_en.vm │ │ ├── newUserRegistrationEmailConfirmation_fr.vm │ │ ├── newUserRegistrationRequestToAdmin.vm │ │ ├── new_contact_message.vm │ │ ├── passwordResetEmailConfirmation.vm │ │ ├── passwordResetEmailConfirmation_de.vm │ │ ├── passwordResetEmailConfirmation_en.vm │ │ ├── passwordResetEmailConfirmation_fr.vm │ │ ├── suggestPodcastNotificationMessage.vm │ │ └── suggested_podcast_message.vm │ └── views.properties └── webapp │ ├── META-INF │ ├── MANIFEST.MF │ ├── context-dev-gmail.xml │ ├── context-dev.xml │ └── context.xml │ ├── WEB-INF │ ├── jsp │ │ ├── categories │ │ │ └── podcast_categories.jsp │ │ ├── common │ │ │ └── recaptcha_options.jsp │ │ ├── episode │ │ │ ├── episode_archive.jsp │ │ │ └── episode_details.jsp │ │ ├── error │ │ │ ├── 1001_podcast_not_found.jsp │ │ │ ├── 1002_episode_not_available.jsp │ │ │ ├── 404_requested_resource_not_found.jsp │ │ │ ├── defaultErrorPage.jsp │ │ │ ├── empty.jsp │ │ │ └── session_expired.jsp │ │ ├── footer_pages │ │ │ ├── contact_form.jsp │ │ │ ├── disclaimer.jsp │ │ │ ├── impressum.jsp │ │ │ ├── mission.jsp │ │ │ └── privacy.jsp │ │ ├── my_help │ │ │ ├── howcanihelp.jsp │ │ │ ├── howcanihelp_de.jsp │ │ │ ├── howcanihelp_fr.jsp │ │ │ └── howcanihelp_ro.jsp │ │ ├── navigation_bar │ │ │ └── default_navigation_bar.jsp │ │ ├── podcast │ │ │ └── podcastDetails.jsp │ │ ├── podcasting │ │ │ ├── about_podcasting.jsp │ │ │ ├── about_podcasting_de.jsp │ │ │ ├── about_podcasting_es.jsp │ │ │ ├── about_podcasting_fr.jsp │ │ │ └── about_podcasting_ro.jsp │ │ ├── search │ │ │ ├── advanced_search_form.jsp │ │ │ ├── pagination_page_podcasts.jsp │ │ │ ├── search_results_episodes.jsp │ │ │ └── search_results_podcasts.jsp │ │ ├── start │ │ │ └── start_page.jsp │ │ ├── suggest_podcast │ │ │ └── add_a_podcast_form.jsp │ │ ├── tags │ │ │ └── tags.jsp │ │ ├── test │ │ │ ├── jwplayer.js │ │ │ ├── player.swf │ │ │ └── test_player.html │ │ └── user │ │ │ ├── latest_episodes_for_podcast_subscriptions.jsp │ │ │ ├── login.jsp │ │ │ ├── password-forgotten │ │ │ ├── password-forgotten-email-form.jsp │ │ │ ├── password-forgotten-email-sent.jsp │ │ │ └── password-forgotten-passwd-reset-form.jsp │ │ │ ├── podcast_subscriptions.jsp │ │ │ ├── registration-email-sent.jsp │ │ │ ├── registration-email-sent_de.jsp │ │ │ ├── registration-email-sent_fr.jsp │ │ │ ├── registration.jsp │ │ │ ├── user-homepage-clone-subscription-category.jsp │ │ │ └── user-homepage.jsp │ ├── tags │ │ ├── episodes.tag │ │ └── podcasts.tag │ ├── template │ │ ├── defaultContent.jsp │ │ ├── defaultFooter.jsp │ │ ├── defaultHeader_m.jsp │ │ ├── header_common_part.jsp │ │ ├── header_common_part_m.jsp │ │ ├── header_page_with_params_m.jsp │ │ ├── includes.jsp │ │ └── template_m.jsp │ ├── tile-defs │ │ ├── definitions.xml │ │ ├── definitions_de.xml │ │ ├── definitions_fr.xml │ │ ├── definitions_pl.xml │ │ ├── definitions_ro.xml │ │ └── templates.xml │ └── web.xml │ ├── favicon.ico │ └── static │ ├── LICENSE.txt │ ├── README.md │ ├── css │ ├── fonts │ │ ├── podcastpedia.eot │ │ ├── podcastpedia.svg │ │ ├── podcastpedia.ttf │ │ └── podcastpedia.woff │ ├── podcastpedia.css │ └── podcastpedia.min.css │ ├── gulpfile.js │ ├── images │ ├── Audio.png │ ├── atomfeed14.png │ ├── drop_shadow.gif │ ├── favicon.ico │ ├── fb_share.png │ ├── feed-icon-14x14.png │ ├── feed-icon-28x28.png │ ├── logos │ │ ├── fb.png │ │ ├── fb_51.png │ │ ├── feed.png │ │ ├── gplus.png │ │ ├── gplus_51.png │ │ ├── twitter.png │ │ └── twitter_51.png │ ├── mission_pic.png │ ├── player_overlay │ │ ├── audio_overlay_jwplayer.png │ │ ├── audio_overlay_jwplayer.xcf │ │ ├── audio_overlay_jwplayer_bigger.png │ │ ├── audio_overlay_jwplayer_small.png │ │ └── audio_overlay_jwplayer_smaller.png │ ├── podcast-tm-old.jpg │ ├── podcast-tm.jpg │ ├── podcast-tm.png │ ├── podcasting │ │ ├── podcasting.png │ │ ├── podcasting_de.png │ │ └── podcasting_ro.png │ ├── recaptcha_refresh.png │ ├── search-button-big.png │ ├── search-button-hover-big.png │ ├── search-button-hover.png │ └── search-button.png │ ├── js │ ├── advanced_search_form.js │ ├── jwplayer │ │ ├── jwplayer.flash.swf │ │ ├── jwplayer.html5.js │ │ ├── jwplayer.js │ │ ├── polyfills.base64.js │ │ ├── polyfills.promise.js │ │ ├── provider.cast.js │ │ ├── provider.shaka.js │ │ ├── provider.youtube.js │ │ └── skins │ │ │ ├── beelden.css │ │ │ ├── bekle.css │ │ │ ├── five.css │ │ │ ├── glow.css │ │ │ ├── roundster.css │ │ │ ├── seven.css │ │ │ ├── six.css │ │ │ ├── stormtrooper.css │ │ │ └── vapor.css │ └── search │ │ └── more-episodes.js │ ├── package.json │ └── src │ ├── js │ └── podcastpedia │ │ ├── common │ │ ├── player_dialog.js │ │ ├── podcast_show_last_episodes.js │ │ └── social_sharing.js │ │ ├── keywords │ │ └── keywords.js │ │ ├── podcast │ │ └── podcast_details.js │ │ ├── search │ │ ├── more-episodes.js │ │ └── podcasts-results.js │ │ └── user │ │ └── subscriptions.js │ ├── resources │ └── fonts │ │ ├── podcastpedia.eot │ │ ├── podcastpedia.svg │ │ ├── podcastpedia.ttf │ │ └── podcastpedia.woff │ └── sass │ ├── _init.scss │ ├── _leftovers.scss │ ├── archive-deprecated │ ├── _archive.scss │ └── podcastpedia.current.css │ ├── common │ ├── _button_links.scss │ ├── _footer.scss │ ├── _forms.scss │ ├── _github_ribbon.scss │ ├── _header.scss │ ├── _icon_fonts.scss │ ├── _languageSelection.scss │ ├── _mixins.scss │ ├── _navigation.scss │ ├── _pagination.scss │ ├── _responsiveGrid.scss │ ├── _resultsList.scss │ ├── _social_media_share.scss │ └── _variables.scss │ ├── pages │ ├── _advancedSearchForm.scss │ ├── _allCategoriesPage.scss │ ├── _allKeywordsPage.scss │ ├── _episodeDetails.scss │ ├── _homePage.scss │ ├── _mySupport.scss │ ├── _podcastDetails.scss │ └── _userRelated.scss │ └── podcastpedia.scss └── test └── resources ├── jetty-context.xml └── soapui └── REST API - Podcastpedia /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/README.md -------------------------------------------------------------------------------- /admin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/pom.xml -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/authentication/AuthenticationController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/authentication/AuthenticationController.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/controllers/propertyeditors/UpdateFrequencyTypeEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/controllers/propertyeditors/UpdateFrequencyTypeEditor.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/dao/AdminToolsDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/dao/AdminToolsDao.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/dao/DeleteDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/dao/DeleteDao.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/dao/InsertDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/dao/InsertDao.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/dao/ReadDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/dao/ReadDao.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/dao/UpdateDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/dao/UpdateDao.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/dao/helper/InputMarkNewEpisodesAsNew.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/dao/helper/InputMarkNewEpisodesAsNew.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/delete/DeleteController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/delete/DeleteController.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/delete/DeleteService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/delete/DeleteService.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/delete/DeleteServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/delete/DeleteServiceImpl.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/homepage/HomePageController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/homepage/HomePageController.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/insert/EmailNotificationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/insert/EmailNotificationService.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/insert/EmailNotificationServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/insert/EmailNotificationServiceImpl.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/insert/InsertController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/insert/InsertController.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/insert/InsertService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/insert/InsertService.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/insert/InsertServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/insert/InsertServiceImpl.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/insert/ProposedPodcast.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/insert/ProposedPodcast.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/insert/SocialMediaService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/insert/SocialMediaService.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/insert/SocialMediaServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/insert/SocialMediaServiceImpl.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/insert/UploadFileForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/insert/UploadFileForm.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/sitemaps/SitemapByFrequencyForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/sitemaps/SitemapByFrequencyForm.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/sitemaps/SitemapService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/sitemaps/SitemapService.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/sitemaps/SitemapServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/sitemaps/SitemapServiceImpl.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/sitemaps/SitemapsController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/sitemaps/SitemapsController.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/update/UpdateEpisodesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/update/UpdateEpisodesController.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/update/UpdateService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/update/UpdateService.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/update/UpdateServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/update/UpdateServiceImpl.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/update/UpdateServiceImplDifferentPubDateLogic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/update/UpdateServiceImplDifferentPubDateLogic.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/update/batch/BatchUpdateController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/update/batch/BatchUpdateController.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/update/batch/BatchUpdateService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/update/batch/BatchUpdateService.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/update/batch/BatchUpdateServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/update/batch/BatchUpdateServiceImpl.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/update/feed/UpdateFeedAttributesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/update/feed/UpdateFeedAttributesController.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/update/feed/UpdateFeedAttributesService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/update/feed/UpdateFeedAttributesService.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/update/feed/UpdateFeedAttributesServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/update/feed/UpdateFeedAttributesServiceImpl.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/update/metadata/UpdateMetadataController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/update/metadata/UpdateMetadataController.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/update/metadata/UpdateMetadataService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/update/metadata/UpdateMetadataService.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/update/metadata/UpdateMetadataServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/update/metadata/UpdateMetadataServiceImpl.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/util/PodcastAndEpisodeAttributesService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/util/PodcastAndEpisodeAttributesService.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/util/PodcastAndEpisodeAttributesServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/util/PodcastAndEpisodeAttributesServiceImpl.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/util/SyndFeedService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/util/SyndFeedService.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/util/SyndFeedServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/util/SyndFeedServiceImpl.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/util/forms/PodcastByFeedUrlForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/util/forms/PodcastByFeedUrlForm.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/util/forms/PodcastByIdForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/util/forms/PodcastByIdForm.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/util/forms/UpdatePodcastsByFrequencyForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/util/forms/UpdatePodcastsByFrequencyForm.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/util/forms/UserByEmailForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/util/forms/UserByEmailForm.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/util/read/ReadService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/util/read/ReadService.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/util/read/ReadServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/util/read/ReadServiceImpl.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/util/restclient/RestClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/util/restclient/RestClient.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/util/restclient/RestClientImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/util/restclient/RestClientImpl.java -------------------------------------------------------------------------------- /admin/src/main/java/org/podcastpedia/admin/util/restclient/RestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/java/org/podcastpedia/admin/util/restclient/RestController.java -------------------------------------------------------------------------------- /admin/src/main/resources/config/jetty9-dev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/resources/config/jetty9-dev.xml -------------------------------------------------------------------------------- /admin/src/main/resources/config/jetty9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/resources/config/jetty9.xml -------------------------------------------------------------------------------- /admin/src/main/resources/config/mybatisV3-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/resources/config/mybatisV3-config.xml -------------------------------------------------------------------------------- /admin/src/main/resources/facebook4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/resources/facebook4j.properties -------------------------------------------------------------------------------- /admin/src/main/resources/log4j/log4j.dev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/resources/log4j/log4j.dev.xml -------------------------------------------------------------------------------- /admin/src/main/resources/log4j/log4j.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/resources/log4j/log4j.dtd -------------------------------------------------------------------------------- /admin/src/main/resources/log4j/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/resources/log4j/log4j.xml -------------------------------------------------------------------------------- /admin/src/main/resources/mappers/AdminToolsMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/resources/mappers/AdminToolsMapper.xml -------------------------------------------------------------------------------- /admin/src/main/resources/mappers/DeleteMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/resources/mappers/DeleteMapper.xml -------------------------------------------------------------------------------- /admin/src/main/resources/mappers/InsertMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/resources/mappers/InsertMapper.xml -------------------------------------------------------------------------------- /admin/src/main/resources/mappers/ReadMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/resources/mappers/ReadMapper.xml -------------------------------------------------------------------------------- /admin/src/main/resources/mappers/UpdateMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/resources/mappers/UpdateMapper.xml -------------------------------------------------------------------------------- /admin/src/main/resources/spring/applicationContext-admin-security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/resources/spring/applicationContext-admin-security.xml -------------------------------------------------------------------------------- /admin/src/main/resources/spring/applicationContext-admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/resources/spring/applicationContext-admin.xml -------------------------------------------------------------------------------- /admin/src/main/resources/spring/data-source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/resources/spring/data-source.xml -------------------------------------------------------------------------------- /admin/src/main/resources/spring/tiles-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/resources/spring/tiles-context.xml -------------------------------------------------------------------------------- /admin/src/main/resources/twitter4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/resources/twitter4j.properties -------------------------------------------------------------------------------- /admin/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /admin/src/main/webapp/META-INF/context-admin-dev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/META-INF/context-admin-dev.xml -------------------------------------------------------------------------------- /admin/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/META-INF/context.xml -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/index.jsp -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/jsp/delete/delete_podcasts.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/jsp/delete/delete_podcasts.jsp -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/jsp/error/defaultErrorPage.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/jsp/error/defaultErrorPage.jsp -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/jsp/homepage/admin_homepage.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/jsp/homepage/admin_homepage.jsp -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/jsp/insert/add_podcasts_from_file.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/jsp/insert/add_podcasts_from_file.jsp -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/jsp/security/denied.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/jsp/security/denied.jsp -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/jsp/security/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/jsp/security/login.jsp -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/jsp/security/session_expired.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/jsp/security/session_expired.jsp -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/jsp/sitemaps/sitemaps.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/jsp/sitemaps/sitemaps.jsp -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/jsp/update/batch_update_by_frequency.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/jsp/update/batch_update_by_frequency.jsp -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/jsp/update/update_categories_and_tags_form.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/jsp/update/update_categories_and_tags_form.jsp -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/jsp/update/update_feed_attributes.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/jsp/update/update_feed_attributes.jsp -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/jsp/update/update_individual_podcast_episodes.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/jsp/update/update_individual_podcast_episodes.jsp -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/jsp/update/update_podcast_metadata.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/jsp/update/update_podcast_metadata.jsp -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/template/defaultContent.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/template/defaultContent.jsp -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/template/defaultHeader.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/template/defaultHeader.jsp -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/template/defaultMenu.jsp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/template/empty.jsp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/template/includes.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/template/includes.jsp -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/template/template.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/template/template.jsp -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/tile-defs/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/tile-defs/templates.xml -------------------------------------------------------------------------------- /admin/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /admin/src/main/webapp/static/bootstrap-3.1.1-dist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/bootstrap-3.1.1-dist.zip -------------------------------------------------------------------------------- /admin/src/main/webapp/static/bootstrap-3.1.1-dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/bootstrap-3.1.1-dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /admin/src/main/webapp/static/bootstrap-3.1.1-dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/bootstrap-3.1.1-dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /admin/src/main/webapp/static/bootstrap-3.1.1-dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/bootstrap-3.1.1-dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /admin/src/main/webapp/static/bootstrap-3.1.1-dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/bootstrap-3.1.1-dist/css/bootstrap.css -------------------------------------------------------------------------------- /admin/src/main/webapp/static/bootstrap-3.1.1-dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/bootstrap-3.1.1-dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /admin/src/main/webapp/static/bootstrap-3.1.1-dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/bootstrap-3.1.1-dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /admin/src/main/webapp/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /admin/src/main/webapp/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /admin/src/main/webapp/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /admin/src/main/webapp/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/bootstrap-3.1.1-dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /admin/src/main/webapp/static/bootstrap-3.1.1-dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/bootstrap-3.1.1-dist/js/bootstrap.js -------------------------------------------------------------------------------- /admin/src/main/webapp/static/bootstrap-3.1.1-dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/bootstrap-3.1.1-dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /admin/src/main/webapp/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /admin/src/main/webapp/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /admin/src/main/webapp/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /admin/src/main/webapp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/css/bootstrap.css -------------------------------------------------------------------------------- /admin/src/main/webapp/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /admin/src/main/webapp/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /admin/src/main/webapp/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/css/style.css -------------------------------------------------------------------------------- /admin/src/main/webapp/static/css/theme/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/css/theme/theme.css -------------------------------------------------------------------------------- /admin/src/main/webapp/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /admin/src/main/webapp/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /admin/src/main/webapp/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /admin/src/main/webapp/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /admin/src/main/webapp/static/images/img01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/images/img01.jpg -------------------------------------------------------------------------------- /admin/src/main/webapp/static/images/img02-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/images/img02-1.jpg -------------------------------------------------------------------------------- /admin/src/main/webapp/static/images/img02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/images/img02.jpg -------------------------------------------------------------------------------- /admin/src/main/webapp/static/images/img03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/images/img03.jpg -------------------------------------------------------------------------------- /admin/src/main/webapp/static/images/img04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/images/img04.jpg -------------------------------------------------------------------------------- /admin/src/main/webapp/static/images/img05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/images/img05.jpg -------------------------------------------------------------------------------- /admin/src/main/webapp/static/images/img06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/images/img06.jpg -------------------------------------------------------------------------------- /admin/src/main/webapp/static/images/podcast-tm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/images/podcast-tm.jpg -------------------------------------------------------------------------------- /admin/src/main/webapp/static/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/images/spacer.gif -------------------------------------------------------------------------------- /admin/src/main/webapp/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/js/bootstrap.js -------------------------------------------------------------------------------- /admin/src/main/webapp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/main/webapp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/config/impl/ConfigBeanJdbcImplIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/config/impl/ConfigBeanJdbcImplIT.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/dao/mybatis/AdminToolsDaoIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/dao/mybatis/AdminToolsDaoIT.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/dao/mybatis/DeleteDaoIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/dao/mybatis/DeleteDaoIT.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/dao/mybatis/InsertDaoIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/dao/mybatis/InsertDaoIT.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/dao/mybatis/ReadDaoIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/dao/mybatis/ReadDaoIT.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/dao/mybatis/UpdateDaoIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/dao/mybatis/UpdateDaoIT.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/feed/EncodingIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/feed/EncodingIT.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/general/CollectionsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/general/CollectionsTest.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/general/FbLike.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/general/FbLike.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/general/ParseSyndFeedsIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/general/ParseSyndFeedsIT.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/general/SocialApisTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/general/SocialApisTest.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/general/TestLocaleLanguageCodes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/general/TestLocaleLanguageCodes.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/general/TestSetPodcastFromFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/general/TestSetPodcastFromFile.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/general/TwitterPostingIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/general/TwitterPostingIT.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/httpclient/HttpClientIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/httpclient/HttpClientIT.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/insert/EmailNotificationServiceImplTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/insert/EmailNotificationServiceImplTest.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/service/SitemapServiceIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/service/SitemapServiceIT.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/service/UpdateServiceImplIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/service/UpdateServiceImplIT.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/service/utils/impl/UtilsImplTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/service/utils/impl/UtilsImplTest.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/test/util/TestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/test/util/TestUtils.java -------------------------------------------------------------------------------- /admin/src/test/java/org/podcastpedia/admin/test/util/impl/TestUtilsImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/java/org/podcastpedia/admin/test/util/impl/TestUtilsImpl.java -------------------------------------------------------------------------------- /admin/src/test/resources/dao/data-source-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/resources/dao/data-source-test.xml -------------------------------------------------------------------------------- /admin/src/test/resources/dao/test-spring-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/resources/dao/test-spring-context.xml -------------------------------------------------------------------------------- /admin/src/test/resources/data-source-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/resources/data-source-test.xml -------------------------------------------------------------------------------- /admin/src/test/resources/db/db.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/resources/db/db.properties -------------------------------------------------------------------------------- /admin/src/test/resources/facebook4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/resources/facebook4j.properties -------------------------------------------------------------------------------- /admin/src/test/resources/jetty-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/resources/jetty-context.xml -------------------------------------------------------------------------------- /admin/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /admin/src/test/resources/test-spring-admin-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/resources/test-spring-admin-context.xml -------------------------------------------------------------------------------- /admin/src/test/resources/twitter4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/admin/src/test/resources/twitter4j.properties -------------------------------------------------------------------------------- /api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/api/pom.xml -------------------------------------------------------------------------------- /api/src/main/java/org/podcastpedia/api/JaxRsApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/api/src/main/java/org/podcastpedia/api/JaxRsApplication.java -------------------------------------------------------------------------------- /api/src/main/java/org/podcastpedia/api/manifest/ImplementationDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/api/src/main/java/org/podcastpedia/api/manifest/ImplementationDetails.java -------------------------------------------------------------------------------- /api/src/main/java/org/podcastpedia/api/manifest/ManifestResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/api/src/main/java/org/podcastpedia/api/manifest/ManifestResource.java -------------------------------------------------------------------------------- /api/src/main/java/org/podcastpedia/api/manifest/ManifestService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/api/src/main/java/org/podcastpedia/api/manifest/ManifestService.java -------------------------------------------------------------------------------- /api/src/main/java/org/podcastpedia/api/podcast/CategoryResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/api/src/main/java/org/podcastpedia/api/podcast/CategoryResource.java -------------------------------------------------------------------------------- /api/src/main/java/org/podcastpedia/api/podcast/PodcastResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/api/src/main/java/org/podcastpedia/api/podcast/PodcastResource.java -------------------------------------------------------------------------------- /api/src/main/java/org/podcastpedia/api/podcast/TagResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/api/src/main/java/org/podcastpedia/api/podcast/TagResource.java -------------------------------------------------------------------------------- /api/src/main/java/org/podcastpedia/api/search/SearchResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/api/src/main/java/org/podcastpedia/api/search/SearchResource.java -------------------------------------------------------------------------------- /api/src/main/resources/config/jetty9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/api/src/main/resources/config/jetty9.xml -------------------------------------------------------------------------------- /api/src/main/resources/spring/applicationContext-api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/api/src/main/resources/spring/applicationContext-api.xml -------------------------------------------------------------------------------- /api/src/main/resources/spring/securityContext-api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/api/src/main/resources/spring/securityContext-api.xml -------------------------------------------------------------------------------- /api/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/api/src/main/webapp/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /api/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/api/src/main/webapp/META-INF/context.xml -------------------------------------------------------------------------------- /api/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/api/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /api/src/test/resources/jetty-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/api/src/test/resources/jetty-context.xml -------------------------------------------------------------------------------- /common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/README.md -------------------------------------------------------------------------------- /common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/pom.xml -------------------------------------------------------------------------------- /common/pom.xml.releaseBackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/pom.xml.releaseBackup -------------------------------------------------------------------------------- /common/release.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/release.properties -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/controllers/propertyeditors/MediaTypeEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/controllers/propertyeditors/MediaTypeEditor.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/controllers/propertyeditors/UpdateFrequencyTypeEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/controllers/propertyeditors/UpdateFrequencyTypeEditor.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/domain/Category.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/domain/Category.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/domain/Episode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/domain/Episode.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/domain/EpisodeVote.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/domain/EpisodeVote.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/domain/EpisodeWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/domain/EpisodeWrapper.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/domain/Podcast.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/domain/Podcast.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/domain/PodcastCategory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/domain/PodcastCategory.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/domain/PodcastTag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/domain/PodcastTag.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/domain/PodcastVote.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/domain/PodcastVote.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/domain/Rating.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/domain/Rating.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/domain/RatingData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/domain/RatingData.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/domain/Subscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/domain/Subscription.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/domain/Tag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/domain/Tag.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/domain/User.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/domain/util/EpisodeListToBeDeleted.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/domain/util/EpisodeListToBeDeleted.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/domain/util/Utilities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/domain/util/Utilities.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/exception/BusinessException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/exception/BusinessException.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/mybatis/typehandlers/LanguageCodeHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/mybatis/typehandlers/LanguageCodeHandler.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/mybatis/typehandlers/MediaTypeHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/mybatis/typehandlers/MediaTypeHandler.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/mybatis/typehandlers/OrderByOptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/mybatis/typehandlers/OrderByOptionHandler.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/mybatis/typehandlers/UpdateFrequencyTypeHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/mybatis/typehandlers/UpdateFrequencyTypeHandler.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/types/ContactTopicType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/types/ContactTopicType.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/types/ErrorCodeType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/types/ErrorCodeType.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/types/HttpStatusExtensionType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/types/HttpStatusExtensionType.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/types/LanguageCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/types/LanguageCode.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/types/MediaType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/types/MediaType.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/types/OrderByOption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/types/OrderByOption.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/types/SearchModeType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/types/SearchModeType.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/types/SearchTargetType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/types/SearchTargetType.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/types/SetHeaderAttributesResultType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/types/SetHeaderAttributesResultType.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/types/UpdateFrequencyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/types/UpdateFrequencyType.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/util/config/ConfigBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/util/config/ConfigBean.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/util/config/ConfigBeanJdbcImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/util/config/ConfigBeanJdbcImpl.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/util/config/ConfigService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/util/config/ConfigService.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/util/config/ConfigServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/util/config/ConfigServiceImpl.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/util/config/StringResultSetExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/util/config/StringResultSetExtractor.java -------------------------------------------------------------------------------- /common/src/main/java/org/podcastpedia/common/xmladapters/DateAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/java/org/podcastpedia/common/xmladapters/DateAdapter.java -------------------------------------------------------------------------------- /common/src/main/resources/img/fb_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/resources/img/fb_51.png -------------------------------------------------------------------------------- /common/src/main/resources/img/gplus_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/resources/img/gplus_51.png -------------------------------------------------------------------------------- /common/src/main/resources/img/twitter_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/resources/img/twitter_51.png -------------------------------------------------------------------------------- /common/src/main/resources/spring/applicationContext-common-dataSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/resources/spring/applicationContext-common-dataSource.xml -------------------------------------------------------------------------------- /common/src/main/resources/spring/applicationContext-common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/resources/spring/applicationContext-common.xml -------------------------------------------------------------------------------- /common/src/main/resources/velocity/podcast_addition_notification-inlinePics.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/resources/velocity/podcast_addition_notification-inlinePics.vm -------------------------------------------------------------------------------- /common/src/main/resources/velocity/podcast_addition_notification.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/main/resources/velocity/podcast_addition_notification.vm -------------------------------------------------------------------------------- /common/src/test/resources/db/db.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/test/resources/db/db.properties -------------------------------------------------------------------------------- /common/src/test/resources/test-pcm-common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/common/src/test/resources/test-pcm-common.xml -------------------------------------------------------------------------------- /core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/pom.xml -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/caching/CacheUpdateService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/caching/CacheUpdateService.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/caching/CacheUpdateServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/caching/CacheUpdateServiceImpl.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/caching/EnhancedDefaultKeyGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/caching/EnhancedDefaultKeyGenerator.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/categories/CategoryDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/categories/CategoryDao.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/categories/CategoryService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/categories/CategoryService.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/categories/CategoryServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/categories/CategoryServiceImpl.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/contact/ContactForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/contact/ContactForm.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/contact/ContactService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/contact/ContactService.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/contact/ContactServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/contact/ContactServiceImpl.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/contact/EmailNotificationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/contact/EmailNotificationService.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/contact/EmailNotificationServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/contact/EmailNotificationServiceImpl.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/episodes/EpisodeDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/episodes/EpisodeDao.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/episodes/EpisodeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/episodes/EpisodeService.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/episodes/EpisodeServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/episodes/EpisodeServiceImpl.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/podcasts/PodcastDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/podcasts/PodcastDao.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/podcasts/PodcastService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/podcasts/PodcastService.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/podcasts/PodcastServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/podcasts/PodcastServiceImpl.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/searching/Result.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/searching/Result.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/searching/SearchDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/searching/SearchDao.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/searching/SearchData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/searching/SearchData.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/searching/SearchResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/searching/SearchResult.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/searching/SearchService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/searching/SearchService.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/searching/SearchServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/searching/SearchServiceImpl.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/startpage/StartPageDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/startpage/StartPageDao.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/startpage/StartPageService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/startpage/StartPageService.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/startpage/StartPageServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/startpage/StartPageServiceImpl.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/suggestpodcast/EmailNotificationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/suggestpodcast/EmailNotificationService.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/suggestpodcast/EmailNotificationServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/suggestpodcast/EmailNotificationServiceImpl.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/suggestpodcast/SuggestedPodcast.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/suggestpodcast/SuggestedPodcast.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/tags/TagDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/tags/TagDao.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/tags/TagService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/tags/TagService.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/tags/TagServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/tags/TagServiceImpl.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/user/PodcastSubscriptionsWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/user/PodcastSubscriptionsWrapper.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/user/UserDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/user/UserDao.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/user/UserEmailNotificationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/user/UserEmailNotificationService.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/user/UserEmailNotificationServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/user/UserEmailNotificationServiceImpl.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/user/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/user/UserService.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/user/UserServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/user/UserServiceImpl.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/userinteraction/UserInteractionDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/userinteraction/UserInteractionDao.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/userinteraction/UserInteractionService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/userinteraction/UserInteractionService.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/userinteraction/UserInteractionServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/userinteraction/UserInteractionServiceImpl.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/userinteraction/emailsubscription/EmailSubscriber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/userinteraction/emailsubscription/EmailSubscriber.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/userinteraction/emailsubscription/EmailSubscriptionDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/userinteraction/emailsubscription/EmailSubscriptionDao.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/userinteraction/emailsubscription/EmailSubscriptionService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/userinteraction/emailsubscription/EmailSubscriptionService.java -------------------------------------------------------------------------------- /core/src/main/java/org/podcastpedia/core/userinteraction/emailsubscription/EmailSubscriptionServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/java/org/podcastpedia/core/userinteraction/emailsubscription/EmailSubscriptionServiceImpl.java -------------------------------------------------------------------------------- /core/src/main/resources/config/ehcache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/resources/config/ehcache.xml -------------------------------------------------------------------------------- /core/src/main/resources/config/mybatisV3-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/resources/config/mybatisV3-config.xml -------------------------------------------------------------------------------- /core/src/main/resources/maps/CategoryMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/resources/maps/CategoryMapper.xml -------------------------------------------------------------------------------- /core/src/main/resources/maps/EmailSubscriptionMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/resources/maps/EmailSubscriptionMapper.xml -------------------------------------------------------------------------------- /core/src/main/resources/maps/EpisodeMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/resources/maps/EpisodeMapper.xml -------------------------------------------------------------------------------- /core/src/main/resources/maps/PodcastMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/resources/maps/PodcastMapper.xml -------------------------------------------------------------------------------- /core/src/main/resources/maps/SearchMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/resources/maps/SearchMapper.xml -------------------------------------------------------------------------------- /core/src/main/resources/maps/StartPageMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/resources/maps/StartPageMapper.xml -------------------------------------------------------------------------------- /core/src/main/resources/maps/TagMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/resources/maps/TagMapper.xml -------------------------------------------------------------------------------- /core/src/main/resources/maps/UserInteractionMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/resources/maps/UserInteractionMapper.xml -------------------------------------------------------------------------------- /core/src/main/resources/maps/UserMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/resources/maps/UserMapper.xml -------------------------------------------------------------------------------- /core/src/main/resources/spring/applicationContext-core-dao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/resources/spring/applicationContext-core-dao.xml -------------------------------------------------------------------------------- /core/src/main/resources/spring/applicationContext-core-dataSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/resources/spring/applicationContext-core-dataSource.xml -------------------------------------------------------------------------------- /core/src/main/resources/spring/applicationContext-core-service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/resources/spring/applicationContext-core-service.xml -------------------------------------------------------------------------------- /core/src/main/resources/spring/applicationContext-core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/main/resources/spring/applicationContext-core.xml -------------------------------------------------------------------------------- /core/src/test/java/org/podcastpedia/dao/mybatis/CategoryDaoIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/test/java/org/podcastpedia/dao/mybatis/CategoryDaoIT.java -------------------------------------------------------------------------------- /core/src/test/java/org/podcastpedia/dao/mybatis/EpisodeDaoIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/test/java/org/podcastpedia/dao/mybatis/EpisodeDaoIT.java -------------------------------------------------------------------------------- /core/src/test/java/org/podcastpedia/dao/mybatis/PodcastDaoIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/test/java/org/podcastpedia/dao/mybatis/PodcastDaoIT.java -------------------------------------------------------------------------------- /core/src/test/java/org/podcastpedia/dao/mybatis/SearchDaoIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/test/java/org/podcastpedia/dao/mybatis/SearchDaoIT.java -------------------------------------------------------------------------------- /core/src/test/java/org/podcastpedia/dao/mybatis/StartPageDaoIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/test/java/org/podcastpedia/dao/mybatis/StartPageDaoIT.java -------------------------------------------------------------------------------- /core/src/test/java/org/podcastpedia/dao/mybatis/UserInteractionDaoIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/test/java/org/podcastpedia/dao/mybatis/UserInteractionDaoIT.java -------------------------------------------------------------------------------- /core/src/test/java/org/podcastpedia/service/PodcastServiceImplIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/test/java/org/podcastpedia/service/PodcastServiceImplIT.java -------------------------------------------------------------------------------- /core/src/test/java/org/podcastpedia/test/AspectJAnnotationTest.java: -------------------------------------------------------------------------------- 1 | package org.podcastpedia.test; 2 | 3 | public class AspectJAnnotationTest { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /core/src/test/java/org/podcastpedia/test/JavaGeneralTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/test/java/org/podcastpedia/test/JavaGeneralTest.java -------------------------------------------------------------------------------- /core/src/test/java/org/podcastpedia/test/general/regex/RegexTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/test/java/org/podcastpedia/test/general/regex/RegexTest.java -------------------------------------------------------------------------------- /core/src/test/java/org/podcastpedia/test/util/TestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/test/java/org/podcastpedia/test/util/TestUtils.java -------------------------------------------------------------------------------- /core/src/test/java/org/podcastpedia/test/util/TestUtilsImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/test/java/org/podcastpedia/test/util/TestUtilsImpl.java -------------------------------------------------------------------------------- /core/src/test/resources/data-source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/test/resources/data-source.xml -------------------------------------------------------------------------------- /core/src/test/resources/db.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/test/resources/db.properties -------------------------------------------------------------------------------- /core/src/test/resources/jetty-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/test/resources/jetty-context.xml -------------------------------------------------------------------------------- /core/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /core/src/test/resources/test-spring-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/core/src/test/resources/test-spring-context.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/pom.xml -------------------------------------------------------------------------------- /sql-migration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql-migration/pom.xml -------------------------------------------------------------------------------- /sql-migration/src/assembly/distribution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql-migration/src/assembly/distribution.xml -------------------------------------------------------------------------------- /sql-migration/src/main/resources/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql-migration/src/main/resources/README -------------------------------------------------------------------------------- /sql-migration/src/main/resources/drivers/mysql-connector-java-5.1.38-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql-migration/src/main/resources/drivers/mysql-connector-java-5.1.38-bin.jar -------------------------------------------------------------------------------- /sql-migration/src/main/resources/environments/development.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql-migration/src/main/resources/environments/development.properties -------------------------------------------------------------------------------- /sql-migration/src/main/resources/releases/v1.0.0/do_v1.0.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql-migration/src/main/resources/releases/v1.0.0/do_v1.0.0.sql -------------------------------------------------------------------------------- /sql-migration/src/main/resources/releases/v1.0.0/undo_v1.0.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql-migration/src/main/resources/releases/v1.0.0/undo_v1.0.0.sql -------------------------------------------------------------------------------- /sql-migration/src/main/resources/scripts/20160329144627_create_changelog.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql-migration/src/main/resources/scripts/20160329144627_create_changelog.sql -------------------------------------------------------------------------------- /sql-migration/src/main/resources/scripts/20160329144628_first_migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql-migration/src/main/resources/scripts/20160329144628_first_migration.sql -------------------------------------------------------------------------------- /sql-migration/src/main/resources/scripts/20160329150635_add_password_reset_token_to_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql-migration/src/main/resources/scripts/20160329150635_add_password_reset_token_to_users.sql -------------------------------------------------------------------------------- /sql-migration/src/main/resources/scripts/bootstrap.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql-migration/src/main/resources/scripts/bootstrap.sql -------------------------------------------------------------------------------- /sql/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/.gitattributes -------------------------------------------------------------------------------- /sql/MySQL info/show_table_size.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/MySQL info/show_table_size.sql -------------------------------------------------------------------------------- /sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/README.md -------------------------------------------------------------------------------- /sql/_prepare_database_for_development/help_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/_prepare_database_for_development/help_guide.txt -------------------------------------------------------------------------------- /sql/_prepare_database_for_development/podcastpedia-2014-06-17-dev-db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/_prepare_database_for_development/podcastpedia-2014-06-17-dev-db.sql -------------------------------------------------------------------------------- /sql/_prepare_database_for_development/podcastpedia-2014-06-17-dev-db.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/_prepare_database_for_development/podcastpedia-2014-06-17-dev-db.zip -------------------------------------------------------------------------------- /sql/_prepare_database_for_development/podcastpedia-2014-07-17-dev-db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/_prepare_database_for_development/podcastpedia-2014-07-17-dev-db.sql -------------------------------------------------------------------------------- /sql/_prepare_database_for_development/prepare_database_for_import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/_prepare_database_for_development/prepare_database_for_import.sql -------------------------------------------------------------------------------- /sql/config_data_table/insert_into_config_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/config_data_table/insert_into_config_data.sql -------------------------------------------------------------------------------- /sql/config_data_table/update_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/config_data_table/update_data.sql -------------------------------------------------------------------------------- /sql/episodes_table/pid101 - repair short_description column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/episodes_table/pid101 - repair short_description column.sql -------------------------------------------------------------------------------- /sql/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/pom.xml -------------------------------------------------------------------------------- /sql/recommended_podcasts/insert_recommended_podcasts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/recommended_podcasts/insert_recommended_podcasts.sql -------------------------------------------------------------------------------- /sql/special_tables/insert_into_special_tables_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/special_tables/insert_into_special_tables_update.sql -------------------------------------------------------------------------------- /sql/src/main/resources/db-setup/change-1.0-db_prepare_keycloak.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/src/main/resources/db-setup/change-1.0-db_prepare_keycloak.sql -------------------------------------------------------------------------------- /sql/src/main/resources/db-setup/db_import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/src/main/resources/db-setup/db_import.sql -------------------------------------------------------------------------------- /sql/src/main/resources/db-setup/db_prepare.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/src/main/resources/db-setup/db_prepare.sql -------------------------------------------------------------------------------- /sql/src/main/resources/db-setup/my.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/src/main/resources/db-setup/my.ini -------------------------------------------------------------------------------- /sql/src/main/resources/user-registration/alter-db-script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/src/main/resources/user-registration/alter-db-script.sql -------------------------------------------------------------------------------- /sql/update/update_frequency.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/sql/update/update_frequency.sql -------------------------------------------------------------------------------- /web-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/README.md -------------------------------------------------------------------------------- /web-ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/pom.xml -------------------------------------------------------------------------------- /web-ui/pom.xml.releaseBackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/pom.xml.releaseBackup -------------------------------------------------------------------------------- /web-ui/release.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/release.properties -------------------------------------------------------------------------------- /web-ui/src/jetty/jetty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/jetty/jetty.xml -------------------------------------------------------------------------------- /web-ui/src/jetty/jetty7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/jetty/jetty7.xml -------------------------------------------------------------------------------- /web-ui/src/jetty/realm.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/jetty/realm.properties -------------------------------------------------------------------------------- /web-ui/src/jetty/webdefault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/jetty/webdefault.xml -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/api/PodcastSpringResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/api/PodcastSpringResource.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/api/SearchSpringResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/api/SearchSpringResource.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/caching/CachingUpdateRestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/caching/CachingUpdateRestController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/categories/CategoryController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/categories/CategoryController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/contact/ContactController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/contact/ContactController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/contact/ContactFormValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/contact/ContactFormValidator.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/episodes/EpisodeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/episodes/EpisodeController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/error/HTTPErrorController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/error/HTTPErrorController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/feeds/FoundEpisodesAtomFeedView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/feeds/FoundEpisodesAtomFeedView.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/feeds/FoundEpisodesRssFeedView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/feeds/FoundEpisodesRssFeedView.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/feeds/FoundPodcastsAtomFeedView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/feeds/FoundPodcastsAtomFeedView.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/feeds/FoundPodcastsRssFeedView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/feeds/FoundPodcastsRssFeedView.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/feeds/GenericAtomFeedView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/feeds/GenericAtomFeedView.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/feeds/GenericRssFeedView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/feeds/GenericRssFeedView.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/feeds/ResultsAtomFeedView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/feeds/ResultsAtomFeedView.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/feeds/ResultsRssFeedView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/feeds/ResultsRssFeedView.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/podcasts/PodcastController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/podcasts/PodcastController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/podcasts/PodcastIdentifierController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/podcasts/PodcastIdentifierController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/searching/SearchController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/searching/SearchController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/searching/SearchResultsFeedsController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/searching/SearchResultsFeedsController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/startpage/StartPageController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/startpage/StartPageController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/startpage/StartPageFeedsController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/startpage/StartPageFeedsController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/staticpages/StaticPagesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/staticpages/StaticPagesController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/suggestpodcast/SuggestPodcastController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/suggestpodcast/SuggestPodcastController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/suggestpodcast/SuggestPodcastValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/suggestpodcast/SuggestPodcastValidator.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/tags/TagController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/tags/TagController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/user/CustomLoginController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/user/CustomLoginController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/user/PasswordForgottenController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/user/PasswordForgottenController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/user/PasswordForgottenEmailSendFormValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/user/PasswordForgottenEmailSendFormValidator.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/user/PasswordForgottenFormValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/user/PasswordForgottenFormValidator.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/user/RegistrationController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/user/RegistrationController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/user/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/user/UserController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/user/UserHomePageController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/user/UserHomePageController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/user/UserRegistrationFormValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/user/UserRegistrationFormValidator.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/user/UserSubscriptionCategoryController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/user/UserSubscriptionCategoryController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/user/UserVotesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/user/UserVotesController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/userinteraction/emailsubscription/EmailSubscriptionController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/userinteraction/emailsubscription/EmailSubscriptionController.java -------------------------------------------------------------------------------- /web-ui/src/main/java/org/podcastpedia/web/util/MyCustomLoginSuccessHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/java/org/podcastpedia/web/util/MyCustomLoginSuccessHandler.java -------------------------------------------------------------------------------- /web-ui/src/main/resources/app-dev.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/app-dev.properties -------------------------------------------------------------------------------- /web-ui/src/main/resources/certificates/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/certificates/keystore.jks -------------------------------------------------------------------------------- /web-ui/src/main/resources/config/jetty9-gmail-account.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/config/jetty9-gmail-account.xml -------------------------------------------------------------------------------- /web-ui/src/main/resources/config/jetty9-imap-ssl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/config/jetty9-imap-ssl.xml -------------------------------------------------------------------------------- /web-ui/src/main/resources/config/jetty9-ssl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/config/jetty9-ssl.xml -------------------------------------------------------------------------------- /web-ui/src/main/resources/config/jetty9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/config/jetty9.xml -------------------------------------------------------------------------------- /web-ui/src/main/resources/db.mysql/podcastmania_db_setup_mysql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/db.mysql/podcastmania_db_setup_mysql.txt -------------------------------------------------------------------------------- /web-ui/src/main/resources/jmeter/Performance-tests.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/jmeter/Performance-tests.jmx -------------------------------------------------------------------------------- /web-ui/src/main/resources/log4j/log4j-dev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/log4j/log4j-dev.xml -------------------------------------------------------------------------------- /web-ui/src/main/resources/log4j/log4j-prod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/log4j/log4j-prod.xml -------------------------------------------------------------------------------- /web-ui/src/main/resources/log4j/log4j.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/log4j/log4j.dtd -------------------------------------------------------------------------------- /web-ui/src/main/resources/log4j/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/log4j/log4j.xml -------------------------------------------------------------------------------- /web-ui/src/main/resources/messages/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/messages/messages.properties -------------------------------------------------------------------------------- /web-ui/src/main/resources/messages/messages_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/messages/messages_de.properties -------------------------------------------------------------------------------- /web-ui/src/main/resources/messages/messages_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/messages/messages_en.properties -------------------------------------------------------------------------------- /web-ui/src/main/resources/messages/messages_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/messages/messages_es.properties -------------------------------------------------------------------------------- /web-ui/src/main/resources/messages/messages_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/messages/messages_fr.properties -------------------------------------------------------------------------------- /web-ui/src/main/resources/messages/messages_it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/messages/messages_it.properties -------------------------------------------------------------------------------- /web-ui/src/main/resources/messages/messages_pl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/messages/messages_pl.properties -------------------------------------------------------------------------------- /web-ui/src/main/resources/messages/messages_ro.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/messages/messages_ro.properties -------------------------------------------------------------------------------- /web-ui/src/main/resources/spring/applicationContext-web-ui-security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/spring/applicationContext-web-ui-security.xml -------------------------------------------------------------------------------- /web-ui/src/main/resources/spring/applicationContext-web-ui-tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/spring/applicationContext-web-ui-tiles.xml -------------------------------------------------------------------------------- /web-ui/src/main/resources/spring/applicationContext-web-ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/spring/applicationContext-web-ui.xml -------------------------------------------------------------------------------- /web-ui/src/main/resources/velocity/newContactMessageToAdmin.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/velocity/newContactMessageToAdmin.vm -------------------------------------------------------------------------------- /web-ui/src/main/resources/velocity/newUserRegistrationEmailConfirmation.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/velocity/newUserRegistrationEmailConfirmation.vm -------------------------------------------------------------------------------- /web-ui/src/main/resources/velocity/newUserRegistrationEmailConfirmation_de.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/velocity/newUserRegistrationEmailConfirmation_de.vm -------------------------------------------------------------------------------- /web-ui/src/main/resources/velocity/newUserRegistrationEmailConfirmation_en.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/velocity/newUserRegistrationEmailConfirmation_en.vm -------------------------------------------------------------------------------- /web-ui/src/main/resources/velocity/newUserRegistrationEmailConfirmation_fr.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/velocity/newUserRegistrationEmailConfirmation_fr.vm -------------------------------------------------------------------------------- /web-ui/src/main/resources/velocity/newUserRegistrationRequestToAdmin.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/velocity/newUserRegistrationRequestToAdmin.vm -------------------------------------------------------------------------------- /web-ui/src/main/resources/velocity/new_contact_message.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/velocity/new_contact_message.vm -------------------------------------------------------------------------------- /web-ui/src/main/resources/velocity/passwordResetEmailConfirmation.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/velocity/passwordResetEmailConfirmation.vm -------------------------------------------------------------------------------- /web-ui/src/main/resources/velocity/passwordResetEmailConfirmation_de.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/velocity/passwordResetEmailConfirmation_de.vm -------------------------------------------------------------------------------- /web-ui/src/main/resources/velocity/passwordResetEmailConfirmation_en.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/velocity/passwordResetEmailConfirmation_en.vm -------------------------------------------------------------------------------- /web-ui/src/main/resources/velocity/passwordResetEmailConfirmation_fr.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/velocity/passwordResetEmailConfirmation_fr.vm -------------------------------------------------------------------------------- /web-ui/src/main/resources/velocity/suggestPodcastNotificationMessage.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/velocity/suggestPodcastNotificationMessage.vm -------------------------------------------------------------------------------- /web-ui/src/main/resources/velocity/suggested_podcast_message.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/velocity/suggested_podcast_message.vm -------------------------------------------------------------------------------- /web-ui/src/main/resources/views.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/resources/views.properties -------------------------------------------------------------------------------- /web-ui/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /web-ui/src/main/webapp/META-INF/context-dev-gmail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/META-INF/context-dev-gmail.xml -------------------------------------------------------------------------------- /web-ui/src/main/webapp/META-INF/context-dev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/META-INF/context-dev.xml -------------------------------------------------------------------------------- /web-ui/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/META-INF/context.xml -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/categories/podcast_categories.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/categories/podcast_categories.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/common/recaptcha_options.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/common/recaptcha_options.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/episode/episode_archive.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/episode/episode_archive.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/episode/episode_details.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/episode/episode_details.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/error/1001_podcast_not_found.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/error/1001_podcast_not_found.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/error/1002_episode_not_available.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/error/1002_episode_not_available.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/error/404_requested_resource_not_found.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/error/404_requested_resource_not_found.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/error/defaultErrorPage.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/error/defaultErrorPage.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/error/empty.jsp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/error/session_expired.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/error/session_expired.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/footer_pages/contact_form.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/footer_pages/contact_form.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/footer_pages/disclaimer.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/footer_pages/disclaimer.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/footer_pages/impressum.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/footer_pages/impressum.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/footer_pages/mission.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/footer_pages/mission.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/footer_pages/privacy.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/footer_pages/privacy.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/my_help/howcanihelp.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/my_help/howcanihelp.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/my_help/howcanihelp_de.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/my_help/howcanihelp_de.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/my_help/howcanihelp_fr.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/my_help/howcanihelp_fr.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/my_help/howcanihelp_ro.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/my_help/howcanihelp_ro.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/navigation_bar/default_navigation_bar.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/navigation_bar/default_navigation_bar.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/podcast/podcastDetails.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/podcast/podcastDetails.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/podcasting/about_podcasting.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/podcasting/about_podcasting.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/podcasting/about_podcasting_de.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/podcasting/about_podcasting_de.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/podcasting/about_podcasting_es.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/podcasting/about_podcasting_es.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/podcasting/about_podcasting_fr.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/podcasting/about_podcasting_fr.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/podcasting/about_podcasting_ro.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/podcasting/about_podcasting_ro.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/search/advanced_search_form.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/search/advanced_search_form.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/search/pagination_page_podcasts.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/search/pagination_page_podcasts.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/search/search_results_episodes.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/search/search_results_episodes.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/search/search_results_podcasts.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/search/search_results_podcasts.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/start/start_page.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/start/start_page.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/suggest_podcast/add_a_podcast_form.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/suggest_podcast/add_a_podcast_form.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/tags/tags.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/tags/tags.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/test/jwplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/test/jwplayer.js -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/test/player.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/test/player.swf -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/test/test_player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/test/test_player.html -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/user/latest_episodes_for_podcast_subscriptions.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/user/latest_episodes_for_podcast_subscriptions.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/user/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/user/login.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/user/password-forgotten/password-forgotten-email-form.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/user/password-forgotten/password-forgotten-email-form.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/user/password-forgotten/password-forgotten-email-sent.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/user/password-forgotten/password-forgotten-email-sent.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/user/password-forgotten/password-forgotten-passwd-reset-form.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/user/password-forgotten/password-forgotten-passwd-reset-form.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/user/podcast_subscriptions.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/user/podcast_subscriptions.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/user/registration-email-sent.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/user/registration-email-sent.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/user/registration-email-sent_de.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/user/registration-email-sent_de.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/user/registration-email-sent_fr.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/user/registration-email-sent_fr.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/user/registration.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/user/registration.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/user/user-homepage-clone-subscription-category.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/user/user-homepage-clone-subscription-category.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/jsp/user/user-homepage.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/jsp/user/user-homepage.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/tags/episodes.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/tags/episodes.tag -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/tags/podcasts.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/tags/podcasts.tag -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/template/defaultContent.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/template/defaultContent.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/template/defaultFooter.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/template/defaultFooter.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/template/defaultHeader_m.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/template/defaultHeader_m.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/template/header_common_part.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/template/header_common_part.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/template/header_common_part_m.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/template/header_common_part_m.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/template/header_page_with_params_m.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/template/header_page_with_params_m.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/template/includes.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/template/includes.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/template/template_m.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/template/template_m.jsp -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/tile-defs/definitions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/tile-defs/definitions.xml -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/tile-defs/definitions_de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/tile-defs/definitions_de.xml -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/tile-defs/definitions_fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/tile-defs/definitions_fr.xml -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/tile-defs/definitions_pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/tile-defs/definitions_pl.xml -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/tile-defs/definitions_ro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/tile-defs/definitions_ro.xml -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/tile-defs/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/tile-defs/templates.xml -------------------------------------------------------------------------------- /web-ui/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /web-ui/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/LICENSE.txt -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/README.md -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/css/fonts/podcastpedia.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/css/fonts/podcastpedia.eot -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/css/fonts/podcastpedia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/css/fonts/podcastpedia.svg -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/css/fonts/podcastpedia.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/css/fonts/podcastpedia.ttf -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/css/fonts/podcastpedia.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/css/fonts/podcastpedia.woff -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/css/podcastpedia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/css/podcastpedia.css -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/css/podcastpedia.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/css/podcastpedia.min.css -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/gulpfile.js -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/Audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/Audio.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/atomfeed14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/atomfeed14.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/drop_shadow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/drop_shadow.gif -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/favicon.ico -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/fb_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/fb_share.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/feed-icon-14x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/feed-icon-14x14.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/feed-icon-28x28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/feed-icon-28x28.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/logos/fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/logos/fb.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/logos/fb_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/logos/fb_51.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/logos/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/logos/feed.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/logos/gplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/logos/gplus.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/logos/gplus_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/logos/gplus_51.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/logos/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/logos/twitter.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/logos/twitter_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/logos/twitter_51.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/mission_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/mission_pic.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/player_overlay/audio_overlay_jwplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/player_overlay/audio_overlay_jwplayer.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/player_overlay/audio_overlay_jwplayer.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/player_overlay/audio_overlay_jwplayer.xcf -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/player_overlay/audio_overlay_jwplayer_bigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/player_overlay/audio_overlay_jwplayer_bigger.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/player_overlay/audio_overlay_jwplayer_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/player_overlay/audio_overlay_jwplayer_small.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/player_overlay/audio_overlay_jwplayer_smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/player_overlay/audio_overlay_jwplayer_smaller.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/podcast-tm-old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/podcast-tm-old.jpg -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/podcast-tm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/podcast-tm.jpg -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/podcast-tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/podcast-tm.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/podcasting/podcasting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/podcasting/podcasting.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/podcasting/podcasting_de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/podcasting/podcasting_de.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/podcasting/podcasting_ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/podcasting/podcasting_ro.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/recaptcha_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/recaptcha_refresh.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/search-button-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/search-button-big.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/search-button-hover-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/search-button-hover-big.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/search-button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/search-button-hover.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/images/search-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/images/search-button.png -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/js/advanced_search_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/js/advanced_search_form.js -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/js/jwplayer/jwplayer.flash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/js/jwplayer/jwplayer.flash.swf -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/js/jwplayer/jwplayer.html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/js/jwplayer/jwplayer.html5.js -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/js/jwplayer/jwplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/js/jwplayer/jwplayer.js -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/js/jwplayer/polyfills.base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/js/jwplayer/polyfills.base64.js -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/js/jwplayer/polyfills.promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/js/jwplayer/polyfills.promise.js -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/js/jwplayer/provider.cast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/js/jwplayer/provider.cast.js -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/js/jwplayer/provider.shaka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/js/jwplayer/provider.shaka.js -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/js/jwplayer/provider.youtube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/js/jwplayer/provider.youtube.js -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/js/jwplayer/skins/beelden.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/js/jwplayer/skins/beelden.css -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/js/jwplayer/skins/bekle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/js/jwplayer/skins/bekle.css -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/js/jwplayer/skins/five.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/js/jwplayer/skins/five.css -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/js/jwplayer/skins/glow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/js/jwplayer/skins/glow.css -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/js/jwplayer/skins/roundster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/js/jwplayer/skins/roundster.css -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/js/jwplayer/skins/seven.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/js/jwplayer/skins/seven.css -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/js/jwplayer/skins/six.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/js/jwplayer/skins/six.css -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/js/jwplayer/skins/stormtrooper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/js/jwplayer/skins/stormtrooper.css -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/js/jwplayer/skins/vapor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/js/jwplayer/skins/vapor.css -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/js/search/more-episodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/js/search/more-episodes.js -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/package.json -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/js/podcastpedia/common/player_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/js/podcastpedia/common/player_dialog.js -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/js/podcastpedia/common/podcast_show_last_episodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/js/podcastpedia/common/podcast_show_last_episodes.js -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/js/podcastpedia/common/social_sharing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/js/podcastpedia/common/social_sharing.js -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/js/podcastpedia/keywords/keywords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/js/podcastpedia/keywords/keywords.js -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/js/podcastpedia/podcast/podcast_details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/js/podcastpedia/podcast/podcast_details.js -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/js/podcastpedia/search/more-episodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/js/podcastpedia/search/more-episodes.js -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/js/podcastpedia/search/podcasts-results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/js/podcastpedia/search/podcasts-results.js -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/js/podcastpedia/user/subscriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/js/podcastpedia/user/subscriptions.js -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/resources/fonts/podcastpedia.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/resources/fonts/podcastpedia.eot -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/resources/fonts/podcastpedia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/resources/fonts/podcastpedia.svg -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/resources/fonts/podcastpedia.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/resources/fonts/podcastpedia.ttf -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/resources/fonts/podcastpedia.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/resources/fonts/podcastpedia.woff -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/_init.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/_init.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/_leftovers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/_leftovers.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/archive-deprecated/_archive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/archive-deprecated/_archive.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/archive-deprecated/podcastpedia.current.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/archive-deprecated/podcastpedia.current.css -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/common/_button_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/common/_button_links.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/common/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/common/_footer.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/common/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/common/_forms.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/common/_github_ribbon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/common/_github_ribbon.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/common/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/common/_header.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/common/_icon_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/common/_icon_fonts.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/common/_languageSelection.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/common/_languageSelection.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/common/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/common/_mixins.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/common/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/common/_navigation.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/common/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/common/_pagination.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/common/_responsiveGrid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/common/_responsiveGrid.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/common/_resultsList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/common/_resultsList.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/common/_social_media_share.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/common/_social_media_share.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/common/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/common/_variables.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/pages/_advancedSearchForm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/pages/_advancedSearchForm.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/pages/_allCategoriesPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/pages/_allCategoriesPage.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/pages/_allKeywordsPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/pages/_allKeywordsPage.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/pages/_episodeDetails.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/pages/_episodeDetails.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/pages/_homePage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/pages/_homePage.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/pages/_mySupport.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/pages/_mySupport.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/pages/_podcastDetails.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/pages/_podcastDetails.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/pages/_userRelated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/pages/_userRelated.scss -------------------------------------------------------------------------------- /web-ui/src/main/webapp/static/src/sass/podcastpedia.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/main/webapp/static/src/sass/podcastpedia.scss -------------------------------------------------------------------------------- /web-ui/src/test/resources/jetty-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/test/resources/jetty-context.xml -------------------------------------------------------------------------------- /web-ui/src/test/resources/soapui/REST API - Podcastpedia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodepediaOrg/podcastpedia/HEAD/web-ui/src/test/resources/soapui/REST API - Podcastpedia --------------------------------------------------------------------------------