IRC log for #koha, 2022-06-17

All times shown according to UTC.

Time S Nick Message
00:42 fridolin joined #koha
03:49 alohabot 🎁 🎃 Koha '21.05.x' packages pushed to 'koha-staging' repo  ðŸ¢ðŸ„🥟
04:09 koha-jenkins Project Koha_21.05_U18 build #186: SUCCESS in 34 min: https://jenkins.koha-community[…]ha_21.05_U18/186/
04:13 koha-jenkins Project Koha_21.05_U20 build #197: SUCCESS in 39 min: https://jenkins.koha-community[…]ha_21.05_U20/197/
04:27 koha-jenkins Project Koha_21.05_D10 build #269: UNSTABLE in 53 min: https://jenkins.koha-community[…]ha_21.05_D10/269/
04:35 koha-jenkins Project Koha_21.05_D11 build #221: SUCCESS in 1 hr 3 min: https://jenkins.koha-community[…]ha_21.05_D11/221/
04:47 koha-jenkins Project Koha_21.05_U16 build #196: STILL UNSTABLE in 1 hr 12 min: https://jenkins.koha-community[…]ha_21.05_U16/196/
04:55 koha-jenkins Yippee, build fixed!
04:55 koha-jenkins Project Koha_21.05_D9 build #191: FIXED in 42 min: https://jenkins.koha-community[…]oha_21.05_D9/191/
04:55 wahanui Congratulations!
05:03 reiveune joined #koha
05:03 Oak joined #koha
05:03 reiveune hello
05:25 koha-jenkins Yippee, build fixed!
05:25 koha-jenkins Project Koha_21.05_D12 build #123: FIXED in 57 min: https://jenkins.koha-community[…]ha_21.05_D12/123/
05:25 wahanui Congratulations!
05:28 koha-jenkins joined #koha
05:31 ashimema Morning
05:56 * dcook waves
05:56 * dcook hopes other people look at bug 27421 too
05:57 huginn Bug https://bugs.koha-community.or[…]_bug.cgi?id=27421 enhancement, P5 - low, ---, jonathan.druart+koha, Signed Off , Porting tools/stage-marc-import.pl to BackgroundJob
05:57 paxed arrrgh.
05:57 dcook good morning paxed :)
05:58 paxed i was wondering how come after_biblio_action delete hook didn't work.
05:58 paxed of course i can't find the biblio at that point anymore, it's already been deleted.
05:59 paxed before_biblio_action hooks when?
05:59 paxed (there's no way to get the biblio component parts once the biblio has been deleted)
06:01 fridolin joined #koha
06:03 dcook paxed: That sounds frustrating :/
06:03 dcook I think I actually had the same issue now that I think about it..
06:03 paxed it is
06:03 dcook I ended up not using plugins as a result.. heh
06:04 paxed there's no sense keeping the component parts once the host has been deleted
06:05 paxed (although i think some of the scientific libraries do have host records that should not have their components deleted...)
06:05 dcook I was just trying to think of exceptions heh
06:05 paxed but afaik, all normal libraries at least over here just want the components gone.
06:05 dcook Hmm actually it looks like I am using "_after_biblio_action_hooks"...
06:06 dcook Maybe I have a bug :o
06:07 paxed if you look at DelBiblio:
06:07 paxed $error = _koha_delete_biblio( $dbh, $biblionumber );
06:07 paxed _after_biblio_action_hooks({ action => 'delete', biblio_id => $biblionumber });
06:07 paxed so i don't know what use the biblio_id is at that point+
06:07 paxed ?
06:08 paxed i guess you could query the marc record from deletedbiblios
06:08 dcook Well in my case it would be to find that biblionumber in a third-party system to delete it too
06:08 dcook I would've sworn that I tested deletions but yeah I think my code might not work either..
06:08 paxed if all you're passing the biblionumber, then it works, sure
06:09 dcook Yeah nah I'm passing the whole $biblio object
06:09 paxed (or, maybe, i don't know your code ;)
06:09 dcook Or at least I thought I was haha
06:09 dcook Crap...
06:09 dcook arrrgh.
06:09 dcook Hehe
06:09 paxed oh hey, same reaction :D
06:10 jajm joined #koha
06:10 dcook Yeah I'm always glad that we can grump together
06:10 dcook I was going to use the next 45 minutes differently but oh well
06:11 paxed easy solution would be just to swap those two lines in DelBiblio
06:13 paxed but better would be the before_biblio_action hook ;)
06:13 dcook I was wondering where before_biblio_action hook is even..
06:13 dcook But yeah in my case I just need to pass the biblio_id and I'll be fine I think
06:13 marcelr joined #koha
06:13 marcelr hi #koha
06:13 dcook hola marcelr
06:13 marcelr hi dcook
06:13 wahanui hi dcook are you around?
06:14 dcook heh
06:16 jajm joined #koha
06:21 cait joined #koha
06:23 cait1 joined #koha
06:25 cait1 new strings on Pootle today
06:26 cait1 tuxayo: if you still want the translation patch, Bernardo will have to rerun the scripts
06:26 cait1 but it will untranslate a lot, so time for translators should not be too short (with complete langauges)
06:27 paxed ugh. i guess i could get the deleted biblio marc, parse it, and search the component biblios that way, duplicating koha core code.
06:32 dcook paxed: Thanks for that conversation. My deletions are definitely failing. Don't know why I didn't notice before...
06:33 dcook paxed: I mean couldn't you search in the Zebra if you're using $w <biblionumber> in the 773?
06:33 dcook Or am I misunderstanding?
06:35 paxed dcook: i guess. it would've just been so nice to just do $biblio->get_marc_components(999) to get the components
06:35 dcook Hmm that is sounding familiar..
06:36 dcook Yeah sorry it's hard for your situation :(
06:36 dcook I'm hoping mine should be sorted out soon..
06:38 paxed dcook: i'll probably just grab the marc from deletedbiblio_metadata, and use the code we had locally before bug 11175
06:38 huginn Bug https://bugs.koha-community.or[…]_bug.cgi?id=11175 new feature, P5 - low, ---, martin.renvoize, RESOLVED FIXED, Show the parent record's component parts in the detailed views
06:38 dcook We gotta do what we gotta do hey
06:40 MarkHofstetter joined #koha
06:50 paxed hmm. pity i can't do Koha::Deletedbiblios->find($biblionumber)
06:51 alex_ joined #koha
06:53 alex_ Bonjour
06:53 wahanui bidet, alex_
06:54 dcook I feel like I spend my life waiting for /kohadevbox/misc4dev/populate_db.pl...
06:55 dcook paxed: Write a patch as they say heh
06:55 * dcook looks at the 5 minutes remaining on his work clock
06:55 Joubu it's actually the DROP DB that takes quite a lot of time
06:55 dcook Surely I can fix all the bugs in 5 minutes...
06:55 dcook Joubu: Hmm interesting!
06:56 paxed dcook: we're putting out fires - updated koha last week
06:56 dcook And my koha-testing-docker is up so time for me to work fast and furiously..
06:56 Joubu paxed: why can't you Koha::Deletedbiblios->find?
07:00 paxed Joubu: "Can't locate Koha/Deletedbiblios.pm"
07:00 Joubu Koha::Old::Biblios
07:01 dcook jaxed: _after_item_action_hooks looks like it might be worse..
07:01 lds joined #koha
07:01 dcook Actually..
07:02 paxed Joubu: ugh. talk about consistency ...
07:03 Joubu paxed: ls Koha/Old/ and you will see consistency
07:06 paxed Plugin error (Delete Biblio Components): The method Koha::Old::Biblio->get_marc_components is not covered by tests!
07:06 paxed *kaboom*
07:10 marcelr @later tell khall please try again on 30678
07:10 huginn marcelr: The operation succeeded.
07:19 marcelr Joubu: working on 30822 ?
07:19 Joubu marcelr: no, but I let a question
07:20 Joubu comment 10
07:20 marcelr ah i see
07:50 marcelr Joubu how can I see whats background job doing ? i just am importing one record, it takes forever and one CPU goes close to 100%
07:50 marcelr Zebra indexing
07:50 marcelr nothing in logs
07:52 Joubu you cannot
07:52 Joubu well, you can strace
07:52 Joubu I haven't tried with zebra
07:56 magnuse \o/
08:08 jzairo_ joined #koha
08:27 ashimema perhaps add a _before_biblio_action_hook submission to koha paxed?
08:29 marcelr ugh    my $port = '61613';
08:35 paxed ashimema: istr there alrady was a bug for that, but couldn't find it
08:44 Joubu marcelr: it's the default value, you can overwrite with the config
08:45 Joubu (but I guess you noticed it already)
08:47 marcelr yes i just coughed ;)
08:48 marcelr but i was looking in the wrong place
08:48 marcelr the transition between old background and forking and the new stuff makes it hard
08:49 ashimema hmm, not that I can see paxed ☹️
08:49 ashimema https://splitter2.koha-community.org/files
08:49 ashimema it would be a fairly trivial hook to add though.. and would be nice to have given we're trying to do the same to a few other placed
08:58 marcelr ashimema: did you test 30822 with zebra too ?
08:59 marcelr i need to debug manage_marc_import all over to see whats happening now ?
09:04 marcelr ah it works again :)
09:06 marcelr batchcommit just failed silently on a wrong branchcode in the imported items, and the js kept polling for the status
09:06 marcelr thats bad
09:07 paxed there doesn't seem to be a commandline tool to handle plugins, apart from install_plugins.pl?
09:33 MarkHofstetter joined #koha
09:47 Joubu marcelr: what about bug 30926?
09:47 huginn Bug https://bugs.koha-community.or[…]_bug.cgi?id=30926 enhancement, P5 - low, ---, jonathan.druart+koha, In Discussion , Remove unnecessary use statements
09:49 marcelr there is not much discussion over there
09:50 Joubu do you agree we should focus on it and push asap?
09:50 Joubu or we drop it
09:51 marcelr i asked tomas
09:52 marcelr Joubu 27421 looks interesting, but incomplete (no test plan, no tests etc)
09:52 marcelr and i still have the silent failures
09:53 marcelr the job crashes too on wrong branchcode in items
09:53 marcelr and the progress stays at 0 / 0
09:53 Joubu see comment 15, I am tired of working on bugs without getting feedback. I am providing 80% of the work with those patches, and I need to know if there are people with interest in continuing/helping what needed to polish what's done already
09:55 Joubu marcelr: you are correct, the catch block does not report the problem
09:55 Joubu there is only a warn
09:55 marcelr its the usual problem Joubu
09:55 marcelr with feedback etc, nobody has time
09:56 marcelr i did not get the warn
09:56 Joubu in the worker log file?
09:56 MarkHofstetter joined #koha
09:57 marcelr will have a look later
10:03 cait1 unhappy bugzilla?
10:04 cait1 seems ok now
10:41 cait joined #koha
11:59 magnuse cait1: it's friday :-)
12:01 cait1 yes
12:01 cait1 tcohen: ping?
12:02 ashimema bug 27421
12:02 huginn Bug https://bugs.koha-community.or[…]_bug.cgi?id=27421 enhancement, P5 - low, ---, jonathan.druart+koha, Signed Off , Porting tools/stage-marc-import.pl to BackgroundJob
12:02 ashimema ah yes.. that one is on my list
12:03 ashimema too many thing 😜
12:04 khall_ joined #koha
12:29 oleonard joined #koha
12:29 oleonard Hi #koha
12:35 Oak Hi oleonard
12:35 wahanui hi oleopard
12:47 astyles joined #koha
12:48 magnuse my problem from yesterday gets weirder. the script reads a file of marcxml and loops over the records. the script as it is seems to have broken records immediately on reading. but if i comment out the line "my $res = ModBiblio( $record, $biblionumber, $config->{'frameworkcode'} );" way down in the script, reading the records seems to go just fine. anyone got a hunch why ModBiblio would break "$records = MARC::File::XML->in( $local_path );"?
13:00 Oak ModBiblio is Koha's internal function?
13:02 Dyrcona joined #koha
13:02 astyles Hi All humble dev here, with an issue when I attempt to run "perl installer/data/mysql/updatedatabase.pl" for an atomic file for a new sys prefin my local Koha v22. What are the rules in this chat space for seeking some help.? thanks. 8-]
13:05 oleonard Hi astyles
13:06 oleonard The rules are, you ask whatever you want, and if anyone around knows the answer hopefully they'll tell you!
13:06 oleonard So you can always ask your question first.
13:06 magnuse Oak: yes
13:07 astyles awesome thanks so much... when i run "perl installer/data/mysql/updatedatabase.pl" to add my atomic file update for a new sys pref, terminal throws error for missing perl module on line 39 of updatedatabase.pl
13:07 astyles "Can't locate C4/Context.pm in @INC (you may need to install the C4::Context module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.34.0 /usr/local/share/perl/5.34.0 /usr/lib/x86_64-linux-gnu/perl5/5.34 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.34 /usr/share/perl/5.34 /usr/local/lib/site_perl) at updatedatabase.pl line 39."
13:08 astyles 8-]
13:08 magnuse astyles: the solution to that is usually koha-shell
13:08 magnuse so: sudo koha-shell -c "perl installer/data/mysql/updatedatabase.pl" sitename
13:09 magnuse or "sudo koha-shell sitename" and run your updatedatabase.pl after that
13:09 magnuse koha-shell makes sure you have the right path etc, so all relevant perl modules can be found
13:10 astyles ahh thanks magnuse, will try 8-)
13:13 magnuse "man koha-shell" for more info
13:15 Oak magnuse++
13:17 astyles solution worked!, thanks so much. 8-]
13:20 magnuse astyles++
13:28 Oak joined #koha
13:28 alohalog` joined #koha
13:28 sijobl joined #koha
13:28 alohabot joined #koha
13:28 ribasushi joined #koha
13:28 mtj joined #koha
13:30 huginn News from kohagit: Bug 30733: fix url => URL to merge with existing string <https://git.koha-community.org[…]0fde3bbebba10eb94>
13:30 huginn News from kohagit: Bug 30733: Undo some <span> additions that don't yield good strings <https://git.koha-community.org[…]de1ce3428706692e7>
13:30 huginn News from kohagit: Bug 30733: Simplify some singular cases <https://git.koha-community.org[…]bba30dc2a2ef37dcf>
13:30 huginn News from kohagit: Bug 30733: Split strings differently <https://git.koha-community.org[…]2893b48e9e7fe275d>
13:30 huginn News from kohagit: Bug 30938: Convert ColumnSettings to TableSettings <https://git.koha-community.org[…]8e48e31beefa50df0>
13:30 huginn News from kohagit: Bug 30733: Undo <span> in an ICS calendar file <https://git.koha-community.org[…]d56ed1b6b3564b239>
13:30 huginn News from kohagit: Bug 30733: Wrap one more string in <span> <https://git.koha-community.org[…]7f8aef7943fb935f4>
13:31 huginn News from kohagit: Bug 30733: Undo bad handling of a plural case <https://git.koha-community.org[…]3da99d248786d8283>
13:31 huginn News from kohagit: Bug 30733: Fix string context lost due to being in two parts <https://git.koha-community.org[…]f356debe9ec50eed0>
13:31 huginn News from kohagit: Bug 30733: Move all semicolons inside the translatable strings <https://git.koha-community.org[…]df6d4cf0c026695c7>
13:31 huginn News from kohagit: Bug 30733: Simplify translatable strings <https://git.koha-community.org[…]a9c58f37039596d75>
13:31 astyles joined #koha
13:41 huginn News from kohagit: Bug 29963: Do not prefill empty date fields with today's date <https://git.koha-community.org[…]a24dce3014075a3a3>
13:44 Oak In your second script, line 107, what does this line mean?
13:44 Oak if ( $config->{'marc_format'} && $config->{'marc_format'} eq 'xml' ) {
13:49 alohabot 🎁 🦄 Koha 'master' packages pushed to 'koha-staging' repo  ðŸ°ðŸ®ðŸ¥œ
13:52 Oak Oh well. Someone who knows Perl could help best... I see you 'use' a bunch of things from Koha's code, including Biblio.pm -- everything ModBiblio does is accounted for when you use it in your script? use
13:53 Oak https://imgur.com/a/zXGoctT
14:03 paulderscheid[m] <Oak> "if ( $config->{'marc_format'} &&..." <- It means: Do the following stuff if the marc_format field on the config object is not falsy and the marc_format filed on the config object equals xml
14:03 paulderscheid[m] s/marc_format/marc\_format/, s/marc_format/marc\_format/, s/filed/field/
14:05 paulderscheid[m] tuxayo: Congrats on the push to master on bug 30733
14:05 huginn Bug https://bugs.koha-community.or[…]_bug.cgi?id=30733 enhancement, P5 - low, ---, victor, Pushed to master , Simplify translatable strings
14:06 Oak Ah.. that makes sense
14:06 tuxayo paulderscheid: thanks for your help yesterday ^^
14:06 paulderscheid[m] It was my pleasure
14:13 koha-jenkins Project Koha_Master_D11_My8 build #874: SUCCESS in 40 min: https://jenkins.koha-community[…]ster_D11_My8/874/
14:16 alohabot 🎁 🦄 Koha 'master' packages pushed to 'koha-staging' repo  ðŸ›ðŸ§€ðŸŒ¶
14:17 koha-jenkins Project Koha_Master_D11_MDB_Latest build #962: SUCCESS in 45 min: https://jenkins.koha-community[…]1_MDB_Latest/962/
14:17 cait joined #koha
14:18 cait joined #koha
14:19 khall joined #koha
14:35 ashimema Great work team in the translation improvements
14:38 koha-jenkins Project Koha_Master_U22 build #97: SUCCESS in 1 hr 6 min: https://jenkins.koha-community[…]ha_Master_U22/97/
14:48 koha-jenkins Project Koha_Master build #2067: STILL UNSTABLE in 43 min: https://jenkins.koha-community[…]Koha_Master/2067/
14:51 koha-jenkins Project Koha_Master_U20 build #442: SUCCESS in 37 min: https://jenkins.koha-community[…]a_Master_U20/442/
14:58 koha-jenkins Project Koha_Master_D9 build #2012: SUCCESS in 1 hr 23 min: https://jenkins.koha-community[…]a_Master_D9/2012/
15:00 bag joined #koha
15:02 astyles left #koha
15:18 cait1 anyone else having problems with yarn build on ktd?
15:18 cait1 yarn build
15:18 cait1 yarn run v1.22.19
15:18 cait1 $ node_modules/.bin/gulp build
15:18 cait1 /bin/sh: 1: node_modules/.bin/gulp: not found
15:18 cait1 error Command failed with exit code 127.
15:19 Oak joined #koha
15:20 oleonard Not me cait but mine has been running for a few days. Is yours newer?
15:20 cait1 from today
15:20 cait1 new images and all
15:24 cait1 tcohen: could we have broken yarn build command on ktd?
15:28 koha-jenkins Project Koha_Master_D12 build #171: SUCCESS in 37 min: https://jenkins.koha-community[…]a_Master_D12/171/
15:44 koha-jenkins Project Koha_Master_D9 build #2013: SUCCESS in 1 hr 5 min: https://jenkins.koha-community[…]a_Master_D9/2013/
15:50 paulderscheid[m] Hi, can anyone tell me how to remove a plugin from the shell. My stuff causes the template rendering to fail and unfortunately it's not a KTD.
15:50 koha-jenkins Project Koha_Master_U22 build #98: SUCCESS in 46 min: https://jenkins.koha-community[…]ha_Master_U22/98/
15:54 koha-jenkins Project Koha_Master_D11_My8 build #875: SUCCESS in 56 min: https://jenkins.koha-community[…]ster_D11_My8/875/
16:00 cait1 paulderscheid[m]: it looks like we have something for installing plugins, but it doesn't appear to have an option for uninstall
16:00 cait1 https://git.koha-community.org[…]nstall_plugins.pl
16:02 paulderscheid[m] Maybe I can just reverse the process 😄
16:03 cait1 i think you might need to empty out the plugin related tables and remove the code from the directory
16:03 cait1 left #koha
16:05 paulderscheid[m] cait1: I thin your right
16:05 cait joined #koha
16:05 paulderscheid[m] > <@_oftc_cait1:matrix.org> i think you might need to empty out the plugin related tables and remove the code from the directory
16:05 paulderscheid[m] * I think your right
16:06 koha-jenkins Project Koha_Master_U20 build #443: UNSTABLE in 37 min: https://jenkins.koha-community[…]a_Master_U20/443/
16:07 paulderscheid[m] * I think you‘re right
16:07 paulderscheid[m] I already dropped the table but didn‘t empty out the directory
16:12 kidclamp irc logs are down?
16:13 kidclamp http://irc.koha-community.org/ <- goes to bugzilla
16:15 kidclamp oleonard: were you or joubu able to get PRE_CHOMP working?
16:15 alohalog` joined #koha
16:33 koha-jenkins Project Koha_Master_D10 build #690: SUCCESS in 42 min: https://jenkins.koha-community[…]a_Master_D10/690/
16:39 koha-jenkins Project Koha_21.05_D10 build #270: STILL UNSTABLE in 32 min: https://jenkins.koha-community[…]ha_21.05_D10/270/
16:41 oleonard kidclamp: I... don't remember?
16:46 koha-jenkins Project Koha_Master_D11_MDB_Latest build #963: UNSTABLE in 1 hr 2 min: https://jenkins.koha-community[…]1_MDB_Latest/963/
16:59 reiveune bye
16:59 reiveune left #koha
17:14 koha-jenkins Project Koha_Master_D9 build #2014: SUCCESS in 1 hr 19 min: https://jenkins.koha-community[…]a_Master_D9/2014/
17:14 khall_ joined #koha
18:17 khall joined #koha
18:29 khall_ joined #koha
18:44 jzairo joined #koha
19:37 cait joined #koha
19:38 fridolin joined #koha
20:11 lukeg joined #koha
20:15 cait 10 more bugs to 31000
20:15 lukeg :)
20:15 ashimema That's a pretty crazy number
20:21 lukeg tuxayo: you about?
20:21 tuxayo lukeg: hi :)
20:22 lukeg for Bug 30733, did you squash everything needed in 22.05 into a single patch?
20:22 huginn Bug https://bugs.koha-community.or[…]_bug.cgi?id=30733 enhancement, P5 - low, ---, victor, Pushed to master , Simplify translatable strings
20:22 tuxayo lukeg: yes
20:23 lukeg so I'll only need this: https://bugs.koha-community.or[…]36286&action=diff
20:23 lukeg ?
20:23 cait tuxayo: will you trigger Bernardo for another po update?
20:25 tuxayo lukeg: yes
20:25 tuxayo cait: yes
20:25 lukeg tuxayo: thanks! great work. I am testing now and hopefully pushing soon after :)
20:25 tuxayo great :D
20:29 tuxayo lukeg: I didn't though at first to test that way but a better way than the ticket test plan is: without patches, update strings for a lang, git add the .po, apply patch, update strings, diff
20:34 koha-jenkins Yippee, build fixed!
20:34 koha-jenkins Project Koha_21.05_D10 build #271: FIXED in 53 min: https://jenkins.koha-community[…]ha_21.05_D10/271/
20:34 wahanui Congratulations!
20:34 cait hm search exploding on master... Can't call method "field" on unblessed reference at /kohadevbox/koha/C4/Biblio.pm line 2392 ?
20:35 cait can someone confirm?
20:37 davidnind[m] it's not for me (maybe try a docker-compose pull before starting up KTD?)
20:37 davidnind[m] tried normal search in staff interface and OPAC
20:37 cait i did that on my other ktd... and then could no longer yarn build :)
20:37 cait davidnind[m]: could you try searching: en
20:40 davidnind[m] cait: is working okay for me, returning search results in staff interface and OPAC
20:41 cait thx davidnind[m]
20:41 cait i just don't wan to throw it out just yet... could be a configuration issue
20:41 cait and then we might want to catch it
20:41 lukeg cait: i just tried as well. for me, it works
20:41 davidnind[m] cait: yarn install then yarn build and yarn build --view opac are also working for me
20:42 cait havinga bad day then I guess
20:42 cait I set up a new ktd this morning and it would't work
20:42 cait pulled ktd, pulled images... ku -d
20:43 cait hm ok works now (the search)
20:43 cait thx lukeg++ davidnind[m]++
20:45 davidnind[m] I normal stop with Ctrl+C the kd - sometimes I do another kd in case I didn't close everything down properly last time I used
20:46 davidnind[m] the kd s/be then kd
20:46 cait actually it started working after a restart_all... :(
20:46 cait so it was not that
20:46 cait :)
20:46 davidnind[m] the cure all!
21:10 koha-jenkins Project Koha_22.05_U20 build #13: SUCCESS in 58 min: https://jenkins.koha-community[…]oha_22.05_U20/13/
21:21 lukeg joined #koha
21:30 cait davidnind[m]: thx for your comment on bug 30989 - i fixed the staff detail page too
21:30 huginn Bug https://bugs.koha-community.or[…]_bug.cgi?id=30989 minor, P5 - low, ---, oleonard, Passed QA , Tags with some special characters are not encoded right
21:32 koha-jenkins Project Koha_22.05_U18 build #16: STILL UNSTABLE in 1 hr 19 min: https://jenkins.koha-community[…]oha_22.05_U18/16/
21:33 davidnind[m] cait++
21:33 cait davidnind[m]++
21:39 koha-jenkins Project Koha_22.05_U22 build #14: SUCCESS in 1 hr 5 min: https://jenkins.koha-community[…]oha_22.05_U22/14/
21:40 tuxayo lukeg++
21:45 koha-jenkins Project Koha_22.05_U20 build #14: SUCCESS in 44 min: https://jenkins.koha-community[…]oha_22.05_U20/14/
22:21 koha-jenkins Project Koha_22.05_D11 build #21: STILL UNSTABLE in 1 hr 10 min: https://jenkins.koha-community[…]oha_22.05_D11/21/
22:22 cait davidnind[m]: just fixing the cloud page too
22:23 davidnind[m] thanks cait!
22:23 cait thx for testing so well :)
22:48 koha-jenkins Project Koha_22.05_U20 build #15: SUCCESS in 37 min: https://jenkins.koha-community[…]oha_22.05_U20/15/
22:52 koha-jenkins Project Koha_22.05_U18 build #17: STILL UNSTABLE in 1 hr 20 min: https://jenkins.koha-community[…]oha_22.05_U18/17/
23:15 koha-jenkins Project Koha_22.05_U18 build #18: STILL UNSTABLE in 47 min: https://jenkins.koha-community[…]oha_22.05_U18/18/
23:31 koha-jenkins Project Koha_22.05_D11 build #22: STILL UNSTABLE in 1 hr 9 min: https://jenkins.koha-community[…]oha_22.05_D11/22/

| Channels | #koha index | Today | | Search | Google Search | Plain-Text | plain, newest first | summary