IRC log for #koha, 2014-03-10

All times shown according to UTC.

Time S Nick Message
00:54 mtompset_away joined #koha
00:56 mtompset Greetings, #koha.
01:11 eythian @wunder nzwn
01:11 huginn eythian: The current temperature in Wellington, New Zealand is 17.0°C (2:00 PM NZDT on March 10, 2014). Conditions: Clear. Humidity: 68%. Dew Point: 11.0°C. Pressure: 30.33 in 1027 hPa (Steady).
01:25 tcohen joined #koha
01:31 mtompset Greetings, eythian tcohen.
02:33 eythian bag: still around?
02:39 mtompset Don't know.
02:39 mtompset eythian: Could I get a second opinion on this.
02:40 mtompset members/memberentry.pl
02:40 mtompset sub patron_attributes_form
02:40 mtompset foreach... if exists... foreach...
02:40 mtompset my $newentry = { map { $_ => $entry->{$_} } %$entry };
02:41 mtompset Does that look right?
02:41 mtompset I was thinking: my $newentry = { map { $_ => $entry->{$_} } keys %$entry };
02:41 dcook %{$entry}
02:41 eythian there is no if exists in that sub
02:41 dcook If iirc
02:42 mtompset well, yes. no if exists... but that aside.
02:42 mtompset why would you map the keys and the values as keys in a new entry hash?
02:42 eythian well, it meast I can't tell what you're reffering to
02:43 eythian dcook: no, not necessary
02:43 mtompset %{$entry} is overkill frequently.
02:43 eythian mtompset: what is going on there
02:44 eythian it has a hash, and it's ... making a new one?
02:44 eythian with the same content?
02:44 mtompset That's what it looks like, yes.
02:44 eythian my $newentry = { %$entry };
02:44 eythian does that
02:46 mtompset Yes, but perhaps they want to change $blah->{foo} into $blah2{bar}.
02:46 eythian oh
02:47 eythian no
02:47 mtompset Because indirection is a pain to deal with in the templates.
02:47 eythian they're not doing that
02:47 eythian they're turning a hashref into another hashref.
02:47 eythian It's so they can change things without changing the original hash
02:47 eythian (most likely)
02:47 eythian but it's still doing it the wrong way.
02:47 eythian oh
02:48 eythian I think your correction is correct
02:48 eythian (I just saw it.)
02:48 eythian but I think it doesn't solve the overall problem of it being the wrong way of doing what it's trying to do :)
02:48 mtompset 2008 gmcharlt code. ;)
02:49 eythian it was probably perltidyed then or something.
02:51 mtompset Well, I don't wish to refactor... I just want code not to generate the warning it does. :P
02:52 mtompset Now to figure out how to break it, so I can test.
02:53 mtompset Because I only found this as a result of testing bug 10267
02:53 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=10267 minor, P5 - low, ---, koha-bugs, NEW , No error message when entering an invalid cardnumber
02:53 mtompset Oops... bug 10276
02:53 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=10276 enhancement, P5 - low, ---, kyle.m.hall, Signed Off , Extend IndependentBranches to support groups of libraries
02:58 eythian mtompset: I'd refactor it, as it'll make the code cleaner.
02:58 eythian just that one line
02:59 mtompset there is a better way to copy a hash than that?
02:59 eythian <eythian> my $newentry = { %$entry };
03:00 mtompset and changing newentry won't affect entry in that?
03:01 mtompset And actually there are TWO lines like this. :)
03:01 eythian no, if you have $entry = { a=>1, b=>2 } and do $new = { %$entry } it's the same as = { a, 1, b, 2 } which is the same as = { a=>1, b=>2 }
03:02 mtompset It's probably faster too.
03:03 eythian I'd expect so
03:18 mtompset Okay... SHOW_BCODE works for it. :)
03:19 mtompset eythian: Would you call it a bug fix or an enhancement?
03:19 mtompset the later if refactoring that line is too much to call a bug fix.
03:19 eythian There's actually a chance that that code could break things
03:19 eythian so bug fix.
03:20 eythian (ie. in the situation where there is a value matching a key, weirdness will ensue.)
03:20 mtompset Actually, the reason I found it was because value was undef. ;)
03:20 mtompset try creating a key of undef. ;)
03:21 eythian ah yeah, that'll chuck a warning
03:29 wizzyrea omgosh it's only 4 days to pi day
03:29 wizzyrea 3.14.14 with koha version 3.14 it's MAGIC DAY
03:30 wizzyrea next year will be cooler for the date
03:30 wizzyrea 3.14.15 (in american dates of course.)
03:31 eythian ahh, infix. Both the worst, and the worst, of possible date formats.
03:31 wizzyrea :D
03:31 * wizzyrea just did it to annoy you
03:32 eythian :)
03:34 dcook Mmm pie
03:36 eythian hmm, my mouse either just died or ran out of battery power without telling me first.
03:37 wizzyrea that is unfortunate
03:37 eythian ah, just battery power
03:38 eythian Maybe I didn't notice the going-flat light on it.
03:39 mtompset Does anyone ever really notice it, eythian?
03:40 eythian Not me, apparently :)
03:40 mtompset anyone care for an easy sign off? bug 11913. :)
03:40 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11913 minor, P5 - low, ---, mtompset, Needs Signoff , Attributes generate error log during member entry
03:47 trea joined #koha
03:57 Oak joined #koha
03:57 * Oak waves
04:02 fredericd joined #koha
04:12 eythian @later tell bag check the new code. You'll have to re-set the SearchEngine syspref as its case has changed, delete the ES index and rebuild. Then use some URL params. [cntd]
04:12 huginn eythian: The operation succeeded.
04:14 eythian @later tell bag elasticsearch.pl?q=the&type=browse&field=title to do alphabetical "starts with" searching on title, elasticsearch.pl?q=the to do regular queries (right now title is the only field that counts, for all intensive porpoises.)
04:14 huginn eythian: The operation succeeded.
04:17 eythian @later tell bag I'm getting my head around the tokenisation and mapping stuff ES can do, so I'll add more things, let you know how I get on.
04:17 huginn eythian: The operation succeeded.
04:25 Oak eythian++
04:35 eythian @later tell bag actually now a simple search searches across all fields.
04:36 huginn eythian: The operation succeeded.
04:36 cait joined #koha
04:36 eythian (turns out changing "title" to "_all" was all it needed...)
04:37 eythian hi cait
04:41 cait hi eythian
04:41 cait triyng to persuade myself to go back to sleep :)
04:42 eythian I'd recomment it, it must be cold and dark there.
04:42 eythian s/t/d/
04:43 cait woke up because it got too warm in the room :)
04:44 cait but it's till dark i guess
05:00 mtompset Greetings, Oak cait. :)
05:00 Oak hello mtompset :)
05:01 Oak hello cait !
05:01 mtompset foreach GetQuotes('eythian') { @ later tell bag $_; } :)
05:02 eythian bare string not allowed at line 1
05:02 mtompset You get the idea. :P
05:03 mtompset Have a great day (24 hour period), #koha eythian cait Oak. :)
05:03 eythian cya
05:12 dcook PQF is one weird syntax...
05:16 dcook On the plus side, I didn't need to figure it out to realize my "SimpleSearch" wasn't working
05:16 dcook Needed = rather than :
05:16 dcook Of course that's CCL which seems much easier..
06:34 NC joined #koha
06:39 NC Hi everyone. I am from Thailand. I am very new to Koha. My first question here is if I want to reset the bib records, is it enough to empty these tables, biblio, biblioitems, items?
06:43 Oak NC, you want to empty the database?
06:47 NC yes.
06:49 NC It is like removing sample data all at once.
06:52 cait joined #koha
06:52 cait good morning #koha :)
06:52 eythian NC: that's correct
06:53 eythian NC: it's what I do.
06:53 eythian cait: hello again.
06:53 cait eythian: you are up late :)
06:53 cait well on #koha late
06:53 eythian yeah, been working on elasticsearch stuff for bag. About to head off now though.
07:07 NC eythian: thanks a lot.
07:15 marcelr joined #koha
07:15 marcelr hi #koha
07:22 paxed how do i remove the _time_ from issues.date_due in ISSUEQSLIP?
07:22 paxed only the date is relevant, time is useless and will confuse patrons.
07:36 laurence joined #koha
08:03 lds joined #koha
08:04 matts hi #koha
08:06 lds1 joined #koha
08:09 reiveune joined #koha
08:09 reiveune hello
08:11 JesseM joined #koha
08:12 bag morning
08:12 wahanui morning is a state of cat
08:12 marcelr hi matts reiveune bag
08:14 reiveune hi marcelr
08:17 pianohac1er joined #koha
08:17 pianohac1er Good morning
08:19 pianohac1er oh curses
08:19 Joubu joined #koha
08:19 jajm hi #koha
08:19 Joubu Hello :)
08:20 pianohacker Good morning for real
08:20 cait joined #koha
08:20 JesseM morning
08:21 fridolin joined #koha
08:22 fridolin hie all from hackgfest
08:25 cait hi fridolin - where are you?
08:27 fridolin cait: i just arrived
08:27 sophie_m joined #koha
08:28 matts just saw dobrica's picture on twitter... So sad I can't be with you this week... :\
08:32 bag oh bummer matts
08:33 clrh hello
08:34 marcelr hi france
08:35 matts yeah, I was reallly looking forward to attend the hackfest and see you all...
08:41 Oak joined #koha
08:41 cait hi marcelr :)
08:42 marcelr hi cait
08:42 cait matts: oooh what happened?
08:44 cait matts: we miss you!
08:45 matts cait, I had some health issues that needed to be taken care of rightaway, so I couldn't take my flight yesterday...
08:45 cait that sounds bad :(
08:45 cait hope you are better soon
08:45 matts thanks :)
08:46 dpavlin joined #koha
08:51 alex_a joined #koha
08:51 NC left #koha
08:52 alex_a hello
08:55 cait who is this dpavlin person?
08:55 cait :P
08:56 pianohacker I think we really need to find out about this cait...
08:56 pianohacker she sounds suspicious
08:56 cait more suspicious than someone who hacks pianos?
09:12 bag matts++
09:12 bag feel well soon :)
09:13 matts thanks bag
09:59 gerundio joined #koha
10:00 sandeepbhavsar joined #koha
10:01 sandeepbhavsar Dear All
10:01 sandeepbhavsar Good Afternoon
10:06 nlegrand hey from kohafest in Marseille :)
10:20 * cait waves
10:23 sandeepbhavsar hi all the option of googleindictransliteration is not available in systempreferences
10:29 dpavlin cait: joker ;-)
10:33 sonia joined #koha
10:35 sonia left #koha
10:37 sonia joined #koha
10:38 reiveune sonia: ping
10:38 magnuse joined #koha
10:40 * magnuse finally waves from marseille
10:44 sophie_m1 joined #koha
10:50 matts thanks :)
10:59 clrh does someone knows mori words ?
11:00 clrh just looking for a name for a new app wohc will do stats about library usage
11:03 magnuse clrh: you should probably ask rangi then :-)
11:13 magnuse joined #koha
11:14 reiveune joined #koha
11:15 cait joined #koha
11:16 cait joined #koha
11:16 alex_a joined #koha
11:16 sonia joined #koha
11:22 jwagner joined #koha
11:32 Joubu joined #koha
11:32 sophie_m joined #koha
11:48 JesseM joined #koha
11:49 ashimema joined #koha
11:54 bag bug 11703
11:54 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11703 enhancement, P5 - low, ---, kyle, Needs Signoff , Convert checkouts table to ajax datatable
11:54 mrenvoize joined #koha
11:54 bag I would love for someone to test that bug :D
11:57 tcohen joined #koha
12:00 Joubu joined #koha
12:00 collum joined #koha
12:01 NateC joined #koha
12:03 meliss joined #koha
12:03 dpavlin bag: looking at bug 11703
12:03 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11703 enhancement, P5 - low, ---, kyle, Needs Signoff , Convert checkouts table to ajax datatable
12:04 bag khall:
12:04 bag ^^^^
12:04 khall dpavlin: working on rebasing that one right now
12:06 francharb joined #koha
12:07 francharb Good morning #koha
12:08 tcohen morning #koha
12:21 dpavlin khall: ok will drink coffee until you rebase it ;-)
12:21 dpavlin khall: missing your knife here at hackfest, btw :-)
12:21 khall lol
12:24 barton joined #koha
12:29 oleonard joined #koha
12:31 oleonard Hi #koha
12:31 magnuse joined #koha
12:33 sophie_m joined #koha
12:39 tcohen joined #koha
12:40 oleonard http://identity.mozilla.com/po[…]mmunity-ownership
12:40 tcohen hi oleonard
12:41 oleonard Hi tcohen, I saw your question about GetMarcISBN but I'm not sure why you asked me
12:41 tcohen it looked that the code was yours
12:47 Joubu joined #koha
12:49 francharb joined #koha
12:50 khall dpavlin: 11703 is ready to go!
12:50 sophie_m joined #koha
12:50 sonia joined #koha
12:51 * magnuse waves to khall
12:51 * cait waves to khall :)
12:51 dpavlin khall: ++
12:51 khall g'day magnuse cait!
12:51 khall hope you had easy travels!
12:52 khall dpavlin: don't forget that bug depends on 11518
12:52 khall I think I forgot to add that to the test plan
12:52 * oleonard waves to the hackfesters
12:53 * oleonard wishes he was there!
12:53 * khall does too
12:53 nengard joined #koha
12:53 khall mornin nengard!
12:54 nengard morning khall
12:55 edveal joined #koha
12:55 magnuse travel was a bit long but easy, good to be here again, thugh!
12:56 druthb magnuse!
12:56 wahanui magnuse is a Norwegian giant.
12:56 magnuse druthb!
12:56 wahanui Well, she finally snapped, like we all knew she would.
13:00 cait druthb is making me do mean things
13:00 * cait glares a little at her
13:01 druthb me whistles innocently
13:01 * druthb goes :P at bag, too
13:02 bag :P
13:06 sophie_m1 joined #koha
13:07 bag @later tell eythian http://meriadoc.bywatersolutio[…]rowse&field=title
13:07 huginn bag: The operation succeeded.
13:10 Dyrcona joined #koha
13:15 nengard Hi bag!
13:15 bag heya nengard
13:15 wahanui nengard is the queen of documentation.
13:15 pianohacker Hi nengard
13:15 nengard hiya everyone!!
13:15 nengard stop chatting and get hacking :) hehe
13:16 bag ok
13:16 pianohacker I've debated sending bag a pm rather than wheeling my chair all ten feet over, such a long way away
13:16 bag HA
13:19 nengard too funny
13:22 tcohen hi marseille!!!!!
13:42 fridolin joined #koha
13:42 fridolin I come back with my 3G phone
13:47 rocio joined #koha
13:50 talljoy joined #koha
13:51 rhcl joined #koha
13:52 rhcl @wunder 64507
13:52 huginn rhcl: The current temperature in Wyatt Park, St Joseph, Missouri is 7.8°C (8:52 AM CDT on March 10, 2014). Conditions: Clear. Humidity: 55%. Dew Point: -1.0°C. Windchill: 7.0°C. Pressure: 29.83 in 1010 hPa (Steady).
13:52 rhcl above 0°. Spring has sprung.
13:52 rhcl @wunder boo
13:52 huginn rhcl: The current temperature in Bodo, Norway is 5.0°C (2:20 PM CET on March 10, 2014). Conditions: Light Rain Showers. Humidity: 93%. Dew Point: 4.0°C. Windchill: -1.0°C. Pressure: 29.36 in 994 hPa (Steady).
13:58 marcelr joined #koha
14:05 pianohacker Joubu: Have you seen this error? fatal: ambiguous argument 'koha-tmpl/intranet-tmpl/prog/en/m​odules/admin/external-targets.tt': unknown revision or path not in the working tree.
14:06 gaetan_B joined #koha
14:06 gaetan_B hello
14:06 wahanui hola, gaetan_B
14:07 lds joined #koha
14:07 pianohacker hallo gaetan_B
14:14 Joubu joined #koha
14:14 magnuse joined #koha
14:14 reiveune joined #koha
14:15 sonia joined #koha
14:15 cait joined #koha
14:19 maximep joined #koha
14:24 lds joined #koha
14:33 gaetan_B bag: http://libill.hartford.edu/koh[…]elopment/xslt.asp
14:39 tcohen joined #koha
14:41 jenkins_koha Starting build #453 for job Koha_Docs (previous build: SUCCESS)
14:41 jenkins_koha Project Koha_Docs build #453: SUCCESS in 34 sec: http://jenkins.koha-community.[…]ob/Koha_Docs/453/
14:41 jenkins_koha Nicole C. Engard: update OCLC Connexion Appendix
14:41 oleonard What is Bug 11915 about?
14:41 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11915 enhancement, P5 - low, ---, m.de.rooy, NEW , Need to still edit the title
14:43 mtompset_away joined #koha
14:44 jenkins_koha Starting build #26 for job Koha_Docs_3.14.x (previous build: SUCCESS)
14:44 mtompset Greetings, #koha.
14:44 jenkins_koha Project Koha_Docs_3.14.x build #26: SUCCESS in 13 sec: http://jenkins.koha-community.[…]a_Docs_3.14.x/26/
14:44 jenkins_koha Nicole C. Engard: update OCLC Connexion Appendix
14:44 druthb hi, mtompset. :)
14:44 mtompset oleonard++ # i like your suggestions regarding bug 11881.
14:44 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11881 enhancement, P5 - low, ---, oleonard, In Discussion , Small improvements in OPAC results list.
14:44 mtompset Greetings, druthb. :)
14:45 mtompset khall: I tried testing bug 10276. But it didn't work as expected. Perhaps I forgot to apply some patches?
14:45 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=10276 enhancement, P5 - low, ---, kyle.m.hall, Signed Off , Extend IndependentBranches to support groups of libraries
14:46 khall mtompset: let me give it a test and I'll let you know. There are not unpushed deps
14:46 khall mtompset: you did run the db update, right?
14:47 mtompset There were independent groups in the DB, so I'm assuming so. :)
14:47 khall sounds right, and you create a group or 2?
14:47 mtompset basically only need two branches, one group.
14:47 mtompset self register to one branch.
14:47 khall also, you're not a superlibrarian, are you?
14:48 mtompset try to use non-super librarian from other branch to move patron.
14:48 mtompset nope. I was not a super librarian.
14:48 pianohacker oleonard: Could I ask you a question about a QA script warning?
14:49 oleonard Yes
14:49 mtompset BTW, testing it helped me find bug 11913. :)
14:49 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11913 minor, P5 - low, ---, mtompset, Needs Signoff , Attributes generate error log during member entry
14:49 pianohacker oleonard: What's the reasoning behind 'opac-tmpl should certainly replaced with [% interface %]'?
14:51 oleonard I believe the origin of that warning was that there were places in the OPAC where the full path to the theme was hard-coded
14:51 alex_a_ joined #koha
14:52 oleonard So if I recall correctly it wasn't the "opac-tmpl" which was specifically the problem. But I may be misremembering.
14:52 khall mtompset: it appears to be working for me
14:52 pianohacker oleonard: The specific path is /opac-tmpl/lib/pz2.js, for bug 10486. Global, non-template or -language specific. See any problems with that?
14:53 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=10486 new feature, P5 - low, ---, jweaver, Needs Signoff , Allow external Z39.50 targets to be searched from the OPAC
14:53 mtompset let me try on a plain master.
14:53 khall mtompset: what do you mean by "move patron?
14:53 magnuse slides?
14:53 wahanui kf should be writing slides
14:53 mtompset edit the patron and change branch.
14:54 jenkins_koha Starting build #50 for job Koha_Docs_3.12.x (previous build: SUCCESS)
14:54 mtompset But I can't even edit.
14:54 jenkins_koha Project Koha_Docs_3.12.x build #50: SUCCESS in 16 sec: http://jenkins.koha-community.[…]a_Docs_3.12.x/50/
14:54 jenkins_koha Nicole C. Engard: update OCLC Connexion Appendix
14:54 khall mtompset: you should only see the other libraries your library shares a group with in the pulldown
14:54 mtompset It goes back to the patron search screen.
14:54 oleonard pianohacker: I see several existing instances of that kind of usage, so I would think it's okay
14:54 pianohacker Kk, thanks. I'll mention that on the commit
14:55 marcelr oleonard: i wanted a number; will edit that soon
14:56 khall mtompset: I found the issue
14:56 nengard I'm looking for a bug report that I think exists - when you change languages in the OPAC and then try to go back to English it gives a 404 error - I remember seeing this but can't find the bug
14:57 mtompset khall: So there is a minor bug?
14:57 khall yep
14:57 mtompset *whew*
15:00 francharb joined #koha
15:01 gmcharlt khall++ # http://git.koha-community.org/[…]1bd18effe7#patch3
15:02 huginn New commit(s) kohagit: Bug 11866: (follow-up) repair security issue introduced by main patch <http://git.koha-community.org/[…]ccccf00c3a037862d> / Bug 11866: (follow-up) ensure that empty toolbar is not displayed <http://git.koha-community.org/[…]6d8f1b95df4e57160> / Bug 11866: do not require special permissions to view course reserves in
15:02 khall mtompset: I've posted a followup to fix the issue
15:03 khall thanks gmcharlt!
15:05 rhcl gmcharlt: did you feel the earthquake?
15:05 gmcharlt khall: please flip a coin - NoSort vs. nosort (which appears in a couple OPAC templates)
15:06 gmcharlt rhcl: there was an earthquakte?
15:06 khall lol, NoSort!
15:06 rhcl Northern California
15:06 rhcl didn't know if it was close to you or not, Apparently the latter
15:06 gmcharlt that or I was very fast asleep
15:07 rhcl http://www.boston.com/news/nat[…]WqtJ4N/story.html
15:09 jenkins_koha Starting build #370 for job master_maria (previous build: SUCCESS)
15:10 * khall has to run. Time to go to the baby doctor's! It's entirely possible that I'll be a father by tonight!
15:10 mtompset NoSort... CamelCaseWorksForMe.
15:12 ashimema joined #koha
15:17 ashimema joined #koha
15:22 tcohen gmcharlt: i attached my Biblio.t work as part of bug 11912
15:22 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11912 minor, P5 - low, ---, gmcharlt, Needs Signoff , GetMarcISBN wrongly prepends a space to ISBNs
15:22 gmcharlt tcohen: ok
15:22 huginn New commit(s) kohagit: Bug 11328 - Show local cover images in staff client search results <http://git.koha-community.org/[…]4cb90f4edb624c31c> / Bug 11802 - corrects for the patron purchase suggestions page <http://git.koha-community.org/[…]f33072768828e3473>
15:23 tcohen is there a hackfest hangout channel?
15:23 gmcharlt for text chat, hopefully that is #koha ?
15:24 tcohen no no, I want to see every1!
15:24 tcohen heh
15:28 * mtompset nods in agreement with tcohen. :)
15:31 gmcharlt it's a both/and, not a either/or, but as far as the text portion is concerned, I feel pretty strongly that it should be in the same place we always use for text chat
15:32 huginn New commit(s) kohagit: Bug 11794 - restore functioning of opacSerialDefaultTab <http://git.koha-community.org/[…]1d5b7d49d7792ba9f> / Bug 11860: (follow-up) standardize spelling of "call number" <http://git.koha-community.org/[…]8f3e0d9c428462a34> / Bug 11860: Display subscription callnumber in OPAC detail page <http://git.koha-community.or
15:36 tcohen #koha++
15:42 mtompset YAY! The patch worked.
15:43 jenkins_koha Starting build #1651 for job Koha_master (previous build: SUCCESS)
15:52 huginn New commit(s) kohagit: Bug 10558: (follow-up) choose label for matching records correctly <http://git.koha-community.org/[…]d0544a6c195744395> / Bug 10558 [QA Follow-up] <http://git.koha-community.org/[…]e95a44898fb70c72b> / Bug 10558: (follow-up) styling improvements <http://git.koha-community.org/[…]itdiff;h=3f028c72
15:55 grex joined #koha
15:55 grex Hello there.
15:55 grex Do you have an idea why i can't post to the list, although i am subscribed?
15:56 oleonard Are you sure you are subscribed with the same email address you're using to post?
15:56 grex yes
15:56 grex i just loginned with this email address at the mailman interface
15:57 grex and i mean i also get all the emails from the list to this address
15:58 dpavlin Q: I'm looking at bug 11703 and it does a lot of rewrite because of file move in one followup. Am I nit-picking and does anybody else mind this?
15:58 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11703 enhancement, P5 - low, ---, kyle, Needs Signoff , Convert checkouts table to ajax datatable
15:58 grex because after the last both updates i get an error: Template process failed: plugin error - KohaBranchName: plugin not found at /usr/share/koha/lib/C4/Templates.pm line 132.
15:58 grex and i need to fix it, but have no idea where to start in the moment.
15:58 grex so thanks for all help.
15:58 grex ah now the emails are there.
15:58 phasefx hey folks, I'm trying to create a report from SQL, taking baby steps, and used the following: SELECT count(*) FROM statistics WHERE type = 'issue' AND datetime >= '2013-08-15' AND datetime <= '2014-02-15'; and when I try to run that, I get an error: Can't use an undefined value as an ARRAY reference at /usr/share/koha/intranet/cgi-b​in/reports/guided_reports.pl.  Something I'm doing wrong?
15:59 grex well it takes 10 minutes. maybe it's normal.
15:59 pianohacker Oh my goodnes it's phasefx
15:59 phasefx I am He Who Lurks
16:00 nengard phasefx that report works for me ...
16:00 nengard no errors
16:00 phasefx maybe something wrong with the installation then; I'll try that angle.  thanks!
16:00 oleonard grex: What version are you using and how did you install it?
16:00 ashimema joined #koha
16:00 pianohacker do the reports still have the bug where a report that returns no results causes that error?
16:00 grex well now it's 3.14.04
16:01 grex and i installed via the debian package management system
16:01 grex so apt-get install koha-common
16:01 grex it worked for a while, until one of the last updates. I'm not sure which one, sadly.
16:01 pianohacker phasefx: does that error give you a line number in guided_reports.pl
16:02 phasefx pianohacker: why yes it does, line 618
16:02 phasefx this is 3.06.02.003
16:02 jcamins grex: I just received an e-mail from you on the list.
16:02 grex yes, strange, it seems that there is just a "time lag"
16:02 jcamins grex: you'll need to update your translations, probably using the koha-translate command.
16:02 pianohacker oh wow
16:04 jcamins phasefx: try removing the semicolon. And any leading spaces.
16:04 phasefx jcamins: same deal
16:04 * phasefx takes a peek at the code
16:05 grex jcamins, yes that looks fine
16:05 grex i tried koha-translate -u de-DE
16:05 grex and the error page disappeared
16:05 grex thank you very much and sorry for my mail spam now.
16:07 jenkins_koha Project master_maria build #370: SUCCESS in 58 min: http://jenkins.koha-community.[…]master_maria/370/
16:07 jenkins_koha * Kyle M Hall: Bug 11866: do not require special permissions to view course reserves in staff interface
16:07 jenkins_koha * Jonathan Druart: Bug 11866: (follow-up) ensure that empty toolbar is not displayed
16:07 jenkins_koha * Galen Charlton: Bug 11866: (follow-up) repair security issue introduced by main patch
16:07 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11866 enhancement, P5 - low, ---, kyle, Pushed to Master , Staff side course reserves too restrictive
16:07 pianohacker phasefx: looks like a bug that's since been fixed. Any chance of updating?
16:08 JesseM joined #koha
16:09 phasefx pianohacker: maybe; a self-hosted customer.  What's the nature of the bug?  Looks like some SQL is running.  Is it related to count(*) ?
16:10 pianohacker phasefx: No, what seems to be happening is that it tries to fetch the names of the columns in the result, which fails if the query returns no rows
16:10 rhcl joined #koha
16:11 phasefx pianohacker: ah, gracias
16:12 huginn New commit(s) kohagit: Bug 11587: get rid of warnings generated by IsSuperLibrarian with anonymous sessions <http://git.koha-community.org/[…]2c045be69d93ef0bf> / Bug 11587 - Add UT for IsSuperLibrarian if flags == 0 <http://git.koha-community.org/[…]8cbfc6375b6a45735> / Bug 11587 - IsSuperLibrarian generates warnings (UT) <http://git.koha-
16:13 jenkins_koha Starting build #371 for job master_maria (previous build: SUCCESS)
16:16 phasefx pianohacker: you know, I'm not sure what changed, but it's working now :D
16:17 phasefx pianohacker: jcamins: nengard: thanks guys
16:40 phasefx are all issues reflected in the statistics table right away, or only after some period of time?
16:41 * phasefx bets he can do a union on issues and oldissues to get what he wants (historical and active circs)
16:41 cait joined #koha
16:43 reiveune joined #koha
16:51 oleonard Oooh, a new theme for Bootstrap: http://code.divshot.com/geo-bootstrap/
16:52 rhcl it's pretty
16:53 druthb Is that really a theme written around Comic Sans?
16:53 huginn New commit(s) kohagit: Bug 11224: (follow-up) clean up unit test for bug 10723 <http://git.koha-community.org/[…]796e093ff12bfd334> / Bug 11224: (follow-up) apply tidying <http://git.koha-community.org/[…]dea1ea02e21d6a763> / Bug 11224: (follow-up) incorporate test for bug 11777 <http://git.koha-community.org/[…].git;a=commitdiff
16:53 gmcharlt oleonard: you do realize what the focus of your next blog post has to be, right?
16:54 druthb It's like…  they took all the bad ideas that ever existed on the net…and put them into one magic theme.
16:58 Joubu joined #koha
17:02 * druthb looks at the CSS for geo-bootstrap, and cries in pain.
17:03 * druthb closes the window, and crawls under her desk to hide.
17:03 * druthb blames oleonard
17:06 reiveune bye
17:06 reiveune left #koha
17:07 jenkins_koha Project master_maria build #371: SUCCESS in 54 min: http://jenkins.koha-community.[…]master_maria/371/
17:07 jenkins_koha * Owen Leonard: Bug 11802 - corrects for the patron purchase suggestions page
17:07 jenkins_koha * Owen Leonard: Bug 11328 - Show local cover images in staff client search results
17:07 jenkins_koha * Julian Maurice: Bug 11860: Display subscription callnumber in OPAC detail page
17:07 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11802 minor, P5 - low, ---, oleonard, Pushed to Master , Patron purchase suggestions page requires some corrections
17:07 jenkins_koha * Galen Charlton: Bug 11860: (follow-up) standardize spelling of "call number"
17:07 jenkins_koha * Owen Leonard: Bug 11794 - restore functioning of opacSerialDefaultTab
17:07 jenkins_koha * Kyle M Hall: Bug 10558 - Convert records table in manage-marc-import.pl to Ajax DataTable
17:07 jenkins_koha * Owen Leonard: Bug 10558: (follow-up) styling improvements
17:07 jenkins_koha * Kyle M Hall: Bug 10558 [QA Follow-up]
17:07 jenkins_koha * Galen Charlton: Bug 10558: (follow-up) choose label for matching records correctly
17:07 jenkins_koha * Mark Tompsett: Bug 11587 - IsSuperLibrarian generates warnings (UT)
17:07 jenkins_koha * Jonathan Druart: Bug 11587 - Add UT for IsSuperLibrarian if flags == 0
17:07 jenkins_koha * Mark Tompsett: Bug 11587: get rid of warnings generated by IsSuperLibrarian with anonymous sessions
17:07 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11328 enhancement, P5 - low, ---, oleonard, Pushed to Master , Show local cover images in staff client search results
17:07 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11860 enhancement, P5 - low, ---, julian.maurice, Pushed to Master , Display subscription callnumber in OPAC detail page
17:07 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11794 normal, P5 - low, ---, oleonard, Pushed to Master , opacSerialDefaultTab  being ignored
17:07 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=10558 enhancement, P5 - low, ---, kyle, Pushed to Master , Convert records table in manage-marc-import.pl to ajax DataTable
17:07 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11587 trivial, P5 - low, ---, mtompset, Pushed to Master , IsSuperLibrarian generates warnings
17:08 mtompset Wonderful! :)
17:08 mcooper joined #koha
17:10 gaetan_B bye !
17:11 laurence left #koha
17:13 jenkins_koha Starting build #372 for job master_maria (previous build: SUCCESS)
17:17 mtompset Hmmm.... I recall wanting to ask you a question a while back, nengard. But I can't remember what it was.
17:17 nengard heh
17:19 mtompset Ah... there it is... bug 11699
17:19 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11699 major, P5 - low, ---, jonathan.druart, Signed Off , notes entered when receiving are not saved
17:20 mtompset You reported this, nengard. :) But I was wondering if this patch solves the problem the way you are expecting.
17:20 mtompset That is, where are you expecting to see the note?
17:21 nengard give me a min - got to do something else first
17:24 oleonard What are the txt files found in installer/data/mysql/en/mandatory used for?
17:26 jcamins oleonard: the labels in the installer, I believe.
17:27 nengard mtompset i can't apply the patches
17:27 nengard i updated the bug with a comment
17:28 oleonard Thanks jcamins
17:29 mtompset really?
17:30 mtompset I just successfully retried.
17:30 mtompset Did you try against a current master, nengard?
17:30 nengard yes
17:30 nengard will try again
17:34 mtompset OH... I had an old master.
17:35 nengard well there you go :)
17:35 nengard i got the same error again
17:35 nengard :)
17:40 kivilahtio joined #koha
17:40 kivilahtio Ping ping where did everyone go?
17:41 kivilahtio Pastis?
17:43 kivilahtio Is there anyone out there who can hear me...
17:43 kivilahtio (kivilahtio) Is there anyone out there who can hear me...
17:44 tcohen hi kivilahtio
17:44 kivilahtio Is t
17:44 kivilahtio Hackfest people went to a bar
17:45 kivilahtio I wonder which bar.
17:45 tcohen try twitter @Caitlin83
17:46 kivilahtio tcohen: why i no have twitter.
17:50 kivilahtio tcohen: i just bumbed into petter. Tres bien!
17:50 kivilahtio Thanks for pinging him
17:55 * Dyrcona feels bummed hearing about hackfests where he is not, particularly when going to a bar is involved.
17:55 huginn New commit(s) kohagit: Bug 8918: (follow-up) tidy code and description of CalculatePriority() <http://git.koha-community.org/[…]d20d388c648fb0dfd> / Bug 8918: (follow-up) support creating brief UNIAMRC bibs in Reserves.t <http://git.koha-community.org/[…]5379264d78935041f> / Bug 8918: (follow-up) allow t/db_dependent/Reserves.t to pass if m
17:55 wajasu joined #koha
17:55 * Dyrcona wants to "Hack all the things!!!!"
18:01 jenkins_koha Project Koha_master build #1651: SUCCESS in 2 hr 20 min: http://jenkins.koha-community.[…]Koha_master/1651/
18:01 jenkins_koha * Kyle M Hall: Bug 11866: do not require special permissions to view course reserves in staff interface
18:01 jenkins_koha * Jonathan Druart: Bug 11866: (follow-up) ensure that empty toolbar is not displayed
18:01 jenkins_koha * Galen Charlton: Bug 11866: (follow-up) repair security issue introduced by main patch
18:01 jenkins_koha * Owen Leonard: Bug 11802 - corrects for the patron purchase suggestions page
18:01 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11866 enhancement, P5 - low, ---, kyle, Pushed to Master , Staff side course reserves too restrictive
18:01 jenkins_koha * Owen Leonard: Bug 11328 - Show local cover images in staff client search results
18:01 jenkins_koha * Julian Maurice: Bug 11860: Display subscription callnumber in OPAC detail page
18:01 jenkins_koha * Galen Charlton: Bug 11860: (follow-up) standardize spelling of "call number"
18:01 jenkins_koha * Owen Leonard: Bug 11794 - restore functioning of opacSerialDefaultTab
18:01 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11802 minor, P5 - low, ---, oleonard, Pushed to Master , Patron purchase suggestions page requires some corrections
18:01 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11328 enhancement, P5 - low, ---, oleonard, Pushed to Master , Show local cover images in staff client search results
18:01 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11860 enhancement, P5 - low, ---, julian.maurice, Pushed to Master , Display subscription callnumber in OPAC detail page
18:01 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11794 normal, P5 - low, ---, oleonard, Pushed to Master , opacSerialDefaultTab  being ignored
18:05 huginn New commit(s) kohagit: Bug 11713 - Use new DataTables include in course reserves templates <http://git.koha-community.org/[…]3995ff9efe0470e34>
18:05 jenkins_koha Starting build #1652 for job Koha_master (previous build: SUCCESS)
18:08 jenkins_koha Project master_maria build #372: SUCCESS in 55 min: http://jenkins.koha-community.[…]master_maria/372/
18:08 jenkins_koha * Mathieu Saby: Bug 11224 : Add UT to routines of C4::Acquisition returning order(s)
18:08 jenkins_koha * Galen Charlton: Bug 11224: (follow-up) incorporate test for bug 11777
18:08 jenkins_koha * Galen Charlton: Bug 11224: (follow-up) apply tidying
18:08 jenkins_koha * Galen Charlton: Bug 11224: (follow-up) clean up unit test for bug 10723
18:08 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11224 enhancement, P5 - low, ---, mathsabypro, Pushed to Master , C4::Acquisition need more UT, and more robust ones.
18:08 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11777 normal, P5 - low, ---, amitddng135, Pushed to Master , Created by name is not coming in order receiving page
18:08 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=10723 enhancement, P5 - low, ---, jonathan.druart, Pushed to Master , GetPendingOrders and SearchOrders can be merged
18:12 Brooke joined #koha
18:12 Brooke 0/
18:14 tcohen \o
18:14 jenkins_koha Starting build #373 for job master_maria (previous build: SUCCESS)
18:22 sophie_m joined #koha
18:25 huginn New commit(s) kohagit: Bug 10452: (follow-up) remove duplicate check of damaged status <http://git.koha-community.org/[…]c275109b109065d2d> / Bug 10452: [QA Followup] - Unit tests <http://git.koha-community.org/[…]4a79a27dcadceab1d> / Bug 10452: make AllowHoldsOnDamagedItems control using damaged items to fulfill holds <http://git.koha-comm
18:30 sophie_m joined #koha
18:55 huginn New commit(s) kohagit: Bug 10955: (follow-up) improve usage information <http://git.koha-community.org/[…]9f0d8e5eeae3d7866> / Bug 10955 - Add ability to skip deletions in zebraqueue <http://git.koha-community.org/[…]d0e132e911c3ab3aa>
19:03 rangi morning
19:04 rhcl afternoon
19:07 jenkins_koha Project master_maria build #373: SUCCESS in 53 min: http://jenkins.koha-community.[…]master_maria/373/
19:07 jenkins_koha * Julian Maurice: Bug 8918: Fix reserve priority in ILS-DI
19:07 jenkins_koha * Marcel de Rooy: Bug 8918: (follow-up) improve descriptions of two related sysprefs
19:07 jenkins_koha * Julian Maurice: Bug 8918: Add a unit test for CalculatePriority
19:07 jenkins_koha * Marcel de Rooy: Bug 8918: (follow-up)  more unit tests for CalculatePriority
19:07 jenkins_koha * Julian Maurice: Bug 8918: (follow-up) allow t/db_dependent/Reserves.t to pass if marcflavour is UNIMARC
19:07 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=8918 normal, P5 - low, ---, julian.maurice, Pushed to Master , ILS-DI: HoldTitle and HoldItem do not calculate rank of hold
19:07 jenkins_koha * Marcel de Rooy: Bug 8918: (follow-up) support creating brief UNIAMRC bibs in Reserves.t
19:07 jenkins_koha * Galen Charlton: Bug 8918: (follow-up) tidy code and description of CalculatePriority()
19:07 jenkins_koha * Owen Leonard: Bug 11713 - Use new DataTables include in course reserves templates
19:07 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11713 normal, P5 - low, ---, oleonard, Pushed to Master , Use new DataTables include in course reserves templates
19:07 kathryn joined #koha
19:13 jenkins_koha Starting build #374 for job master_maria (previous build: SUCCESS)
19:17 huginn New commit(s) kohagit: Bug 11605: (follow-up) use DT defaults for the new Ajax staged batch page <http://git.koha-community.org/[…]1efc1031e8ff68dcd> / Bug 11605: (follow-up) fix regression <http://git.koha-community.org/[…]529a46af35b0b08e3> / Bug 11605: fallback to default DataTables settings where possible <http://git.koha-community.org/
19:27 huginn New commit(s) kohagit: Bug 11343: tweak wording of the syspref editor for MaxItemsForBatch <http://git.koha-community.org/[…]17cbcaae27eb5c50f> / Bug 11343: DBRev 3.15.00.020 <http://git.koha-community.org/[…]20e83a6f690806f01> / Bug 11343: The max number of items to process in a batch is hardcoded <http://git.koha-community.org/gitweb/?p=k
19:38 talljoy joined #koha
19:59 trea joined #koha
20:06 jenkins_koha Project master_maria build #374: SUCCESS in 53 min: http://jenkins.koha-community.[…]master_maria/374/
20:06 jenkins_koha * Kyle M Hall: Bug 10452: make AllowHoldsOnDamagedItems control using damaged items to fulfill holds
20:06 jenkins_koha * Kyle M Hall: Bug 10452: [QA Followup] - Unit tests
20:06 jenkins_koha * Galen Charlton: Bug 10452: (follow-up) remove duplicate check of damaged status
20:06 jenkins_koha * Kyle M Hall: Bug 10955 - Add ability to skip deletions in zebraqueue
20:06 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=10452 minor, P5 - low, ---, kyle, Pushed to Master , AllowHoldsOnDamagedItems should control using damaged items to fulfill holds
20:06 jenkins_koha * Galen Charlton: Bug 10955: (follow-up) improve usage information
20:06 jenkins_koha * Kyle M Hall: Bug 11555: Make "All" one of the default options for datatables
20:06 jenkins_koha * Jonathan Druart: Bug 11555: (follow-up) use 20 rather 25 for one of the default DT row counts
20:06 jenkins_koha * Jonathan Druart: Bug 11605: fallback to default DataTables settings where possible
20:06 jenkins_koha * Jonathan Druart: Bug 11605: (follow-up) fix regression
20:06 jenkins_koha * Galen Charlton: Bug 11605: (follow-up) use DT defaults for the new Ajax staged batch page
20:06 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=10955 enhancement, P5 - low, ---, kyle, Pushed to Master , Add ability to skip deletions in zebraqueue
20:06 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11555 enhancement, P5 - low, ---, kyle, Pushed to Master , Make "All" one of the default options for datatables
20:06 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11605 enhancement, P5 - low, ---, jonathan.druart, Pushed to Master , DT: default entry is 20
20:10 jenkins_koha Project Koha_master build #1652: SUCCESS in 2 hr 7 min: http://jenkins.koha-community.[…]Koha_master/1652/
20:10 jenkins_koha * Kyle M Hall: Bug 10558 - Convert records table in manage-marc-import.pl to Ajax DataTable
20:10 jenkins_koha * Owen Leonard: Bug 10558: (follow-up) styling improvements
20:10 jenkins_koha * Kyle M Hall: Bug 10558 [QA Follow-up]
20:10 jenkins_koha * Galen Charlton: Bug 10558: (follow-up) choose label for matching records correctly
20:10 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=10558 enhancement, P5 - low, ---, kyle, Pushed to Master , Convert records table in manage-marc-import.pl to ajax DataTable
20:10 jenkins_koha * Mark Tompsett: Bug 11587 - IsSuperLibrarian generates warnings (UT)
20:10 jenkins_koha * Jonathan Druart: Bug 11587 - Add UT for IsSuperLibrarian if flags == 0
20:10 jenkins_koha * Mark Tompsett: Bug 11587: get rid of warnings generated by IsSuperLibrarian with anonymous sessions
20:10 jenkins_koha * Mathieu Saby: Bug 11224 : Add UT to routines of C4::Acquisition returning order(s)
20:10 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11587 trivial, P5 - low, ---, mtompset, Pushed to Master , IsSuperLibrarian generates warnings
20:10 jenkins_koha * Galen Charlton: Bug 11224: (follow-up) incorporate test for bug 11777
20:10 jenkins_koha * Galen Charlton: Bug 11224: (follow-up) apply tidying
20:10 jenkins_koha * Galen Charlton: Bug 11224: (follow-up) clean up unit test for bug 10723
20:10 jenkins_koha * Julian Maurice: Bug 8918: Fix reserve priority in ILS-DI
20:10 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11224 enhancement, P5 - low, ---, mathsabypro, Pushed to Master , C4::Acquisition need more UT, and more robust ones.
20:10 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11777 normal, P5 - low, ---, amitddng135, Pushed to Master , Created by name is not coming in order receiving page
20:10 jenkins_koha * Marcel de Rooy: Bug 8918: (follow-up) improve descriptions of two related sysprefs
20:10 jenkins_koha * Julian Maurice: Bug 8918: Add a unit test for CalculatePriority
20:10 jenkins_koha * Marcel de Rooy: Bug 8918: (follow-up)  more unit tests for CalculatePriority
20:10 jenkins_koha * Julian Maurice: Bug 8918: (follow-up) allow t/db_dependent/Reserves.t to pass if marcflavour is UNIMARC
20:10 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=10723 enhancement, P5 - low, ---, jonathan.druart, Pushed to Master , GetPendingOrders and SearchOrders can be merged
20:10 jenkins_koha * Marcel de Rooy: Bug 8918: (follow-up) support creating brief UNIAMRC bibs in Reserves.t
20:10 jenkins_koha * Galen Charlton: Bug 8918: (follow-up) tidy code and description of CalculatePriority()
20:10 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=8918 normal, P5 - low, ---, julian.maurice, Pushed to Master , ILS-DI: HoldTitle and HoldItem do not calculate rank of hold
20:10 jenkins_koha * Owen Leonard: Bug 11713 - Use new DataTables include in course reserves templates
20:10 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11713 normal, P5 - low, ---, oleonard, Pushed to Master , Use new DataTables include in course reserves templates
20:12 jenkins_koha Starting build #375 for job master_maria (previous build: SUCCESS)
20:14 jenkins_koha Starting build #1653 for job Koha_master (previous build: SUCCESS)
20:27 huginn New commit(s) kohagit: Bug 11359: Add the borrower's cardnumber and phonenumber to the branch overdues report <http://git.koha-community.org/[…]89473c82373e48e68>
20:38 mtompset Have a great day, #koha.
21:05 jenkins_koha Project master_maria build #375: SUCCESS in 52 min: http://jenkins.koha-community.[…]master_maria/375/
21:05 jenkins_koha * Jonathan Druart: Bug 11343: The max number of items to process in a batch is hardcoded
21:05 jenkins_koha * Galen Charlton: Bug 11343: DBRev 3.15.00.020
21:05 jenkins_koha * Galen Charlton: Bug 11343: tweak wording of the syspref editor for MaxItemsForBatch
21:05 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11343 normal, P5 - low, ---, jonathan.druart, Pushed to Master , The max number of items to process in a batch is hardcoded
21:11 jenkins_koha Starting build #376 for job master_maria (previous build: SUCCESS)
21:18 huginn New commit(s) kohagit: Bug 3445: DBRev. 3.15.00.021 <http://git.koha-community.org/[…]e0fee790c76ae6919> / Bug 3445: add more indexes on the action_logs table <http://git.koha-community.org/[…]2970f7dc10f0f9748>
21:20 talljoy joined #koha
21:31 eythian hi
21:34 irma joined #koha
21:38 huginn New commit(s) kohagit: Bug 11516: make OPAC search term highlighting work in results browser <http://git.koha-community.org/[…]cae031b3afa9077f9>
21:39 eythian @later tell bag you didn't delete and rebuild your index from the look of it: "No mapping found for [title.startswith] in order to sort on"
21:39 huginn eythian: The operation succeeded.
21:40 eythian @later tell bag curl -XDELETE 'http://localhost:9200/koha_instancename/'
21:40 huginn eythian: The operation succeeded.
21:48 huginn New commit(s) kohagit: Bug 11465: Show counts and amounts on OPAC 'your summary' tabs <http://git.koha-community.org/[…]4f61625d0ba0f3369>
21:59 jenkins_koha Starting build #27 for job Koha_Docs_3.14.x (previous build: SUCCESS)
21:59 jenkins_koha Project Koha_Docs_3.14.x build #27: SUCCESS in 17 sec: http://jenkins.koha-community.[…]a_Docs_3.14.x/27/
21:59 jenkins_koha Nicole C. Engard: update ConfirmFutureHolds
22:00 nengard left #koha
22:03 jenkins_koha Project master_maria build #376: SUCCESS in 52 min: http://jenkins.koha-community.[…]master_maria/376/
22:03 jenkins_koha Frédérick Capovilla: Bug 11359: Add the borrower's cardnumber and phonenumber to the branch overdues report
22:03 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11359 enhancement, P5 - low, ---, fcapovilla, Pushed to Master , Add cardnumber and phonenumber columns to the branch overdues circulation report.
22:10 jenkins_koha Starting build #377 for job master_maria (previous build: SUCCESS)
22:11 jenkins_koha Starting build #454 for job Koha_Docs (previous build: SUCCESS)
22:11 jenkins_koha Project Koha_Docs build #454: SUCCESS in 21 sec: http://jenkins.koha-community.[…]ob/Koha_Docs/454/
22:11 jenkins_koha Nicole C. Engard: update ConfirmFutureHolds
22:15 jenkins_koha Project Koha_master build #1653: SUCCESS in 2 hr 3 min: http://jenkins.koha-community.[…]Koha_master/1653/
22:15 jenkins_koha * Kyle M Hall: Bug 10452: make AllowHoldsOnDamagedItems control using damaged items to fulfill holds
22:15 jenkins_koha * Kyle M Hall: Bug 10452: [QA Followup] - Unit tests
22:15 jenkins_koha * Galen Charlton: Bug 10452: (follow-up) remove duplicate check of damaged status
22:15 jenkins_koha * Kyle M Hall: Bug 10955 - Add ability to skip deletions in zebraqueue
22:15 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=10452 minor, P5 - low, ---, kyle, Pushed to Master , AllowHoldsOnDamagedItems should control using damaged items to fulfill holds
22:15 jenkins_koha * Galen Charlton: Bug 10955: (follow-up) improve usage information
22:15 jenkins_koha * Kyle M Hall: Bug 11555: Make "All" one of the default options for datatables
22:15 jenkins_koha * Jonathan Druart: Bug 11555: (follow-up) use 20 rather 25 for one of the default DT row counts
22:15 jenkins_koha * Jonathan Druart: Bug 11605: fallback to default DataTables settings where possible
22:15 jenkins_koha * Jonathan Druart: Bug 11605: (follow-up) fix regression
22:15 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=10955 enhancement, P5 - low, ---, kyle, Pushed to Master , Add ability to skip deletions in zebraqueue
22:15 jenkins_koha * Galen Charlton: Bug 11605: (follow-up) use DT defaults for the new Ajax staged batch page
22:15 jenkins_koha * Jonathan Druart: Bug 11343: The max number of items to process in a batch is hardcoded
22:15 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11555 enhancement, P5 - low, ---, kyle, Pushed to Master , Make "All" one of the default options for datatables
22:15 jenkins_koha * Galen Charlton: Bug 11343: DBRev 3.15.00.020
22:15 jenkins_koha * Galen Charlton: Bug 11343: tweak wording of the syspref editor for MaxItemsForBatch
22:15 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11605 enhancement, P5 - low, ---, jonathan.druart, Pushed to Master , DT: default entry is 20
22:15 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11343 normal, P5 - low, ---, jonathan.druart, Pushed to Master , The max number of items to process in a batch is hardcoded
22:19 jenkins_koha Starting build #1654 for job Koha_master (previous build: SUCCESS)
22:43 papa joined #koha
22:53 chrisvella94_ joined #koha
22:54 rocio left #koha
22:55 dcook Hmm, me thinks that the koha-community gitweb might not be updating stats...
22:55 dcook Looks like rangi is the leader with 1 commit for March
22:59 cait joined #koha
22:59 rangi what url dcook ?
23:00 dcook http://git.koha-community.org/[…]ster/authors.html
23:00 dcook rangi ^^
23:00 rangi http://git.koha-community.org/[…]master/index.html
23:00 rangi it only runs once a day
23:00 dcook Yeah, I noticed that it was updated for today :/
23:00 dcook Err, yesterday
23:00 rangi yep
23:00 dcook But surely there must be more commits than one pushed for March?
23:00 rangi it should run again about now
23:01 rangi not before today no
23:01 dcook Huh...cool beans. Thanks for pointing it out :)
23:02 jenkins_koha Project master_maria build #377: SUCCESS in 52 min: http://jenkins.koha-community.[…]master_maria/377/
23:02 jenkins_koha * Fridolyn SOMERS: Bug 3445: add more indexes on the action_logs table
23:02 jenkins_koha * Galen Charlton: Bug 3445: DBRev. 3.15.00.021
23:02 jenkins_koha * Fridolin Somers: Bug 11516: make OPAC search term highlighting work in results browser
23:02 jenkins_koha * David Cook: Bug 11465: Show counts and amounts on OPAC 'your summary' tabs
23:02 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=3445 enhancement, P5 - low, ---, fridolyn.somers, Pushed to Master , action_logs table needs some thought
23:02 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11516 minor, P5 - low, ---, oleonard, Pushed to Master , OPAC highlight lost in results browser
23:02 huginn Bug http://bugs.koha-community.org[…]_bug.cgi?id=11465 enhancement, P5 - low, ---, dcook, Pushed to Master , Show counts and amounts on OPAC your summary tabs
23:03 dcook I wasn't at all interested to see my own updated count...
23:03 * dcook whistles innocently
23:04 tcohen joined #koha
23:05 rangi it should be updated soon
23:06 rangi 12 mins or so, if im working the time out right (its utc)
23:06 dcook Another hour or so, I think
23:06 rangi ah right
23:06 dcook I cheated and looked it up though :p
23:09 cait wat are we looking for?
23:10 dcook UTC time
23:10 dcook Are you over in Marseille or back home, cait?
23:10 dcook Apparently it's the same timezone anyway..
23:11 dcook Not too late :)
23:11 cait in marseille
23:11 cait same timezone, quitelate :)
23:11 eythian if you see bag, tell him off for not following my instructions properly :)
23:12 cait heh
23:12 cait i can try, but you might wnat to leave him a later
23:12 cait and he didn't present so far
23:24 jenkins_koha Starting build #378 for job master_maria (previous build: SUCCESS)
23:24 eythian cait: ah right, that's good then.
23:24 eythian Not that it looks terribly pretty anyway, but it sort of works.
23:25 cait i saw a little bit over his shoulder :)
23:27 eythian I'm hoping to spend some time on the advanced search functions today, then I might be ready to start integrating it with the regular search.
23:27 cait :)
23:28 huginn New commit(s) kohagit: Bug 10611: (follow-up) cache DBMS driver code in context object <http://git.koha-community.org/[…]bef974d87aecdabf9> / Bug 10611: Use mysql_auto_reconnect instead of ping <http://git.koha-community.org/[…]4622a91690e1c4f8a>
23:49 cait gmcharlt++
23:49 cait night all :)
23:49 dcook night, cait

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