IRC log for #koha, 2020-01-16

All times shown according to UTC.

Time S Nick Message
00:04 koha-jenkins Yippee, build fixed!
00:04 wahanui Congratulations!
00:04 koha-jenkins Project Koha_19.05_D9 build #99: FIXED in 44 min: https://jenkins.koha-community[…]Koha_19.05_D9/99/
00:04 khall joined #koha
00:39 inlibro joined #koha
00:44 koha-jenkins Project Koha_19.05_D9 build #100: SUCCESS in 40 min: https://jenkins.koha-community[…]oha_19.05_D9/100/
01:22 koha-jenkins Project Koha_18.11_D8 build #232: SUCCESS in 27 min: https://jenkins.koha-community[…]oha_18.11_D8/232/
01:23 koha-jenkins Yippee, build fixed!
01:23 wahanui Congratulations!
01:23 koha-jenkins Project Koha_18.11_D9 build #235: FIXED in 28 min: https://jenkins.koha-community[…]oha_18.11_D9/235/
01:32 koha-jenkins Project Koha_18.11_U18 build #223: SUCCESS in 41 min: https://jenkins.koha-community[…]ha_18.11_U18/223/
01:40 inlibro joined #koha
02:40 inlibro joined #koha
02:53 JesseM_ joined #koha
03:40 inlibro joined #koha
04:40 inlibro joined #koha
05:40 inlibro joined #koha
05:53 chriss joined #koha
06:22 andreashm joined #koha
06:40 inlibro joined #koha
06:41 cait joined #koha
07:26 did joined #koha
07:31 davidnind joined #koha
07:41 inlibro joined #koha
07:52 did joined #koha
07:57 reiveune joined #koha
07:57 reiveune hello
08:04 cait joined #koha
08:05 cait good morning #koha!
08:07 fridolin joined #koha
08:08 magnuse bonjour!
08:10 matts hi!
08:12 alex_a joined #koha
08:15 bdonnahue1 joined #koha
08:15 alex_a_ joined #koha
08:22 ashimema Morning koha
08:23 ashimema @later tell caroline_catlady are you tempted by the Marseille backrest at all?  I'm keen to organise a documentors table there 😀
08:23 huginn` ashimema: The operation succeeded.
08:24 paul_p joined #koha
08:25 cait backrest? :)
08:26 fridolin joined #koha
08:26 ashimema Bloomin phone
08:30 magnuse Marseille backrest sounds nice
08:30 davidnind imaging one of those massage type chairs...
08:31 magnuse one library is reporting that if they login in to the staff client, visit the opac and go back to the staff client they are logged out. opac and staff on same domain, different ports. koha 19.05.x. anyone else seen that?
08:31 magnuse they are using shib, but it happens for non-shib logins too
08:32 sophie_m joined #koha
08:36 ashimema hmm
08:39 magnuse they can also be logged out randomly without visiting the opac, but it always happens if they visit the opac
08:41 inlibro joined #koha
08:41 davidnind OPACBaseURL and staffClientBaseURL?
08:42 sophie_m1 joined #koha
08:44 ashimema Good call davidnind
08:46 davidnind Not sure it is the answer, but vaguely remembering cait I think helping solve a similar problem 'a while ago'...
08:58 magnuse i'll check
09:03 did joined #koha
09:10 magnuse looks like they were set correctly
09:11 magnuse thanks for trying :-)
09:12 davidnind I don't have any other ideas...(is not something I really know anything about)
09:16 marcelr joined #koha
09:16 marcelr hi #koha
09:25 ashimema cait++
09:32 cait hm i thnk the issue i helped with was a bit different
09:32 cait what does the login screen show as reason for the log out? just normal one or session expired?
09:33 cait I wonder if something breaks the cookie
09:34 magnuse they had a problem with memcached and are checking if that is the root of the problems
09:35 cait davidnind++
09:36 davidnind restart all the things! :)
09:36 magnuse :-)
09:41 inlibro joined #koha
10:00 fridolin joined #koha
10:00 did joined #koha
10:01 nugged joined #koha
10:05 sen joined #koha
10:27 GeekRuthie joined #koha
10:41 inlibro joined #koha
11:02 marcelr joined #koha
11:12 fridolin joined #koha
11:21 khall joined #koha
11:23 ashimema anyone fancy an excersize in perl logic and understand the intention of BranchTransferLimits?
11:28 corilynn what's the opposite of 'git bz apply' ?
11:28 ashimema opposite?
11:28 corilynn unapply ?
11:29 ashimema as in.. push a patch to bugzilla?
11:29 corilynn rip the bandaid off?
11:29 ashimema or get rid of what was applied
11:29 corilynn remove the application
11:29 ashimema kinda depends how much you've done in the interim
11:29 marcelr git reset be careful !
11:29 ashimema and if you're part way through an apply that's failed.. or if you reached the end
11:30 ashimema what marcelr said
11:30 corilynn ok
11:30 ashimema if your part way through and have given up trying to fix conflicts..
11:30 davidnind git checkout master; git branch -D <branchname>; git reset --hard origin/master
11:30 ashimema then it
11:30 ashimema `git bz apply --abort`
11:30 ashimema that will rewind the work done
11:30 corilynn k
11:30 ashimema if you fully applied and have not run the updatedatabase or anything
11:31 ashimema then you have two options..
11:31 corilynn no database
11:31 ashimema checkout a new branch as davidnind suggests
11:31 corilynn will do
11:31 ashimema or reset to a commithash from just before the apply
11:31 ashimema `git reset hash`
11:31 ashimema to get the hash `git log`
11:32 ashimema then copy the funky code hash from the commit just before your patches were applied
11:32 ashimema yeah.. you'll need `--hard` to actually get rid of the changes entirely.. without it you'll undo the commits, but leave the changes in your working tree
11:32 ashimema hugs
11:32 ashimema in git.. branches are cheap..
11:33 ashimema so I tend to just create them and throw them away allot instead of trying to 'undo' much
11:33 davidnind (I use koha-testing-docker for testing and signing off bugs - my cheat sheet FWIW: https://gitlab.com/snippets/1893788)
11:34 ashimema nice cheat sheet
11:34 corilynn yeah, if only i knew what Docker was ...
11:34 corilynn another day
11:35 davidnind hehe, it's still a mystery to me..
11:35 ashimema docker makes stuff easy :)
11:37 davidnind koha-testing-docker is great!
11:41 inlibro joined #koha
11:42 corilynn now i'm sad.. for some reason when i try and apply my patch it's also trying to apply Bug 21250: DBRev 19.12.00.010
11:42 huginn` Bug http://bugs.koha-community.org[…]_bug.cgi?id=21250 normal, P5 - low, ---, koha-bugs, NEW , Auto-self-checkout not fully compatible with multi-branch library setup
11:42 khall joined #koha
11:43 ashimema what bug is your patch on?
11:43 corilynn bug 24429
11:43 huginn` Bug http://bugs.koha-community.org[…]_bug.cgi?id=24429 enhancement, P5 - low, ---, carnold, Needs Signoff , Advanced editor - Add ability to generate an export file as cataloger saves
11:43 corilynn has no "depends on"
11:43 ashimema the patch is also attached to that bug
11:43 wahanui okay, ashimema.
11:44 corilynn oh weird, but it's got that bug attached ... wtf did I do?
11:44 ashimema looks like you mistakenly attached it
11:44 ashimema the fix is..
11:44 ashimema click on 'details' for the patch in bugzilla
11:44 ashimema click 'edit details'
11:44 ashimema select 'obsolete'
11:44 ashimema 'submit'
11:45 ashimema and perhaps add a comment saying 'oops, attached to wrong bug'
11:45 corilynn thanks!
11:45 ashimema it happens ;)
11:45 corilynn no idea what I did
11:45 * ashimema hasn't done that before.. honest :P
11:45 corilynn lol
11:46 BobB joined #koha
11:46 andreashm joined #koha
11:47 irma joined #koha
11:47 andreashm joined #koha
11:48 dj joined #koha
11:49 kidclamp joined #koha
11:50 davidnind left #koha
11:57 vfernandes joined #koha
12:11 did joined #koha
12:22 oleonard joined #koha
12:23 oleonard Hi #koha
12:25 cait hi oleonard :)
12:39 khall joined #koha
12:42 inlibro joined #koha
12:43 fridolin joined #koha
12:46 did joined #koha
12:55 did1 joined #koha
13:13 andreashm joined #koha
13:16 Dyrcona joined #koha
13:39 did joined #koha
13:42 inlibro joined #koha
13:42 khall joined #koha
13:47 fridolin joined #koha
13:55 did joined #koha
13:57 fridolin joined #koha
14:01 caroline_catlady joined #koha
14:14 caroline_catlady good morning!
14:14 oleonard Hi caroline_catlady
14:16 caroline_catlady ashimema: I'd love to go to the hackfest, but I unfortunetaly have a training scheduled for that week
14:16 ashimema :(
14:16 ashimema oh well
14:16 oleonard Skype it :P
14:17 caroline_catlady eric will be there, you can tell him you want more librarians as well as devs for the hackfest (I'm not sure he thinks I could contribute)
14:18 ashimema I think it's nice to have users/trainers mixed in..
14:18 ashimema realy helps with directing developments and SO
14:32 cait also we always need testers... actually a lot of librarians would be great
14:32 cait working directly with the devs
14:35 lukeG joined #koha
14:41 tcohen hi all
14:41 caroline_catlady hi tcohen!
14:41 tcohen hi caroline_catlady
14:41 tcohen !bang
14:41 AnnaBoten There is no hunt right now! You can start a hunt with the 'start' command
14:42 inlibro joined #koha
14:42 tcohen !start
14:42 AnnaBoten The hunt starts now!
14:42 corilynn_ joined #koha
14:43 oleonard https://media.giphy.com/media/[…]rTwfSw/source.gif
14:43 lukeG joined #koha
14:44 corilynn_ joined #koha
14:45 caroline_catlady lol!
14:45 corilynn_ joined #koha
14:47 AnnaBoten \_o< quack!
14:47 wahanui !bang
14:47 oleonard !bazooka
14:47 AnnaBoten Error: "bazooka" is not a valid command.
14:47 wizzyrea joined #koha
14:47 ashimema !bang
14:47 AnnaBoten \_x< ashimema: 1 (35.48 seconds)
14:47 huginn` News from kohagit: Bug 21520: (RM follow-up) Reduce added constraints <http://git.koha-community.org/[…]4686781abb1fd2edf>
14:49 wizzycray joined #koha
14:50 AnnaBoten \_o< quack!
14:50 wahanui *click*
14:51 * cait dieves into XSLT a last time... wich me luck
14:51 cait left #koha
14:52 matts !bang
14:52 AnnaBoten \_x< matts: 1 (132.55 seconds)
14:55 tcohen !bang!bang
14:55 AnnaBoten Error: "bang!bang" is not a valid command.
14:56 oleonard I like your enthusiasm
14:56 tcohen kidclamp what would you call an acq order with datecancellationprinted => null
14:56 tcohen I need to find a name for a method
15:01 matts tcohen, I sounded like the start of a joke :)
15:01 matts it*
15:01 oleonard :D
15:01 tcohen indeed hehe
15:02 reiveune left #koha
15:02 AnnaBoten \_o< quack!
15:02 wahanui *click*
15:02 oleonard !bang
15:02 AnnaBoten \_x< oleonard: 1 (6.28 seconds)
15:02 AnnaBoten [('oleonard', 1), ('matts', 1), ('ashimema', 1)]
15:02 AnnaBoten Best time: oleonard with 6.28 seconds
15:03 tcohen !bang
15:03 AnnaBoten There was no duck! tcohen: -1 (30.04 seconds)
15:04 bdonnahue joined #koha
15:12 AnnaBoten \_o< quack!
15:12 wahanui *click*
15:12 oleonard !bang
15:12 AnnaBoten \_x< oleonard: 1 (6.26 seconds)
15:13 AnnaBoten \_o< quack!
15:13 wahanui !bang
15:13 kidclamp !bang
15:13 AnnaBoten \_x< kidclamp: 1 (5.20 seconds)
15:14 ashimema kidclamp.. just the man
15:14 kidclamp I didn't do anything
15:15 ashimema is it just me.. or is C4::Circulation::updateWrongTransfer never actually called anywhere
15:15 * ashimema has tracked it to circ/returns.pl.. but can't see anywhere in the template that triggers the param it binds on to trigger the call
15:15 ashimema just want a sanity check ;)
15:16 ashimema grr
15:16 ashimema splitter is down again
15:17 fridolin joined #koha
15:17 kidclamp that seems true ashimema
15:18 ashimema thanks dude
15:18 ashimema I thought I was going mad
15:18 * ashimema is trying to clean up transfers a bit.. make the logic clearer
15:18 oleonard they built Stonehenge for the one night a year that splitter is working
15:19 ashimema lol
15:19 caroline_catlady lol! oleonard how do you come up with that stuff? It cracks me up!
15:19 oleonard :)
15:22 AnnaBoten \_o< quack!
15:22 wahanui oops, slipped over
15:23 vfernandes joined #koha
15:23 kidclamp !bang
15:23 AnnaBoten \_x< kidclamp: 2 (67.61 seconds)
15:23 AnnaBoten [('kidclamp', 2), ('oleonard', 1), ('tcohen', -1)]
15:23 AnnaBoten Best time: kidclamp with 5.20 seconds
15:24 koha-jenkins Yippee, build fixed!
15:24 wahanui Congratulations!
15:24 koha-jenkins Project Koha_Master_D9_MDB_Latest build #72: FIXED in 36 min: https://jenkins.koha-community[…]D9_MDB_Latest/72/
15:25 koha-jenkins Yippee, build fixed!
15:25 wahanui Congratulations!
15:25 koha-jenkins Project Koha_Master_D8 build #622: FIXED in 37 min: https://jenkins.koha-community[…]ha_Master_D8/622/
15:29 AnnaBoten \_o< quack!
15:29 wahanui *click*
15:29 oleonard !bang
15:29 AnnaBoten \_x< oleonard: 1 (8.87 seconds)
15:34 koha-jenkins Yippee, build fixed!
15:34 wahanui Congratulations!
15:34 koha-jenkins Project Koha_Master_D9 build #1084: FIXED in 45 min: https://jenkins.koha-community[…]a_Master_D9/1084/
15:36 oleonard Just love that XSLT blank screen of death
15:39 AnnaBoten \_o< quack!
15:39 wahanui *click*
15:42 inlibro joined #koha
15:43 kidclamp !bang
15:43 AnnaBoten \_x< kidclamp: 1 (238.10 seconds)
15:47 AnnaBoten \_o< quack!
15:47 wahanui !bang
15:48 oleonard !bang
15:48 AnnaBoten \_x< oleonard: 2 (9.14 seconds)
15:48 AnnaBoten [('oleonard', 2), ('kidclamp', 1)]
15:48 AnnaBoten Best time: oleonard with 8.87 seconds
15:48 khall joined #koha
15:50 AnnaBoten \_o< quack!
15:50 wahanui !bang
15:53 oleonard !bang
15:53 AnnaBoten \_x< oleonard: 1 (168.25 seconds)
15:57 AnnaBoten \_o< quack!
15:57 wahanui *click*
15:58 kidclamp !bang
15:58 AnnaBoten kidclamp, you missed the duck!
15:58 kidclamp !bang
15:58 AnnaBoten \_x< kidclamp: 1 (41.23 seconds)
16:03 AnnaBoten \_o< quack!
16:03 wahanui oops, slipped over
16:04 koha-jenkins Project Koha_Master_U18 build #555: STILL UNSTABLE in 39 min: https://jenkins.koha-community[…]a_Master_U18/555/
16:10 fridolin left #koha
16:15 oleonard !bang
16:15 AnnaBoten \_x< oleonard: 2 (729.51 seconds)
16:15 AnnaBoten [('oleonard', 2), ('kidclamp', 1)]
16:15 AnnaBoten Best time: kidclamp with 41.23 seconds
16:18 koha-jenkins Project Koha_Master_D9_My8 build #93: STILL UNSTABLE in 52 min: https://jenkins.koha-community[…]Master_D9_My8/93/
16:19 AnnaBoten \_o< quack!
16:19 wahanui !bang
16:23 oleonard !bang
16:23 AnnaBoten \_x< oleonard: 1 (240.13 seconds)
16:27 AnnaBoten \_o< quack!
16:27 wahanui oops, slipped over
16:27 eythian !bang
16:27 AnnaBoten eythian, you missed the duck!
16:28 eythian !bang
16:28 AnnaBoten \_x< eythian: 1 (21.79 seconds)
16:36 AnnaBoten \_o< quack!
16:36 wahanui !bang
16:36 eythian !bang
16:36 AnnaBoten \_x< eythian: 2 (18.26 seconds)
16:36 AnnaBoten [('eythian', 2), ('oleonard', 1)]
16:36 AnnaBoten Best time: eythian with 18.26 seconds
16:37 AnnaBoten \_o< quack!
16:37 wahanui *click*
16:39 eythian !bang
16:39 AnnaBoten \_x< eythian: 1 (138.99 seconds)
16:42 inlibro joined #koha
16:44 AnnaBoten \_o< quack!
16:44 wahanui !bang
16:45 oleonard !boomerang
16:45 AnnaBoten Error: "boomerang" is not a valid command.
17:15 khall joined #koha
17:19 corilynn !bang
17:19 AnnaBoten \_x< corilynn: 1 (2062.11 seconds)
17:24 khall joined #koha
17:27 AnnaBoten \_o< quack!
17:27 wahanui *click*
17:27 oleonard !bang
17:27 AnnaBoten \_x< oleonard: 1 (5.74 seconds)
17:27 AnnaBoten [('oleonard', 1), ('eythian', 1), ('corilynn', 1)]
17:27 AnnaBoten Best time: oleonard with 5.74 seconds
17:27 AnnaBoten Longest time: corilynn with 2062.11 seconds (this is your new longest time in this channel! Your previous longest time was 1674.67)
17:28 ashimema does this look plain wrong to anyone else?
17:28 ashimema https://github.com/Koha-Commun[…]tion.pm#L355-L360
17:31 AnnaBoten \_o< quack!
17:31 wahanui *click*
17:32 wizzyrea joined #koha
17:42 * oleonard wades back into the sexy input fray
17:42 inlibro joined #koha
17:42 caroline_catlady we need our inputs to be sexy! XD
17:43 * oleonard prays there is never another bug with the word "sexy" in the title
17:44 caroline_catlady lol!!
17:45 caroline_catlady it puts a smile on your face, don't lie ;) Boring bug titles won't make you smile
17:48 * oleonard changes the title of Bug 22880 to "Convert opacheader system preference to a very sexy news block"
17:48 huginn` Bug http://bugs.koha-community.org[…]_bug.cgi?id=22880 enhancement, P5 - low, ---, oleonard, Needs Signoff , Convert opacheader system preference to news block
17:49 caroline_catlady +1
17:59 * oleonard splits
18:00 corilynn !bang
18:00 AnnaBoten \_x< corilynn: 1 (1757.59 seconds)
18:05 AnnaBoten \_o< quack!
18:05 wahanui oops, slipped over
18:06 tcohen !bang
18:06 AnnaBoten \_x< tcohen: 1 (66.61 seconds)
18:06 tcohen hell yeah
18:11 AnnaBoten \_o< quack!
18:11 wahanui oops, slipped over
18:11 corilynn !bang
18:11 AnnaBoten \_x< corilynn: 2 (11.15 seconds)
18:11 AnnaBoten [('corilynn', 2), ('tcohen', 1)]
18:11 AnnaBoten Best time: corilynn with 11.15 seconds
18:14 paul_p joined #koha
18:16 AnnaBoten \_o< quack!
18:16 wahanui oops, slipped over
18:16 corilynn !bang
18:16 AnnaBoten \_x< corilynn: 1 (5.15 seconds)
18:25 corilynn I'm looking at the instructions for bulkmarcimport.pl and not understanding the "match" parameter
18:25 AnnaBoten \_o< quack!
18:25 wahanui !bang
18:25 corilynn !bang
18:25 AnnaBoten \_x< corilynn: 2 (8.29 seconds)
18:28 AnnaBoten \_o< quack!
18:28 wahanui *click*
18:32 corilynn !bang
18:32 AnnaBoten \_x< corilynn: 3 (249.61 seconds)
18:32 AnnaBoten \o/ corilynn: 3 ducks out of 3: perfect!!! +5 \o/
18:32 AnnaBoten Best time: corilynn with 5.15 seconds (this is your new record in this channel! Your previous record was 5.57)
18:33 corilynn never mind, I figured it out based on someone else's internet confusion, but I'm going to write a bug to clarify that option
18:40 AnnaBoten \_o< quack!
18:40 wahanui oops, slipped over
18:40 corilynn !bang
18:40 AnnaBoten \_x< corilynn: 1 (5.04 seconds)
18:41 tcohen !bang
18:41 AnnaBoten There was no duck! tcohen: -1 (115.12 seconds)
18:43 inlibro joined #koha
18:47 AnnaBoten \_o< quack!
18:47 wahanui !bang
18:48 tcohen !bang
18:48 AnnaBoten \_x< tcohen: 0 (111.21 seconds)
18:56 AnnaBoten \_o< quack!
18:56 wahanui !bang
18:57 andreashm joined #koha
18:59 tcohen !bang
18:59 AnnaBoten \_x< tcohen: 1 (162.53 seconds)
18:59 AnnaBoten [('tcohen', 1), ('corilynn', 1)]
18:59 AnnaBoten Best time: corilynn with 5.04 seconds (this is your new record in this channel! Your previous record was 5.15)
19:00 AnnaBoten \_o< quack!
19:00 wahanui *click*
19:00 corilynn !bang
19:00 AnnaBoten \_x< corilynn: 1 (23.01 seconds)
19:02 wizzyrea joined #koha
19:05 AnnaBoten \_o< quack!
19:05 wahanui !bang
19:15 lisettelatah joined #koha
19:19 TGoat joined #koha
19:19 TGoat Hey Koha-Community, This is a Call for Proposals!! I want to make you incredible Koha peeps aware of an eConference taking place April 23rd. It'll fall between 8AM - 5PM EDT ,on Library Giving Day, and we're calling it, Kohathon. This eConference is being hosted by koha-US.org and we'd love for you all to attend while kicking back in your favorite wifi spot. This is our first eConference and we really hope it takes off not just for
19:19 TGoat koha-US but for our Koha Community (think of the possibilities). We hope you will consider attending and presenting so please, dust off that old (or polish up a new) presentation and use the following link to register to present - https://docs.google.com/forms/[…]0rsrOz1w/viewform . And please, feel free to share this information with anyone you think will be interested. Any
19:19 TGoat questions contact us at: conferences@koha-US.org
19:23 bag !bang
19:23 AnnaBoten \_x< bag: 1 (1083.48 seconds)
19:24 AnnaBoten \_o< quack!
19:24 wahanui *click*
19:25 TGoat duck or bleeeeeeeeed
19:30 kathryn joined #koha
19:30 lisettelatah !bang
19:30 AnnaBoten lisettelatah, you missed the duck!
19:32 lisettelatah !bang
19:32 AnnaBoten \_x< lisettelatah: 1 (464.10 seconds)
19:32 AnnaBoten [('lisettelatah', 1), ('corilynn', 1), ('bag', 1)]
19:32 AnnaBoten Best time: corilynn with 23.01 seconds
19:34 AnnaBoten \_o< quack!
19:34 wahanui !bang
19:35 corilynn !bang
19:35 AnnaBoten \_x< corilynn: 1 (72.95 seconds)
19:42 AnnaBoten \_o< quack!
19:42 wahanui !bang
19:42 TGoat Hey channel, got my Kohathon times wrong. It'll go to 8PM PDT which is 11PM EDT
19:43 inlibro joined #koha
19:50 corilynn !bang
19:50 AnnaBoten \_x< corilynn: 2 (474.15 seconds)
19:52 AnnaBoten \_o< quack!
19:52 wahanui !bang
19:59 corilynn !bang
19:59 AnnaBoten \_x< corilynn: 3 (423.28 seconds)
19:59 AnnaBoten \o/ corilynn: 3 ducks out of 3: perfect!!! +5 \o/
19:59 AnnaBoten Best time: corilynn with 72.95 seconds
20:04 AnnaBoten \_o< quack!
20:04 wahanui *click*
20:04 aleisha !bang
20:04 AnnaBoten \_x< aleisha: 1 (5.44 seconds)
20:08 cait joined #koha
20:09 hayley joined #koha
20:09 AnnaBoten \_o< quack!
20:09 wahanui *click*
20:09 hayley !bang
20:09 AnnaBoten \_x< hayley: 1 (4.73 seconds)
20:16 caroline_catlady ashimema around?
20:16 AnnaBoten \_o< quack!
20:16 wahanui *click*
20:17 hayley !bang
20:17 AnnaBoten \_x< hayley: 2 (67.57 seconds)
20:17 AnnaBoten [('hayley', 2), ('aleisha', 1)]
20:17 AnnaBoten Best time: hayley with 4.73 seconds (this is your new record in this channel! Your previous record was 5.07)
20:18 hayley !stop
20:18 AnnaBoten Not a single duck was shot during this hunt!
20:18 AnnaBoten Nothing to stop: there's no hunt right now.
20:18 lisettelatah joined #koha
20:21 caroline_catlady go ducks!
20:25 cait :)
20:25 caroline_catlady cait I think I asked you this before, but I don't remember the answer. Do you have your own ILL backend in German?
20:26 cait we don' thave one yet, but one of the ohter support companies has
20:26 caroline_catlady I know magnuse has one I think
20:27 rangi it's called leihen
20:27 cait we have a national ILL system - with the 5 union catalogs providing the holding information
20:27 rangi that one is borgen
20:27 cait rangi: hm?
20:27 * rangi randomly uses german words
20:27 cait lol
20:27 cait fitting one even
20:27 cait Fernleihe is ILL
20:27 rangi i was close!
20:28 caroline_catlady we were debating internally whether it was better to do our own in French and clients can use either the franch on or the freeform in english, or to make the freeform translatable and push back those changes to the ptfs-e repo
20:28 cait i like translatable :)
20:28 caroline_catlady I think it's better to make the freeform translatable and push it back to ptfs-e
20:29 cait +1
20:30 caroline_catlady I thought it was more Persistent (? not sure of the word) to make it translatable
20:30 caroline_catlady but if it takes 100x the time to just make our own, it's not really worth it
20:31 caroline_catlady I mean if making it translatable is longer
20:33 cait i know what word you mean but not the english one
20:34 cait i don#t think it's a 100 factor
20:34 rangi sustainable?
20:34 cait and you'd get additions and fixes... if you make you own you will have to fully maintain it
20:34 cait aah thx rangi
20:40 caroline_catlady sustainable! thx rangi!
20:40 caroline_catlady I don't know why google translate gave me ersistent
20:41 hayley what is it in french? :)
20:41 caroline_catlady pérenne
20:42 hayley hm yes google is weird
20:43 inlibro joined #koha
21:43 inlibro joined #koha
21:55 JesseM joined #koha
21:57 ashimema The ptfs-e one is already on its way to being less ptfs-e and more community..
21:58 ashimema There a clone in the koha-community gitlab that's actually now ahead of the ptfs-e original with patches from ByWater/tcohen
21:58 ashimema Installs like a plugin .
21:59 ashimema I just haven't had a moment to formally 'donate' the code to unity and offer to support/maintain it for a period to get it started as such
21:59 ashimema No formal plan on how to propose it is maintained
22:01 ashimema caroline_catlady ^
22:01 caroline_catlady ok thanks!
22:02 lukeG joined #koha
22:02 ashimema Also.. tcohen I believe has some examples of translating plugins.. which might help lead the way of translation support
22:03 caroline_catlady interesting
22:03 ashimema I haven't got my head around that yet I'm afraid.. would love to have a clear idea of a way to do it though
22:03 ashimema Hope it helps
22:03 caroline_catlady yes thank you!
22:03 ashimema Heading to bed now 😋
22:03 ashimema Chat tomorrow
22:03 caroline_catlady (and thanks for pinging me, I wasn't looking at my chat window at all)
22:03 caroline_catlady good night!
22:04 cait he did a paypal one that is translatable afaik
22:04 cait as he was working on replacing the code in Koha with a plugin
22:05 caroline_catlady if I want my dev colleague to contact tcohen, the best way is here right?
22:05 caroline_catlady or is it better by email?
22:17 cait email shoud work too i think
22:43 inlibro joined #koha
22:54 lisettelatah joined #koha
23:43 inlibro joined #koha

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