https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34798 Bug ID: 34798 Summary: Babeltheque url update looks obsolete Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: OPAC Assignee: oleonard@myacpl.org Reporter: fridolin.somers@biblibre.com QA Contact: testopia@bugs.koha-community.org System preference Babeltheque_url_update ususally contains http://www.babelio.info/out_KOHA.csv.bz2 This URL looks obsolete. In fact, datas from Babeltheque looks working even without this file download via misc/cronjobs/social_data/update_social_data.pl This means we may remove cronjobs and C4::SocialData :
git grep 'C4::SocialData' C4/SocialData.pm:package C4::SocialData; C4/SocialData.pm:C4::SocialData - Koha functions for dealing with social datas C4/SocialData.pm:use C4::SocialData; C4/SocialData.pm: my $social_datas = C4::SocialData::get_data( $isbn ); # FIXME Why is data not included in $results ? misc/cronjobs/social_data/get_report_social_data.pl:use C4::SocialData; misc/cronjobs/social_data/get_report_social_data.pl:my $results = C4::SocialData::get_report; misc/cronjobs/social_data/update_social_data.pl:use C4::SocialData; misc/cronjobs/social_data/update_social_data.pl:C4::SocialData::update_data $output_filepath; opac/opac-search.pl:use C4::SocialData; opac/opac-search.pl: my $social_datas = C4::SocialData::get_data( $isbn ); t/db_dependent/SocialData.t:use C4::SocialData qw( get_data get_report ); t/db_dependent/SocialData.t: my $data = C4::SocialData::get_data(); t/db_dependent/SocialData.t: $data = C4::SocialData::get_data('0-596-52674-1'); t/db_dependent/SocialData.t: my $report = C4::SocialData::get_report(); t/db_dependent/SocialData.t: $report = C4::SocialData::get_report();
-- You are receiving this mail because: You are watching all bug changes.