Time  Nick             Message
00:05 koha-jenkins     Project Koha_19.05_D9 build #124: STILL UNSTABLE in 40 min: https://jenkins.koha-community.org/job/Koha_19.05_D9/124/
00:20 koha-jenkins     Project Koha_19.05_U18 build #127: STILL UNSTABLE in 31 min: https://jenkins.koha-community.org/job/Koha_19.05_U18/127/
00:28 koha-jenkins     Project Koha_19.05_D8 build #125: STILL UNSTABLE in 33 min: https://jenkins.koha-community.org/job/Koha_19.05_D8/125/
00:46 koha-jenkins     Project Koha_19.05_D9 build #125: STILL UNSTABLE in 40 min: https://jenkins.koha-community.org/job/Koha_19.05_D9/125/
06:17 paxed            bah. bulkmarcimported records can just give "Can't call method "notforloan" on an undefined value at /usr/share/koha/lib/C4/Reserves.pm line 1237." with no other warning
06:42 jim              hello
06:42 wahanui          bidet, jim
06:42 jim              can someone tell me can we use Amazon and Google together to get images for book cover
06:43 jim              Sometimes if Google doesn't give me then Amazon can fetch it
06:43 jim              is it possible
07:38 reiveune         hello
07:54 alex_a           Bonjour
07:54 wahanui          salut, alex_a
07:56 marcelr          hi alex_a
08:05 * magnuse        waves
08:05 marcelr          o/
08:11 ashimema[m]      morning
08:11 marcelr          hi ashimema[m]
08:18 ashimema[m]      mtj around?
08:18 ashimema[m]      likely not.. crazy hour
08:20 cait             with mtj you never know :)
08:20 cait             and not so bad in nz
08:20 cait             9pm
08:20 * ashimema[m]    is back to trying to understand how we generate the debian control file correctly ;)
08:25 ashimema[m]      I'm trying to understand the pipe delimited format
08:30 huginn           News from kohagit: Bug 19735: (RM follow-up) Update debian/control <http://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=531c5baaee90aabb5a90b2b2f99612586a4d6f72>
08:32 ashimema[m]      haha.. I broke the nightly build bot
08:43 mtj              hi cait, ashimema[m].. whats up?
08:44 ashimema[m]      I was trying to understand how the debian/control file works
08:44 ashimema[m]      I missed it when pushing bug 19735
08:44 huginn           Bug http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19735 enhancement, P5 - low, ---, julian.maurice, Pushed to master , Move Perl deps definitions into a cpanfile
08:44 ashimema[m]      I 'think' my followup (just pushed) is right.. but wouldn't mind your more expert set of eyes
08:45 ashimema[m]      what especially confuses me is why generating it on different OS versions makes such a huge difference..
08:45 ashimema[m]      and how the pipe delimited lists work
08:46 ere              woah, how can this query take like half a second to complete: https://github.com/Koha-Community/Koha/blob/master/Koha/Plugins.pm#L79 ?? It returns a single value from a total of 48 rows...
08:46 ashimema[m]      like for buster.. do we need to add `| perl-modules-5.28` in a few places
08:46 ashimema[m]      yikes ere
08:47 ere              even without distinct or filter or anything..
08:47 mtj              ashimema[m]:  hmm,  i *think* i understand how most of the ./control stuff works..
08:47 ashimema[m]      strange
08:48 ashimema[m]      haha
08:48 ere              I started looking into the REST API startup since it takes over 5 seconds for me, which really sucks when developing and testing a plugin..
08:48 mtj              ..the script debian/update-control runs in a pbuilder session, which generates the ./control file
08:50 mtj              ...i think the trick is to run the script in the oldest debian we support (jessie)
08:50 ashimema[m]      that whole area is certainly open to improvement ere
08:50 ashimema[m]      I should boot a koha-testing-docker for jessie to run it then rally
08:50 ashimema[m]      * I should boot a koha-testing-docker for jessie to run it then really
08:50 ashimema[m]      ok
08:50 ere              ashimema[m]: I'll see if I can come up with something useful. This is just a bit baffling.
08:51 ashimema[m]      though the build bot removed some dependancies last time I tried
08:51 ashimema[m]      sorry, that wasn't meant to give you more work ere..
08:51 ashimema[m]      so many projects :P
08:52 ere              ashimema[m]: yeah, but if there's an easyish way to improve the startup, it makes other stuff faster, so I can justify spending a moment on it.. :)
08:52 ashimema[m]      :)
08:52 mtj              ./update-control calls ./list-deps script - which uses C4::Installer::PerlDependencies to get a list of perl module deps
08:52 ashimema[m]      One of the things I've never liked is that to install one new plugin (or upgrade one), we loop through all plugins and re-install all of them..
08:52 ashimema[m]      just feels wasteful to me
08:53 ashimema[m]      not any more it doesn't mtj ;)
08:53 ashimema[m]      it now call ::PerlModules which grabs the list from cpanfile instead of PerlDependancies
08:53 ere              ashimema[m]: agreed
08:53 ashimema[m]      but I get what you mean
08:56 mtj              ashimema[m]:  does ./list-deps work with the new cpanm patchset?
08:57 ashimema[m]      yup
08:57 ashimema[m]      but.. you need CPAN::Meta installed first
08:58 ashimema[m]      jajm was very conprehensive in his patchset :)
08:58 mtj              ah ok, great stuff jajm++ :)
08:59 ashimema[m]      so.. for buster...
08:59 ashimema[m]      do we need to add a `print " | $pkg" . "-5,28"` line around line 78 of that script do you think?
09:00 mtj              which script?
09:00 ashimema[m]      list-deps
09:05 jajm             ashimema[m], perl package depends on perl-modules-5.28 on buster, is it needed to install it explicitely ?
09:05 ashimema[m]      pass
09:06 ashimema[m]      I was just reading the list-deps script and following the pattern in there..
09:06 ashimema[m]      I don't entirely understand why it does what it does ;)
09:08 jajm             me neither :)
09:08 ashimema[m]      looks like bug 17618 added the versioned lines for perl-modules in the first place
09:08 huginn           Bug http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17618 normal, P5 - low, ---, mirko, CLOSED FIXED, perl-modules Debian package name change
09:08 koha-jenkins     Project Koha_Master_D8 build #678: STILL UNSTABLE in 35 min: https://jenkins.koha-community.org/job/Koha_Master_D8/678/
09:09 ashimema[m]      I'd love to fully understand that script.. haha
09:09 mtj              ashimema[m], jajm  - i dont think i understand that bit of the script either :)
09:09 ashimema[m]      particularly the little limiric at the bottom
09:12 mtj              looks like perl-modules package became a virtual package for deb9/stretch
09:12 cait             hm anyone ever noticed that we are missing bilbio_metadata here? https://wiki.koha-community.org/wiki/DBMS_auto_increment_fix
09:12 koha-jenkins     Project Koha_Master_D9_MDB_Latest build #122: STILL UNSTABLE in 39 min: https://jenkins.koha-community.org/job/Koha_Master_D9_MDB_Latest/122/
09:13 ashimema[m]      ah.. so not really needed since stretch :)
09:13 ashimema[m]      by the sounds
09:14 * cait           is so tired of finding problems :(
09:15 Joubu            cait: you should no longer need that fix if you are using a recent version of MariaDB
09:15 cait             Joubu: we are using with what is in the OS
09:17 mtj              hi cait, i think you are correct that bib_meta is missed
09:17 cait             Joubu:  Versions prior to MariaDB 10.2.4 are affected. See the MariaDB 10.2.4
09:17 cait             and Stretch has 10.1.44-MariaDB
09:17 cait             so no, that is not fixed
09:18 mtj              ashimema[m]:  "so not really needed since stretch" .. its the opposite :)
09:19 mtj              so, you are correct, we need to add  $pkg" . "-5,28" and  $pkg" . "-5,30" - for buster and bullseye
09:20 mtj              ..as there is no pkg called 'perl-modules' in those releases , but perl-modules-5.28 and perl-modules-5.30
09:21 cait             should I add the biblio_metadata to our sample?
09:22 Joubu            yes
09:23 Joubu            my bet is that biblio_metadata is younger than the fix
09:24 cait             it's probably true - we missed to update it
09:24 cait             i have changed the wiki - if someone could proof read that would be nice
09:30 koha-jenkins     Project Koha_Master_D9_My8 build #146: STILL UNSTABLE in 58 min: https://jenkins.koha-community.org/job/Koha_Master_D9_My8/146/
09:33 Joubu            cait: read good!
09:34 huginn           News from kohagit: Bug 24361: Silent Items/GetItemsForInventory.t <http://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=f2b108638732f9ff42456a461af0e9f30ed2b679>
09:36 mtj              ashimema[m]: ah oops... there is a 'perl-modules' package - so lines 78ish might be redundant, as you said
09:40 ashimema[m]      :)
09:40 ashimema[m]      probably does no harm
09:41 marcelr          @later tell oleonard please have a look at bug 24649 comment 5
09:41 huginn           marcelr: The operation succeeded.
09:50 jim              hello
09:51 jim              I want to know if anybody knows how to edit bulk barcode numbers
09:53 koha-jenkins     Project Koha_Master_U18 build #606: STILL UNSTABLE in 41 min: https://jenkins.koha-community.org/job/Koha_Master_U18/606/
09:58 koha-jenkins     Project Koha_Master_D9 build #1137: STILL UNSTABLE in 49 min: https://jenkins.koha-community.org/job/Koha_Master_D9/1137/
10:14 cait             Joubu++ thx
10:14 cait             we got some maintenance going on , so connection is a bit flaky
10:25 koha-jenkins     Project Koha_Master_D8 build #679: STILL UNSTABLE in 31 min: https://jenkins.koha-community.org/job/Koha_Master_D8/679/
10:26 jim              ?
10:34 koha-jenkins     Project Koha_Master_D9_My8 build #147: STILL UNSTABLE in 57 min: https://jenkins.koha-community.org/job/Koha_Master_D9_My8/147/
10:48 kohaputti        Does anybody else see Context.t test failing: http://paste.debian.net/plain/1130435
10:49 koha-jenkins     Project Koha_Master_D9_MDB_Latest build #123: STILL UNSTABLE in 50 min: https://jenkins.koha-community.org/job/Koha_Master_D9_MDB_Latest/123/
10:53 davidnind        kohaputti: on master all the tests pass for me
10:54 kohaputti        maybe this is the memcached package missing
10:54 kohaputti        davidnind, thanks for letting me know the tests work for you
10:55 davidnind        kohaputti: that was using koha-testing-docker
10:58 kohaputti        that was it (memcached safe module missing)
11:06 koha-jenkins     Project Koha_Master_U18 build #607: STILL UNSTABLE in 41 min: https://jenkins.koha-community.org/job/Koha_Master_U18/607/
11:07 Joubu            bug 24642
11:07 huginn           Bug http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24642 enhancement, P5 - low, ---, jonathan.druart, Pushed to master , Cache::Memcached::Fast::Safe must be marked as mandatory
11:29 koha-jenkins     Project Koha_Master_D9 build #1138: STILL UNSTABLE in 54 min: https://jenkins.koha-community.org/job/Koha_Master_D9/1138/
11:52 Joubu            wiki wiki?
11:58 Joubu            back now..
11:59 Joubu            mtj: do you know why my Koha docker container is failing when U18 is used?
11:59 Joubu            I get koha_1       | Koha requires mpm_itk to be enabled within Apache in order to run.
11:59 Joubu            koha_1       | Typically this can be enabled with:
11:59 Joubu            koha_1       |
11:59 Joubu            koha_1       |     sudo a2enmod mpm_itk
11:59 Joubu            the weird thing is that it seems to work on jenkins
12:01 marcelr          apache wants the koha user
12:05 Joubu            I am using the exact same command as the one Jenkins uses, koha-testing-docker is up-to-date and I removed all my local containers (so been pulled)
12:06 Joubu            so I do not expect it to fail when it passes on jenkins
12:06 marcelr          jenkins <> interface
12:07 Joubu            marcelr: I do not understand what you mean :)
12:08 marcelr          jenkins doesnt need the apache config
12:08 marcelr          i am enabling mpm_itk when running docker
12:09 marcelr          and need to pass two security flags to the container
12:09 Joubu            the Koha container is crashing, I cannot do anything
12:09 Joubu            which flags?
12:09 marcelr          let me check
12:10 marcelr          --cap-add=SYS_NICE --cap-add=DAC_READ_SEARCH
12:10 marcelr          in the docker run
12:10 Joubu            I am using docker-compose up
12:10 marcelr          ok
12:22 Joubu            mtj: Something else, bug 19735 comment 54 - I do recreate the failure when I use D9, but `apt install libcpan-meta-perl` (that will install the new version) fixes the problemf
12:22 huginn           Bug http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19735 enhancement, P5 - low, ---, julian.maurice, Pushed to master , Move Perl deps definitions into a cpanfile
12:39 oleonard         Hi #koha
13:12 oleonard         So... wahanui, huginn, logbot, AnnaBoten, SlackIntegration[m], what're you all up to these days?
13:13 oleonard         How are things in Robottown? (Robotton?)
13:13 oleonard         Roboville.
13:21 Joubu            lari: around?
13:25 Joubu            lari: nevermind
13:32 marcelr          thx oleonard i will have a look again
13:38 corilynn         lol, oleonard, speaking to your peeps?
13:38 oleonard         corilynn: Sometimes it's just too quiet and you gotta improvise
13:38 corilynn         I'm surprised they didn't reply
13:39 corilynn         btw, oleonard, I have some cycles tomorrow if you want me to do some SO
13:40 magnuse          SlackIntegration[m]: hi
13:40 wahanui          salut, magnuse
13:40 corilynn         everyone here loves the double spaces thing
13:40 magnuse          does that mean ashimema[m] is getting rocket set up?
13:41 oleonard         Excellent. davidnind has been a signoff machine so my queue is getting pretty small. But I'm going to work on reviving some PDA and FQA patches
13:41 ashimema[m]      I started over xmas but didn't have time to pursue it further :(
13:41 corilynn         kewl, kewl
13:41 ashimema[m]      and my free droplet has now runout
13:41 magnuse          ooh, tomorrow is gbsd!
13:41 ashimema[m]      if anyone has a moment to give it a try then feel free ;)
13:42 magnuse          ah, guess i jut have not noticed SlackIntegration[m] before? or... that is slack, not rocket, of course...
13:42 ashimema[m]      I've not noticed that one before either
13:42 oleonard         corilynn: I was close to having a signoff for Bug 22880 yesterday but then apparently the sandboxes didn't cooperate
13:42 huginn           Bug http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22880 enhancement, P5 - low, ---, oleonard, Needs Signoff , Convert opacheader system preference to news block
13:43 corilynn         rude!
13:50 oleonard         Technically GBSD has already started https://www.timeanddate.com/worldclock/fixedtime.html?msg=Global+bug+squashing+day+2020-02-14+-+start&iso=20200214T00&p1=274
14:13 ashimema[m]      good call
14:18 magnuse          oleonard: ah, that is true, of course
14:18 magnuse          i'll see if i can move some bugs along, then
14:22 caroline_catlady good morning!
14:23 oleonard         Hi caroline_catlady, happy technically-GBSD
14:23 caroline_catlady already?
14:23 oleonard         *technically*
14:24 caroline_catlady it's always midnight somewhere?
14:31 magnuse          yup
15:11 cait             @later tell andreashm  ping :)
15:11 huginn           cait: The operation succeeded.
15:21 Joubu            lukeG: around?
15:25 lukeG            Joubu hi
15:26 Joubu            Hi lukeG, about bug 24653 - there was a problem with misc4dev and 19.05. I fixed it this morning. I can ignore the failures you have on the 3 19.05.x jobs
15:26 huginn           Bug http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24653 normal, P5 - low, ---, tomascohen, NEW , Failing tests in 19.05.x
15:27 lukeG            Joubu: thanks for fixing it
15:27 vfernandes       hi #koha
15:28 Joubu            lukeG: ashimema[m] is requestion a new build for the 3 projects, let's see if it fixes the failures :)
15:28 Joubu            requesting*
15:28 ashimema[m]      :)
15:29 Joubu            lukeG: you just pushed something actually, so new jobs have been triggered!
15:29 koha-jenkins     Project Koha_Master_D9 build #1139: STILL UNSTABLE in 39 min: https://jenkins.koha-community.org/job/Koha_Master_D9/1139/
15:30 lukeG            yea, i pushed a typo follow up, so we'll see what happens :)
15:38 wizzyrea         hi
15:38 oleonard         Hi wizzyrea
15:58 koha-jenkins     Yippee, build fixed!
15:58 wahanui          Congratulations!
15:58 koha-jenkins     Project Koha_19.05_D8 build #126: FIXED in 34 min: https://jenkins.koha-community.org/job/Koha_19.05_D8/126/
15:58 lukeG            Joubu++
16:02 huginn           News from kohagit: Bug 24592: DBRev 19.12.00.021 <http://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=f9abd7d2ef583ee6658c55aa1e342816ce303ce9>
16:02 huginn           News from kohagit: Bug 24643: Add test to cover the timezone <http://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=913871e9b15a3aa6ef00b7a7da085f8b74b160c5>
16:02 huginn           News from kohagit: Bug 15352: Use URLLinkText instead of URL for item links <http://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=c0808108b42127a5c84026ea51f945ec9de81f22>
16:02 huginn           News from kohagit: Bug 24643: Add unit tests <http://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=8aafd70ecab475f4f5d1f61a78b74221b8d7796c>
16:02 huginn           News from kohagit: Bug 24643: Support fractional seconds <http://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=a8a9512ff671488c703be45fc3d9e92bbdc88b5c>
16:02 huginn           News from kohagit: Bug 24611: Regression test <http://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=0433960ed8cb72be475f979cdd1f4401c70f2b20>
16:02 huginn           News from kohagit: Bug 24611: Fix wrong budget_id query param in /acquisitions/orders <http://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=ac8d6074111103dec0028f68f2da4e8adbe7c663>
16:02 huginn           News from kohagit: Bug 24592: Database Update <http://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=a5a75ddd0419fabc1108b5334210692b99c49934>
16:02 huginn           News from kohagit: Bug 24592: Reword LOST_RETURN to LOST_FOUND <http://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=b9ecf361a82511a09b5487af0efd7f0d50a2b43e>
16:02 koha-jenkins     Yippee, build fixed!
16:02 wahanui          Congratulations!
16:02 koha-jenkins     Project Koha_19.05_U18 build #128: FIXED in 33 min: https://jenkins.koha-community.org/job/Koha_19.05_U18/128/
16:04 koha-jenkins     Project Koha_19.05_D8 build #127: ABORTED in 5 min 35 sec: https://jenkins.koha-community.org/job/Koha_19.05_D8/127/
16:04 koha-jenkins     Project Koha_19.05_U18 build #129: ABORTED in 1 min 18 sec: https://jenkins.koha-community.org/job/Koha_19.05_U18/129/
16:06 koha-jenkins     Yippee, build fixed!
16:06 wahanui          Congratulations!
16:06 koha-jenkins     Project Koha_19.05_D9 build #126: FIXED in 41 min: https://jenkins.koha-community.org/job/Koha_19.05_D9/126/
16:40 koha-jenkins     Project Koha_Master_D8 build #680: STILL UNSTABLE in 36 min: https://jenkins.koha-community.org/job/Koha_Master_D8/680/
16:50 reiveune         bye
16:56 koha-jenkins     Project Koha_Master_D9 build #1140: STILL UNSTABLE in 50 min: https://jenkins.koha-community.org/job/Koha_Master_D9/1140/
16:59 caroline_catlady wizzyrea: were you able to undelete your records yesterday?
17:00 koha-jenkins     Project Koha_Master_D9_MDB_Latest build #124: STILL UNSTABLE in 56 min: https://jenkins.koha-community.org/job/Koha_Master_D9_MDB_Latest/124/
17:07 koha-jenkins     Project Koha_19.05_D8 build #128: SUCCESS in 26 min: https://jenkins.koha-community.org/job/Koha_19.05_D8/128/
17:08 wizzyrea         I had a colleague who was doing undeletes and I was wondering 1. if there was a better way than digging through the db 2. why it wasn't a feature and I've pointed my colleague to your lovely plugin and they were very excited
17:08 wizzyrea         caroline_catlady++
17:08 wizzyrea         inlibro++
17:08 wizzyrea         also chocolate from NZ is the very best chocolate
17:09 caroline_catlady I was wondering if it worked in the end? Because I wasn't sure if it undeleted records or just items
17:09 caroline_catlady I didn't get to tase the NZ chocolate, I brought back! My partner ate it all!! :(
17:10 wizzyrea         https://kiwicornerdairy.com/whittakers-chocolate-block-berry-biscuit-250g
17:10 caroline_catlady david_nind++ for bringing Whittakers to Dublin :)
17:10 wizzyrea         it says in the plugin it does both :D
17:10 caroline_catlady ok cool!
17:10 wizzyrea         but I'm not sure we've tried it
17:11 wizzyrea         ^ those are the people we order from, when we just can't go any longer without NZ chocolate
17:11 caroline_catlady ooh thanks for that link!!
17:12 caroline_catlady I'll have him buy me dark peppermint too :) (mint+chocolate = drool)
17:13 wizzyrea         totally. we like the almond, hazelnut, and peanut blocks too
17:13 wizzyrea         lil Mr's favorite is the mint/dark
17:13 wizzyrea         oh and the coconut
17:13 wizzyrea         no, actually, it's really only the fruit and nut that we don't like :P
17:13 wizzyrea         everything else is GET IN MY MOUTH.
17:14 oleonard         I don't think I've ever seen chocolate classified as a "block' before
17:16 caroline_catlady me either, but they are not bars that's for sure (even though that's what  called them for lack of a better word)
17:16 caroline_catlady They are huge, like 3x6 inches or something like that
17:17 * oleonard       should not have started browsing chocolate products on Amazon
17:17 caroline_catlady When I say my partner ate the whole thing and didn't leave me one bit, he ate a bucketload of chocolate! hehe
17:21 * oleonard       slips away to eat a bucketload of chocolate
17:24 oleonard         Just kidding I don't have any chocolate. NONE.
17:26 oleonard         I do need to start a KohaCon shopping list though
17:32 ashimema[m]      Yikes.. what happened on the D8 failure.. half the test suit just light up..
17:32 ashimema[m]      it'll have to wait..
17:32 * ashimema[m]    goes to be a scout leader for the evening
17:38 koha-jenkins     Project Koha_19.05_U18 build #130: SUCCESS in 42 min: https://jenkins.koha-community.org/job/Koha_19.05_U18/130/
17:49 koha-jenkins     Project Koha_Master_D9_My8 build #148: STILL UNSTABLE in 41 min: https://jenkins.koha-community.org/job/Koha_Master_D9_My8/148/
17:58 koha-jenkins     Project Koha_Master_U18 build #608: STILL UNSTABLE in 57 min: https://jenkins.koha-community.org/job/Koha_Master_U18/608/
18:15 koha-jenkins     Project Koha_19.05_D8 build #129: SUCCESS in 26 min: https://jenkins.koha-community.org/job/Koha_19.05_D8/129/
18:28 koha-jenkins     Project Koha_19.05_D9 build #127: SUCCESS in 49 min: https://jenkins.koha-community.org/job/Koha_19.05_D9/127/
18:39 koha-jenkins     Project Koha_Master_D8 build #681: STILL UNSTABLE in 40 min: https://jenkins.koha-community.org/job/Koha_Master_D8/681/
18:49 koha-jenkins     Project Koha_19.05_U18 build #131: SUCCESS in 33 min: https://jenkins.koha-community.org/job/Koha_19.05_U18/131/
19:51 oleonard         Hm... Bug 21156 seems to have missed adding a JS asset... locale_data.js
19:51 huginn           Bug http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21156 enhancement, P5 - low, ---, julian.maurice, Pushed to master , Internationalization: plural forms, context, and more for JS files
19:53 oleonard         @later tell jajm It looks like Bug 21156 should have added a js file, locale_data.js, which isn't there. Could you take a look?
19:53 huginn           oleonard: The operation succeeded.
20:39 caroline_catlady Is there a master list of things to squash tomorrow (or today for some)_ or we go with our hearts?
20:48 koha-jenkins     Project Koha_19.05_D8 build #130: SUCCESS in 33 min: https://jenkins.koha-community.org/job/Koha_19.05_D8/130/
20:50 koha-jenkins     Project Koha_19.05_U18 build #132: SUCCESS in 33 min: https://jenkins.koha-community.org/job/Koha_19.05_U18/132/
21:00 koha-jenkins     Project Koha_19.05_D9 build #128: SUCCESS in 45 min: https://jenkins.koha-community.org/job/Koha_19.05_D9/128/
21:22 koha-jenkins     Project Koha_19.05_D8 build #131: SUCCESS in 34 min: https://jenkins.koha-community.org/job/Koha_19.05_D8/131/
21:23 koha-jenkins     Project Koha_19.05_U18 build #133: SUCCESS in 32 min: https://jenkins.koha-community.org/job/Koha_19.05_U18/133/
21:46 koha-jenkins     Project Koha_19.05_D9 build #129: UNSTABLE in 46 min: https://jenkins.koha-community.org/job/Koha_19.05_D9/129/
21:47 caroline_catlady how do we feel about animated gifs in the manual?
21:48 caroline_catlady just showing a sequence of actions/clicks
21:48 caroline_catlady not cat animated gifs...
21:48 caroline_catlady XD
21:48 hayley           I only want them in if they're cats
21:48 hayley           :P
21:49 caroline_catlady I could maybe change my cursor to a cat paw?
21:49 hayley           perfect
21:49 caroline_catlady When I click, the claws would come out
21:49 hayley           hehe
21:49 caroline_catlady I'm sure someone already made that hehe!
21:50 caroline_catlady https://www.cursor.cc/?action=icon&file_id=33866
21:51 hayley           :D
21:55 koha-jenkins     Project Koha_19.05_D8 build #132: UNSTABLE in 33 min: https://jenkins.koha-community.org/job/Koha_19.05_D8/132/
21:56 koha-jenkins     Project Koha_19.05_U18 build #134: UNSTABLE in 33 min: https://jenkins.koha-community.org/job/Koha_19.05_U18/134/
22:01 ashimema[m]      Go with your heart 🤗
22:05 caroline_catlady I started making gifs for my knowledge base... https://inlibro.com/knowledge-base/modifier-letiquette-dune-zone-marc/ this one has a lot, so it's a bit annoying, but when there's only one, I think it's interesting
22:05 caroline_catlady And anyway, I doubt people print the manual...?
22:27 koha-jenkins     Project Koha_19.05_D9 build #130: STILL UNSTABLE in 41 min: https://jenkins.koha-community.org/job/Koha_19.05_D9/130/
22:29 koha-jenkins     Project Koha_19.05_D8 build #133: STILL UNSTABLE in 33 min: https://jenkins.koha-community.org/job/Koha_19.05_D8/133/
22:29 koha-jenkins     Project Koha_19.05_U18 build #135: STILL UNSTABLE in 33 min: https://jenkins.koha-community.org/job/Koha_19.05_U18/135/
22:35 koha-jenkins     Project Koha_19.05_D9 build #131: FAILURE in 7 min 15 sec: https://jenkins.koha-community.org/job/Koha_19.05_D9/131/
23:03 koha-jenkins     Yippee, build fixed!
23:03 wahanui          Congratulations!
23:03 koha-jenkins     Project Koha_19.05_U18 build #136: FIXED in 33 min: https://jenkins.koha-community.org/job/Koha_19.05_U18/136/
23:03 koha-jenkins     Yippee, build fixed!
23:03 wahanui          Congratulations!
23:03 koha-jenkins     Project Koha_19.05_D8 build #134: FIXED in 34 min: https://jenkins.koha-community.org/job/Koha_19.05_D8/134/