From b5efacbbede56bd883867cd552ef5f7ff1333477 Mon Sep 17 00:00:00 2001 From: Tobias Oetiker Date: Fri, 16 Jul 2021 11:38:50 +0200 Subject: [PATCH] released --- CHANGES | 5 ++++ VERSION | 2 +- cpanfile | 2 +- deploy-beta.sh | 12 ++++++++ deploy.sh | 2 +- lib/Kuickres.pm | 25 ++++++++++++++++- lib/Kuickres/Controller/LocationApi.pm | 8 +++--- lib/Kuickres/GuiPlugin/MultiBookingForm.pm | 7 ++--- share/de.po | 30 +++++++++----------- share/en.po | 28 ++++++++----------- share/fr.po | 30 +++++++++----------- share/it.po | 30 +++++++++----------- share/messages.pot | 32 ++++++++++------------ thirdparty/cpanfile-5.34.snapshot | 6 ++-- 14 files changed, 118 insertions(+), 101 deletions(-) create mode 100755 deploy-beta.sh diff --git a/CHANGES b/CHANGES index e41d394..44d2fc6 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,8 @@ +0.5.6 2021-07-16 10:07:32 +0200 Tobias Oetiker + + - in multibooking do NOT list partial bookings under problems but still only + book this with bestEffort + 0.5.5 2021-07-15 18:24:10 +0200 Tobias Oetiker - more german diff --git a/VERSION b/VERSION index 600dd59..8474cd2 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -0.5.5 +0.5.6 diff --git a/cpanfile b/cpanfile index d6ca2bc..afb753e 100644 --- a/cpanfile +++ b/cpanfile @@ -1,4 +1,4 @@ -requires 'CallBackery'; +requires 'CallBackery', '>=0.38.11'; requires 'Mojo::SQLite', '>= 3.006'; requires 'Email::MIME'; requires 'Email::Sender'; diff --git a/deploy-beta.sh b/deploy-beta.sh new file mode 100755 index 0000000..3d91933 --- /dev/null +++ b/deploy-beta.sh @@ -0,0 +1,12 @@ +#!/bin/sh +set -e +V=$(cat VERSION) +echo $V $(date +"%Y-%m-%d %H:%M:%S %z") $(git config user.name) '<'$(git config user.email)'>' >> CHANGES.new +echo >> CHANGES.new +echo ' -' >> CHANGES.new +echo >> CHANGES.new +cat CHANGES >> CHANGES.new && mv CHANGES.new CHANGES +$EDITOR CHANGES +./bootstrap +make dist +cat kuickres-$V.tar.gz | ssh kuicksa@freddie 'tar zxf -;cd kuickres-'$V';./configure --prefix=$HOME/opt/kuickres-beta;make install;$HOME/start-beta.sh' \ No newline at end of file diff --git a/deploy.sh b/deploy.sh index 3d91933..2b3db92 100755 --- a/deploy.sh +++ b/deploy.sh @@ -9,4 +9,4 @@ cat CHANGES >> CHANGES.new && mv CHANGES.new CHANGES $EDITOR CHANGES ./bootstrap make dist -cat kuickres-$V.tar.gz | ssh kuicksa@freddie 'tar zxf -;cd kuickres-'$V';./configure --prefix=$HOME/opt/kuickres-beta;make install;$HOME/start-beta.sh' \ No newline at end of file +cat kuickres-$V.tar.gz | ssh kuicksa@freddie 'tar zxf -;cd kuickres-'$V';./configure --prefix=$HOME/opt/kuickres;make install;$HOME/start.sh' \ No newline at end of file diff --git a/lib/Kuickres.pm b/lib/Kuickres.pm index 9751ecf..e12ef5b 100644 --- a/lib/Kuickres.pm +++ b/lib/Kuickres.pm @@ -275,5 +275,28 @@ INSERT INTO usercat (usercat_name,usercat_rule_json) VALUES ('Plain','{"futureBookingDays": 60,"maxEquipmentPointsPerBooking": 3,"maxBookingHoursPerDay": 4,"equipmentList":["test_a"]}'); -ALTER TABLE cbuser ADD cbuser_usercat INTEGER NOT NULL default 1 REFERENCES usercat(usercat_id); +COMMIT; +PRAGMA foreign_keys=off; +BEGIN; + +ALTER TABLE cbuser ADD cbuser_usercat INTEGER NOT NULL DEFAULT 1; + +CREATE TABLE cbuser_new ( + cbuser_id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, + cbuser_login TEXT UNIQUE, + cbuser_family TEXT, + cbuser_given TEXT, + cbuser_password TEXT NOT NULL, + cbuser_note TEXT, + cbuser_calendar_tag TEXT, + cbuser_pin INTEGER DEFAULT (substr(random() || '0000000',3,7)), + cbuser_usercat INTEGER NOT NULL default 1 REFERENCES usercat(usercat_id) +); + +INSERT INTO cbuser_new SELECT * from cbuser; +DROP TABLE cbuser; +ALTER TABLE cbuser_new RENAME to cbuser; +COMMIT; +PRAGMA foreign_keys=on; +BEGIN; diff --git a/lib/Kuickres/Controller/LocationApi.pm b/lib/Kuickres/Controller/LocationApi.pm index 192f290..cdb7bec 100644 --- a/lib/Kuickres/Controller/LocationApi.pm +++ b/lib/Kuickres/Controller/LocationApi.pm @@ -86,14 +86,14 @@ SQL_END sub get_signage { my $c = shift->openapi->valid_input or return; my $lid = $c->param('locationId'); - my $res = $c->db->query(<<'SQL_END',time,time+2*24*3600,$lid)->hashes; + my $res = $c->db->query(<<'SQL_END',{ type=>SQL_INTEGER, value=>time},{type=>SQL_INTEGER, value=>time+2*24*3600},{type=>SQL_INTEGER,value => $lid})->hashes; SELECT booking.*,cbuser_login,cbuser_family,cbuser_given,room.*,location.* FROM booking JOIN cbuser ON booking_cbuser = cbuser_id JOIN room ON booking_room = room_id JOIN location ON room_location = location_id - WHERE booking_start_ts > CAST(? AS INTEGER) - AND booking_start_ts < CAST(? AS INTEGER) - AND room_location = CAST(? AS INTEGER) + WHERE booking_start_ts > ? + AND booking_start_ts < ? + AND room_location = ? ORDER BY booking_start_ts SQL_END # warn dumper $res; diff --git a/lib/Kuickres/GuiPlugin/MultiBookingForm.pm b/lib/Kuickres/GuiPlugin/MultiBookingForm.pm index 2277497..f4ad771 100644 --- a/lib/Kuickres/GuiPlugin/MultiBookingForm.pm +++ b/lib/Kuickres/GuiPlugin/MultiBookingForm.pm @@ -309,6 +309,7 @@ has actionCfg => sub { my $bad = "Die folgenden Reservationen konnten nicht erzeugt werden:
    "; for my $prob (@$problems) { + next unless $prob; #skip silent problems $bad .= "
  • $prob->{key}
      " . join("\n",map {"
    • Überlappend $_
    • "} @{$prob->{overlaps}}) . join("\n",map {"
    • $_
    • "} @{$prob->{issues}}) @@ -532,12 +533,8 @@ sub multiBook ($self,$recId,$room,$start,$end,$rule) { push @success, "$id - $key" . (@overlapEq ? " ".trm("(Ohne: %1!)",join(', ',@overlapEq)) : ''); if(@overlapEq) { - push @problem, { - key => $key, - overlaps => [], - issues => [(@overlapEq ? trm("Ohne: %1!",join(', ',@overlapEq)) : '')], + push @problem, ''; # a silent problem marker }; - } } else { push @problem, { diff --git a/share/de.po b/share/de.po index 974c1b9..a8becf5 100644 --- a/share/de.po +++ b/share/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kuickres 0.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-07-15 18:25+0200\n" +"POT-Creation-Date: 2021-07-16 11:24+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,12 +22,12 @@ msgid "%1 is required" msgstr "%1 ist erforderlich" #: lib/Kuickres/GuiPlugin/Booking.pm:315 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:365 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:366 #: lib/Kuickres/GuiPlugin/BookingForm.pm:455 msgid "%d.%m.%Y" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:533 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:534 msgid "(Ohne: %1!)" msgstr "" @@ -41,7 +41,7 @@ msgid "" "passwords/quickguide\">Standford Password Policy" msgstr "" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:422 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:423 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:500 msgid "Access Denied" msgstr "" @@ -88,7 +88,7 @@ msgstr "Raum Hinzufügen" msgid "Add User" msgstr "Konto hinzufügen" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:389 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:390 #: lib/Kuickres/GuiPlugin/UserCatForm.pm:167 msgid "Add UserCat" msgstr "UserCategory hinzufügen" @@ -180,7 +180,7 @@ msgstr "Neues Konto Erstellen" msgid "Created" msgstr "Erzeugt" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:442 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:443 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:517 msgid "Data Decoding Problem %1" msgstr "Datendekodierungsproblem %1" @@ -453,7 +453,7 @@ msgstr "" msgid "Id" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:510 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:511 msgid "Internal error with eq removal" msgstr "" @@ -600,10 +600,6 @@ msgstr "Kein Benutzer gewählt" msgid "Note" msgstr "Bemerkung" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:538 -msgid "Ohne: %1!" -msgstr "" - #: lib/Kuickres/GuiPlugin/Location.pm:59 msgid "Opening Hours" msgstr "Öffnungszeiten" @@ -659,7 +655,7 @@ msgstr "Die Passworte müssen übereinstimmen." msgid "Phone number 07x xxx xxxx expected" msgstr "Telefonnummer 07x xxx xxxx erwartet" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:427 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:428 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:507 msgid "Plugin Name missing" msgstr "Plugin Name fehlt" @@ -708,7 +704,7 @@ msgstr "" #: lib/Kuickres/GuiPlugin/LocationForm.pm:146 #: lib/Kuickres/GuiPlugin/UserForm.pm:225 #: lib/Kuickres/GuiPlugin/EquipmentForm.pm:143 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:388 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:389 #: lib/Kuickres/GuiPlugin/UserCatForm.pm:166 #: lib/Kuickres/GuiPlugin/BookingForm.pm:474 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../GuiPlugin/UserForm.pm:204 @@ -805,7 +801,7 @@ msgstr "" msgid "Unknown email address" msgstr "Unbekannte eMail Adresse" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:433 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:434 msgid "Upload Missing" msgstr "Upload fehlt" @@ -911,13 +907,13 @@ msgid "email address in use" msgstr "eMail Adresse schon in Gebrauch" #: lib/Kuickres/GuiPlugin/EquipmentForm.pm:184 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:433 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:434 #: lib/Kuickres/GuiPlugin/UserCatForm.pm:205 msgid "no selection found" msgstr "Kein Auswahl gefunden" #: lib/Kuickres/GuiPlugin/EquipmentForm.pm:176 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:422 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:423 msgid "no selection->room_id found" msgstr "" @@ -945,7 +941,7 @@ msgstr "Das gewählte Feld ist unbekannt." msgid "type a your new password" msgstr "tippen sie ihr Passwort" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:456 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:457 msgid "unknown user configured in rule" msgstr "Unbekannter user in der Rule" diff --git a/share/en.po b/share/en.po index 0fd3e2c..0b178a3 100644 --- a/share/en.po +++ b/share/en.po @@ -4,12 +4,12 @@ msgid "%1 is required" msgstr "" #: lib/Kuickres/GuiPlugin/Booking.pm:315 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:365 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:366 #: lib/Kuickres/GuiPlugin/BookingForm.pm:455 msgid "%d.%m.%Y" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:533 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:534 msgid "(Ohne: %1!)" msgstr "" @@ -23,7 +23,7 @@ msgid "" "passwords/quickguide\">Standford Password Policy" msgstr "" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:422 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:423 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:500 msgid "Access Denied" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "Add User" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:389 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:390 #: lib/Kuickres/GuiPlugin/UserCatForm.pm:167 msgid "Add UserCat" msgstr "" @@ -162,7 +162,7 @@ msgstr "" msgid "Created" msgstr "" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:442 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:443 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:517 msgid "Data Decoding Problem %1" msgstr "" @@ -429,7 +429,7 @@ msgstr "" msgid "Id" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:510 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:511 msgid "Internal error with eq removal" msgstr "" @@ -576,10 +576,6 @@ msgstr "" msgid "Note" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:538 -msgid "Ohne: %1!" -msgstr "" - #: lib/Kuickres/GuiPlugin/Location.pm:59 msgid "Opening Hours" msgstr "" @@ -629,7 +625,7 @@ msgstr "" msgid "Phone number 07x xxx xxxx expected" msgstr "" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:427 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:428 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:507 msgid "Plugin Name missing" msgstr "" @@ -678,7 +674,7 @@ msgstr "" #: lib/Kuickres/GuiPlugin/LocationForm.pm:146 #: lib/Kuickres/GuiPlugin/UserForm.pm:225 #: lib/Kuickres/GuiPlugin/EquipmentForm.pm:143 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:388 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:389 #: lib/Kuickres/GuiPlugin/UserCatForm.pm:166 #: lib/Kuickres/GuiPlugin/BookingForm.pm:474 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../GuiPlugin/UserForm.pm:204 @@ -775,7 +771,7 @@ msgstr "" msgid "Unknown email address" msgstr "" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:433 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:434 msgid "Upload Missing" msgstr "" @@ -878,13 +874,13 @@ msgid "email address in use" msgstr "" #: lib/Kuickres/GuiPlugin/EquipmentForm.pm:184 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:433 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:434 #: lib/Kuickres/GuiPlugin/UserCatForm.pm:205 msgid "no selection found" msgstr "" #: lib/Kuickres/GuiPlugin/EquipmentForm.pm:176 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:422 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:423 msgid "no selection->room_id found" msgstr "" @@ -912,6 +908,6 @@ msgstr "" msgid "type a your new password" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:456 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:457 msgid "unknown user configured in rule" msgstr "" diff --git a/share/fr.po b/share/fr.po index 11def1d..4ecef7d 100644 --- a/share/fr.po +++ b/share/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kuickres 0.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-07-15 18:25+0200\n" +"POT-Creation-Date: 2021-07-16 11:24+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,12 +23,12 @@ msgid "%1 is required" msgstr "" #: lib/Kuickres/GuiPlugin/Booking.pm:315 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:365 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:366 #: lib/Kuickres/GuiPlugin/BookingForm.pm:455 msgid "%d.%m.%Y" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:533 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:534 msgid "(Ohne: %1!)" msgstr "" @@ -42,7 +42,7 @@ msgid "" "passwords/quickguide\">Standford Password Policy" msgstr "" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:422 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:423 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:500 msgid "Access Denied" msgstr "" @@ -89,7 +89,7 @@ msgstr "" msgid "Add User" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:389 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:390 #: lib/Kuickres/GuiPlugin/UserCatForm.pm:167 msgid "Add UserCat" msgstr "" @@ -181,7 +181,7 @@ msgstr "" msgid "Created" msgstr "" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:442 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:443 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:517 msgid "Data Decoding Problem %1" msgstr "" @@ -448,7 +448,7 @@ msgstr "" msgid "Id" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:510 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:511 msgid "Internal error with eq removal" msgstr "" @@ -595,10 +595,6 @@ msgstr "" msgid "Note" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:538 -msgid "Ohne: %1!" -msgstr "" - #: lib/Kuickres/GuiPlugin/Location.pm:59 msgid "Opening Hours" msgstr "" @@ -648,7 +644,7 @@ msgstr "" msgid "Phone number 07x xxx xxxx expected" msgstr "" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:427 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:428 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:507 msgid "Plugin Name missing" msgstr "" @@ -697,7 +693,7 @@ msgstr "" #: lib/Kuickres/GuiPlugin/LocationForm.pm:146 #: lib/Kuickres/GuiPlugin/UserForm.pm:225 #: lib/Kuickres/GuiPlugin/EquipmentForm.pm:143 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:388 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:389 #: lib/Kuickres/GuiPlugin/UserCatForm.pm:166 #: lib/Kuickres/GuiPlugin/BookingForm.pm:474 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../GuiPlugin/UserForm.pm:204 @@ -794,7 +790,7 @@ msgstr "" msgid "Unknown email address" msgstr "" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:433 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:434 msgid "Upload Missing" msgstr "" @@ -897,13 +893,13 @@ msgid "email address in use" msgstr "" #: lib/Kuickres/GuiPlugin/EquipmentForm.pm:184 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:433 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:434 #: lib/Kuickres/GuiPlugin/UserCatForm.pm:205 msgid "no selection found" msgstr "" #: lib/Kuickres/GuiPlugin/EquipmentForm.pm:176 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:422 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:423 msgid "no selection->room_id found" msgstr "" @@ -931,6 +927,6 @@ msgstr "" msgid "type a your new password" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:456 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:457 msgid "unknown user configured in rule" msgstr "" diff --git a/share/it.po b/share/it.po index 11def1d..4ecef7d 100644 --- a/share/it.po +++ b/share/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: kuickres 0.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-07-15 18:25+0200\n" +"POT-Creation-Date: 2021-07-16 11:24+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,12 +23,12 @@ msgid "%1 is required" msgstr "" #: lib/Kuickres/GuiPlugin/Booking.pm:315 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:365 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:366 #: lib/Kuickres/GuiPlugin/BookingForm.pm:455 msgid "%d.%m.%Y" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:533 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:534 msgid "(Ohne: %1!)" msgstr "" @@ -42,7 +42,7 @@ msgid "" "passwords/quickguide\">Standford Password Policy" msgstr "" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:422 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:423 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:500 msgid "Access Denied" msgstr "" @@ -89,7 +89,7 @@ msgstr "" msgid "Add User" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:389 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:390 #: lib/Kuickres/GuiPlugin/UserCatForm.pm:167 msgid "Add UserCat" msgstr "" @@ -181,7 +181,7 @@ msgstr "" msgid "Created" msgstr "" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:442 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:443 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:517 msgid "Data Decoding Problem %1" msgstr "" @@ -448,7 +448,7 @@ msgstr "" msgid "Id" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:510 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:511 msgid "Internal error with eq removal" msgstr "" @@ -595,10 +595,6 @@ msgstr "" msgid "Note" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:538 -msgid "Ohne: %1!" -msgstr "" - #: lib/Kuickres/GuiPlugin/Location.pm:59 msgid "Opening Hours" msgstr "" @@ -648,7 +644,7 @@ msgstr "" msgid "Phone number 07x xxx xxxx expected" msgstr "" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:427 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:428 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:507 msgid "Plugin Name missing" msgstr "" @@ -697,7 +693,7 @@ msgstr "" #: lib/Kuickres/GuiPlugin/LocationForm.pm:146 #: lib/Kuickres/GuiPlugin/UserForm.pm:225 #: lib/Kuickres/GuiPlugin/EquipmentForm.pm:143 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:388 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:389 #: lib/Kuickres/GuiPlugin/UserCatForm.pm:166 #: lib/Kuickres/GuiPlugin/BookingForm.pm:474 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../GuiPlugin/UserForm.pm:204 @@ -794,7 +790,7 @@ msgstr "" msgid "Unknown email address" msgstr "" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:433 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:434 msgid "Upload Missing" msgstr "" @@ -897,13 +893,13 @@ msgid "email address in use" msgstr "" #: lib/Kuickres/GuiPlugin/EquipmentForm.pm:184 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:433 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:434 #: lib/Kuickres/GuiPlugin/UserCatForm.pm:205 msgid "no selection found" msgstr "" #: lib/Kuickres/GuiPlugin/EquipmentForm.pm:176 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:422 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:423 msgid "no selection->room_id found" msgstr "" @@ -931,6 +927,6 @@ msgstr "" msgid "type a your new password" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:456 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:457 msgid "unknown user configured in rule" msgstr "" diff --git a/share/messages.pot b/share/messages.pot index 0a1c2dd..e6b1ec2 100644 --- a/share/messages.pot +++ b/share/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: kuickres 0.5.5\n" +"Project-Id-Version: kuickres 0.5.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-07-15 18:25+0200\n" +"POT-Creation-Date: 2021-07-16 11:24+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,12 +23,12 @@ msgid "%1 is required" msgstr "" #: lib/Kuickres/GuiPlugin/Booking.pm:315 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:365 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:366 #: lib/Kuickres/GuiPlugin/BookingForm.pm:455 msgid "%d.%m.%Y" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:533 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:534 msgid "(Ohne: %1!)" msgstr "" @@ -42,7 +42,7 @@ msgid "" "passwords/quickguide\">Standford Password Policy" msgstr "" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:422 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:423 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:500 msgid "Access Denied" msgstr "" @@ -89,7 +89,7 @@ msgstr "" msgid "Add User" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:389 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:390 #: lib/Kuickres/GuiPlugin/UserCatForm.pm:167 msgid "Add UserCat" msgstr "" @@ -181,7 +181,7 @@ msgstr "" msgid "Created" msgstr "" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:442 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:443 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:517 msgid "Data Decoding Problem %1" msgstr "" @@ -448,7 +448,7 @@ msgstr "" msgid "Id" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:510 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:511 msgid "Internal error with eq removal" msgstr "" @@ -595,10 +595,6 @@ msgstr "" msgid "Note" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:538 -msgid "Ohne: %1!" -msgstr "" - #: lib/Kuickres/GuiPlugin/Location.pm:59 msgid "Opening Hours" msgstr "" @@ -648,7 +644,7 @@ msgstr "" msgid "Phone number 07x xxx xxxx expected" msgstr "" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:427 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:428 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:507 msgid "Plugin Name missing" msgstr "" @@ -697,7 +693,7 @@ msgstr "" #: lib/Kuickres/GuiPlugin/LocationForm.pm:146 #: lib/Kuickres/GuiPlugin/UserForm.pm:225 #: lib/Kuickres/GuiPlugin/EquipmentForm.pm:143 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:388 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:389 #: lib/Kuickres/GuiPlugin/UserCatForm.pm:166 #: lib/Kuickres/GuiPlugin/BookingForm.pm:474 #: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../GuiPlugin/UserForm.pm:204 @@ -794,7 +790,7 @@ msgstr "" msgid "Unknown email address" msgstr "" -#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:433 +#: /home/oetiker/checkouts/kuickres/thirdparty/lib/perl5/CallBackery/qooxdoo/../Controller/RpcService.pm:434 msgid "Upload Missing" msgstr "" @@ -897,13 +893,13 @@ msgid "email address in use" msgstr "" #: lib/Kuickres/GuiPlugin/EquipmentForm.pm:184 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:433 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:434 #: lib/Kuickres/GuiPlugin/UserCatForm.pm:205 msgid "no selection found" msgstr "" #: lib/Kuickres/GuiPlugin/EquipmentForm.pm:176 -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:422 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:423 msgid "no selection->room_id found" msgstr "" @@ -931,6 +927,6 @@ msgstr "" msgid "type a your new password" msgstr "" -#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:456 +#: lib/Kuickres/GuiPlugin/MultiBookingForm.pm:457 msgid "unknown user configured in rule" msgstr "" diff --git a/thirdparty/cpanfile-5.34.snapshot b/thirdparty/cpanfile-5.34.snapshot index d97501b..578c360 100644 --- a/thirdparty/cpanfile-5.34.snapshot +++ b/thirdparty/cpanfile-5.34.snapshot @@ -50,10 +50,10 @@ DISTRIBUTIONS Term::ReadKey 0 strict 0 warnings 0 - CallBackery-0.38.9 - pathname: O/OE/OETIKER/CallBackery-0.38.9.tar.gz + CallBackery-0.38.11 + pathname: O/OE/OETIKER/CallBackery-0.38.11.tar.gz provides: - CallBackery 0.038009 + CallBackery 0.038011 CallBackery::Config undef CallBackery::Controller::RpcService undef CallBackery::Database undef