diff --git a/templates/default/documentation.html.ep b/templates/default/documentation.html.ep index 2f75f55..f269a95 100644 --- a/templates/default/documentation.html.ep +++ b/templates/default/documentation.html.ep @@ -129,8 +129,7 @@
  • For Etherpad-Lite support:
  • @@ -212,8 +211,7 @@ yum install git tar wget httpd mod_ssl openssl mariadb-server \\ 'perl(Mojolicious::Plugin::StaticCompressor' \\ 'perl(Mojolicious::Plugin::RenderFile)' \\ 'perl(Crypt::SaltedHash)' \\ - 'perl(Etherpad::API)' \\ - 'perl(LWP::Protocol::https)' \\ + 'perl(Etherpad)' \\ 'perl(Sesion::Token)' \\ 'perl(Email::Valid)' \\ 'perl(File::Temp)' \\ @@ -434,9 +432,9 @@ cp /opt/vroom/conf/settings.ini.dist /opt/vroom/conf/settings.ini

    diff --git a/vroom.pl b/vroom.pl index d688d16..02c00cb 100755 --- a/vroom.pl +++ b/vroom.pl @@ -44,10 +44,10 @@ foreach my $dir (qw/assets/){ our $optf = {}; # Create etherpad api client if enabled if ($config->{'etherpad.uri'} =~ m/https?:\/\/.*/ && $config->{'etherpad.api_key'} ne ''){ - my $etherpad = eval { require Etherpad::API }; + my $etherpad = eval { require Etherpad }; if ($etherpad){ - import Etherpad::API; - $optf->{etherpad} = Etherpad::API->new({ + import Etherpad; + $optf->{etherpad} = Etherpad->new({ url => $config->{'etherpad.uri'}, apikey => $config->{'etherpad.api_key'} }); @@ -57,7 +57,7 @@ if ($config->{'etherpad.uri'} =~ m/https?:\/\/.*/ && $config->{'etherpad.api_key } } else{ - app->log->info("Etherpad::API not found, disabling Etherpad-Lite support"); + app->log->info("Etherpad perl module not found, disabling Etherpad-Lite support"); } }