IRC log for #koha, 2011-04-11

All times shown according to UTC.

Time S Nick Message
00:08 tomascohen joined #koha
00:14 tcohen left #koha
00:17 rangi wow thats annoying
00:17 rangi http://librarian.opus.koha.cat[…]pl?biblionumber=1
00:17 rangi title is right in the breadcrumbs
00:17 rangi and if swithc one thing, title is broken in breadcrumbs, but fixed below
00:28 tomascohen demo demo?
00:29 rangi test testing
00:30 tomascohen something is broken in ht elayout
00:30 rangi yeah not worrying about that im just working on utf8 stuff
00:31 tomascohen yeap, it appears to be iso characters there
00:32 tomascohen how was the switch to tt? was it painful?
00:32 rangi only all this utf8 mess
00:33 tomascohen missing headers?
00:33 rangi nope thats all fine
00:33 rangi you see how the umlauts are showing fine there now?
00:33 rangi now they wont be
00:34 rangi but if i make them alright there, they double encode in other places
00:35 tomascohen oh
00:36 tomascohen they look fine now
00:36 tomascohen what was it?
00:36 tomascohen the xhtml looked right
00:36 rangi yes but now the dropdown somewhere else is broken
00:36 rangi if i knew why it did it, id have fixed it :-)
00:37 sekjal left #koha
00:38 tomascohen is this in the tt branch?
00:38 tomascohen i mean, in master?
00:38 druthb left #koha
00:38 rangi yes master
00:39 rangi http://opac.opus.koha.catalyst[…]ha/opac-search.pl
00:39 rangi see how the dropdown there is broken now.
00:39 rangi seems i can have one or the other :)
00:40 tomascohen hehe
00:40 tomascohen got to leave
00:40 tomascohen be back
00:40 tomascohen bye
00:40 rangi the difference is the dropdown is coming direct from the templates, so i think that might be it
00:40 * rangi will try some things
00:44 bg_ joined #koha
00:48 bg left #koha
00:48 bg_ is now known as bg
00:51 Irma joined #koha
00:55 tomascohen rangi:  what does decode do?
00:57 rangi in what context?
00:57 tomascohen in hte context of the patch you sent
00:57 tomascohen utf8::encode/decode
00:57 rangi that fixes the xslt
00:58 rangi which was getting double encoded
00:58 tomascohen is there a way to avoid such function usage?
00:58 rangi nope
00:58 rangi not currently there isnt, not until we fix all the mismatches
00:58 tomascohen perl doesn't use utf8 internally
00:59 rangi without it, the xslt is double encoded
01:00 rangi because we encode in another place
01:00 rangi and without encoding in that other place, the no xslt is busted, its all a tangled mess
01:01 tomascohen i'd like to attend some hackfest to have this chat with some beers
01:01 rangi we wont have time :)
01:01 tomascohen :)
01:01 rangi it has to be fixed by the release, or template toolkit comes back out
01:02 tomascohen i'll try to get an sponsor for attending kohacon
01:02 rangi which is why im working on it now
01:04 rangi ill show you what happens if i turn off all the encodes and decodes
01:04 huginn New commit(s) kohagit: Bug 6085 : utf8 fixed for xslt, and parameters, broken for utf8 included in templates <http://git.koha-community.org/[…]8db751a9cab272a8e> / Bug 6085 : Fixing missing last tag in translation and comments, utf-8 issues to fix now <http://git.koha-community.org/[…]9b95fe38c4d2c8391> / Bug 6085 : Can now change language
01:05 rangi http://librarian.opus.koha.cat[…]pl?biblionumber=1
01:05 rangi working in the xslt busted everywhere else
01:06 rangi its basically this half and half that is causing the problem
01:06 tomascohen yeap, I see, looks like xslt related stuff has to be isolated
01:06 rangi yeah
01:07 tomascohen what are the files you're working on?
01:07 tomascohen biblio.pm?
01:07 rangi naw
01:07 rangi C4/Output.pm and C4/Templates.pm
01:09 rangi so the summary of the problem
01:09 rangi the templates themselves are ok, if you encode them, they get double encoded
01:10 rangi (same with xslt)
01:10 rangi all other variables passed to the templates have to be encoded, or they break
01:11 rangi ill track it down eventually, its just confusing :)
01:13 tomascohen i'm reading template.pm
01:13 rangi its pretty simple
01:13 rangi we tried to cut it down a lot
01:14 jenkins_koha Starting build 161 for job Koha_master (previous build: STILL UNSTABLE -- last SUCCESS #151 1 j 16 h ago)
01:14 druthb joined #koha
01:15 rangi line 467 in C4/Output.p,
01:15 rangi line 467 in C4/Output.pm even
01:16 rangi that encode there, means that the stuff that is already encoded becomes double encoded (cos $data at that point is the entire document)
01:17 rangi commenting that out, makes xslt and the utf8 in the templates themselves work fine, but the other stuff is messed up
01:18 ebegin joined #koha
01:19 tomascohen it looks like the encode should occur somewhere before that
01:19 tomascohen so it doesn't catch everthing
01:19 rangi yep
01:19 tomascohen its a pity i didn't work on bugs related to this piece of code :-D
01:19 rangi and the weird thing is, if you warn the stuff out, it is ok
01:20 tomascohen so I could have a better understanding
01:20 rangi yeah im just typing it out so i might figure it out, sometimes explaining helps you spot the answer
01:20 tomascohen sure
01:21 tomascohen the xslt output comes from XSLT.pm?
01:21 rangi yep
01:22 rangi down the bottom
01:22 rangi you can toggle to de-DE
01:22 tomascohen staff?
01:22 rangi then you can see the utf8 in the templates is working too
01:22 rangi yep
01:25 rangi ohh that broke it
01:25 * rangi puts it back
01:25 tomascohen decoding the return  in XSLTParse4Display?
01:25 rangi ah no its not really xslt that is the problem
01:26 rangi thats returning fine, i dont want to have to encode and decode it
01:26 rangi becuase that breaks the utf8 in the templates
01:27 rangi what i want to find is why things like the title in the breadcrumb are being broken, and fix those, i think the blanket encode call just before output is dangerous
01:31 rangi just gonna turn xslt off so i can see better
01:36 bg_ joined #koha
01:38 Cybermon joined #koha
01:41 Ahmuck joined #koha
01:43 bg left #koha
01:43 bg_ is now known as bg
01:53 jenkins_koha Project Koha_master build #161: STILL UNSTABLE in 39 mn: http://jenkins.koha-community.[…]/Koha_master/161/
01:53 jenkins_koha * Chris Cormack: Bug 6085 : Can now change language in the preferences menu
01:53 jenkins_koha * Chris Cormack: Bug 6085 : Fixing missing last tag in translation and comments, utf-8 issues to fix now
01:53 jenkins_koha * Chris Cormack: Bug 6085 : utf8 fixed for xslt, and parameters, broken for utf8 included in templates
01:53 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6085 blocker, P1, ---, chris, ASSIGNED, Can't Change language both in OPAC and staff client
01:54 Cybermon hi jenkins, do you know about zebra indexing ?
01:56 druthb left #koha
01:57 tomascohen Cybermon, hi
01:57 Cybermon hi tomas
01:59 tomascohen what about zebra indexing?
02:01 Cybermon i have problem for indexing the zebra.
02:02 Cybermon my personal think that not indexing of the cyrilic/mongolian/
02:11 Cybermon maybe i should change sort-strings-utf.chr
02:21 pastebot0 Someone at 202.78.240.7 pasted "WTF" (9 lines) at http://paste.koha-community.org/202
02:23 mtj Cybermon: if you are going to start modifiying your zebra config files…
02:23 mtj … start by tracking them in git, etc
02:24 Cybermon you mean that install via git ?
02:24 mtj or else you will have problems remembering/reverting your mods
02:24 mtj no, *track* them in git
02:24 Cybermon i see
02:25 mtj then in you break stuff....
02:25 mtj $ git revert —hard  ;)
02:26 Cybermon no experience about GIT !
02:26 mtj i experience breaking zebra config files, the hard way, etc  :/
02:27 mtj so now, i track my zebra mods, using git
02:27 Cybermon good.
02:27 Cybermon what you do think about mongolian characters for zebra ?
02:28 mtj nothing! :)
02:28 Cybermon almost like as Cyrillic script
02:28 Cybermon 2 symbols different.
02:29 Cybermon can i index both language of english, mongolian ?
02:29 mtj sure you can
02:29 Cybermon how i can do ?
02:30 mtj the usual way....
02:30 Cybermon okay. let me try !
02:30 mtj whats an example of a problem string, or record?
02:33 Cybermon please wait, i needed again configure it.
02:33 mtj works ok for me
02:33 mtj http://stable.kohaaloha.com/cg[…]pl?biblionumber=1
02:35 Cybermon looks nice !
02:37 mtj Монгол хэл
02:38 mtj running koha-3.2.5 on debian-5
02:42 Cybermon i have ubuntu 10.10
02:43 mtj i dont have any ubuntus
02:43 mtj use debian, all the developers use debian
02:44 mtj so you get better help, if you use debian
02:56 Ahmuck left #koha
02:59 jenkins_koha Starting build 162 for job Koha_master (previous build: STILL UNSTABLE -- last SUCCESS #151 1 j 17 h ago)
03:06 huginn New commit(s) kohagit: Bug 6085 : setting the binmode broke the files rather than fixing them <http://git.koha-community.org/[…]a8764ab12f4051009>
03:15 Cybermon mtj: thanks for advice
03:21 tomascohen left #koha
03:22 hdl joined #koha
03:25 mtj Cybermon:  no problem,
03:25 mtj fyi: my zebra that the default config, no mods
03:26 mtj so their isnt anything needed to correct, as such
03:26 mtj http://stable.kohaaloha.com/cg[…]pl?biblionumber=1
03:26 AmitG joined #koha
03:26 mtj s/their/there/
03:28 AmitG heya ll
03:28 AmitG heya all
03:28 AmitG heya chris, mtj
03:30 Cybermon mtj: i see
03:32 mtj heya AmitG
03:38 jenkins_koha Project Koha_master build #162: STILL UNSTABLE in 39 mn: http://jenkins.koha-community.[…]/Koha_master/162/
03:38 jenkins_koha Chris Cormack: Bug 6085 : setting the binmode broke the files rather than fixing them
03:38 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6085 blocker, P1, ---, chris, ASSIGNED, Can't Change language both in OPAC and staff client
04:02 Irma left #koha
04:06 Irma joined #koha
04:12 Oak joined #koha
04:14 jenkins_koha Starting build 163 for job Koha_master (previous build: STILL UNSTABLE -- last SUCCESS #151 1 j 19 h ago)
04:15 AmitG left #koha
04:15 AmitG joined #koha
04:18 huginn New commit(s) kohagit: Bug 6085 : Fixing the utf8 weirdness <http://git.koha-community.org/[…]97a2c0699353dcd8c>
04:40 huginn New commit(s) needsignoff: [Bug 5431] Separate state field for library addresses <http://bugs.koha-community.org[…]w_bug.cgi?id=5431>
04:42 huginn New commit(s) kohagit: Bug 5917 : Fixing a bug with categorie.tt <http://git.koha-community.org/[…]df0ffd4a2ce97e301>
04:54 jenkins_koha Project Koha_master build #163: STILL UNSTABLE in 39 mn: http://jenkins.koha-community.[…]/Koha_master/163/
04:54 jenkins_koha Chris Cormack: Bug 6085 : Fixing the utf8 weirdness
04:54 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6085 blocker, PATCH-Sent, ---, chris, ASSIGNED, Can't Change language both in OPAC and staff client
04:54 jenkins_koha Starting build 164 for job Koha_master (previous build: STILL UNSTABLE -- last SUCCESS #151 1 j 19 h ago)
05:09 hdl left #koha
05:33 cait joined #koha
05:33 jenkins_koha Project Koha_master build #164: STILL UNSTABLE in 39 mn: http://jenkins.koha-community.[…]/Koha_master/164/
05:33 jenkins_koha Chris Cormack: Bug 5917 : Fixing a bug with categorie.tt
05:33 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5917 enhancement, PATCH-Sent, ---, gmcharlt, NEW, Switch Koha to use Template::Toolkit
05:33 cait good morning #koha
05:54 AmitG heya cait
05:58 cait hi AmitG
05:58 cait :)
06:30 marcelr joined #koha
06:39 cait left #koha
06:40 alex_a joined #koha
06:46 magnuse joined #koha
06:46 magnuse bonjour #koha
06:47 alex_a hello magnuse
06:47 magnuse hiya alex_a
06:56 magnuse @wunder bodo, norway
06:56 huginn magnuse: The current temperature in Bodo, Norway is 5.0�C (8:50 AM CEST on April 11, 2011). Conditions: Mostly Cloudy. Humidity: 93%. Dew Point: 4.0�C. Windchill: 1.0�C. Pressure: 29.86 in 1011 hPa (Steady).
06:56 magnuse @wunder marseille
06:56 huginn magnuse: The current temperature in Marseille, France is 14.0�C (8:30 AM CEST on April 11, 2011). Conditions: Partly Cloudy. Humidity: 88%. Dew Point: 12.0�C. Pressure: 30.09 in 1019 hPa (Rising).
06:56 magnuse @wunder wellington, nz
06:56 huginn magnuse: The current temperature in Wellington, New Zealand is 16.0�C (6:00 PM NZST on April 11, 2011). Conditions: Partly Cloudy. Humidity: 72%. Dew Point: 11.0�C. Pressure: 30.15 in 1021 hPa (Steady).
07:00 matts_away is now known as matts
07:06 sophie_m joined #koha
07:11 magnuse bonjour matts et sophie_m
07:11 matts hello magnuse !
07:11 sophie_m Hello Magnus
07:12 magnuse :-)
07:12 Cybermon hey call: i have following error for koha-zebraqueue-output.log: Can't locate Unix/Syslog.pm in @INC (@INC contains: /usr/share/koha/lib /etc/perl /usr/local/lib/perl/5.10.1 /usr/local/share/perl/5.10.1 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.10 /usr/share/perl/5.10 /usr/local/lib/site_perl .) at /usr/share/koha/bin/zebraqueue_daemon.pl line 15.
07:12 Cybermon hey all: i have following error for koha-zebraqueue-output.log: Can't locate Unix/Syslog.pm in @INC (@INC contains: /usr/share/koha/lib /etc/perl /usr/local/lib/perl/5.10.1 /usr/local/share/perl/5.10.1 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.10 /usr/share/perl/5.10 /usr/local/lib/site_perl .) at /usr/share/koha/bin/zebraqueue_daemon.pl line 15.
07:12 hdl joined #koha
07:12 sophie_m how is weather in Norway ?
07:15 magnuse sophie_m: spring came while i was away, so now it's about +6 degrees and most of the snow has gone (not in the mountains, though)
07:15 magnuse it has rained a lot and it looks like there will be some more rain too
07:16 magnuse bonjour hdl
07:16 francharb joined #koha
07:17 julian joined #koha
07:17 francharb morning #koha
07:20 rangi evening
07:20 magnuse bonjour francharb and julian and rangi
07:22 julian hello magnuse
07:22 rangi one biggish bug in the translation script, then only little ones to go
07:25 magnuse the tt translation?
07:26 rangi language translation
07:28 rangi eg
07:28 rangi http://opac.opus.koha.catalystdemo.net.nz/
07:28 rangi switch to german
07:29 rangi you'll see what i mean
07:31 rangi (ignoring the missing strings being translated thats just because i used an old .po file)
07:31 rangi but you'll see the login button is no longer a button
07:32 rangi i just have to fix that stuff
07:34 clrh joined #koha
07:37 magnuse ah, cool
07:37 magnuse bonjour clrh
07:38 clrh hi
07:40 marcelr hi all
07:40 marcelr rangi: 345 commits in a few days!
07:41 magnuse woohoo
07:43 rangi not really, i think the merge confused it a bit, but quite a few maybe 100
07:43 marcelr ok
07:43 marcelr thats much too
07:44 marcelr users that do not yet have Template from cpan, will have webinstaller crash on that; (had it myself)
07:47 rangi yep
07:48 rangi don't think there is any way around that, apart from telling people that the have to install it (users running from git should be able to figure that out :)) new users will be fine, people upgrading we will have to tell in the release notes and INSTALL documentation
07:48 rangi because the webinstaller uses it
07:49 rangi (it would be the same as trying to use the old webinstaller without html::template::pro installed)
07:49 rangi hmmm nearly fixed
07:49 rangi <input /="/" value="OK" type="submit" id="searchsubmit" class="left" >
07:49 rangi fg
07:49 rangi hmm typing here wont fix it :)
07:51 snail joined #koha
07:52 magnuse hehe
08:23 rangi wow i might have fixed it
08:29 magnuse you sound surprised? ;-)
08:30 rangi well it took a lot of head scratching
08:31 magnuse i just upgraded http://head.bibkat.no/ to latest master and after "sudo apt-get install libtemplate-perl" it seems to be humming along nicely :-)
08:32 * rangi will push a patch
08:32 rangi then you could try translate install nb-NO
08:32 rangi :)
08:32 * magnuse will pull the patch
08:32 magnuse will do!
08:34 magnuse alternating backgroundcolours for the result list seems to be missing? http://head.bibkat.no/cgi-bin/[…]earch.pl?q=lessig
08:34 slef Would anyone mind if I increase the bugs-to-email linking batch size to 20 a day? Or more? It would be nice to have March's finish this week.
08:35 rangi marcelr: yeah there will be a few things like that it was using a html::template feature, there is a diff one in TT
08:35 rangi hmm that was meant for magnuse
08:36 magnuse got it! :-)
08:36 kf joined #koha
08:36 magnuse guten morgen kf
08:36 kf hi #koha
08:36 kf hi magnus :)
08:37 * magnuse made it home in one piece?
08:38 rangi magnuse: try now
08:39 kf yep
08:40 kf tried to not look at koha on the weekend
08:44 jenkins_koha Starting build 165 for job Koha_master (previous build: STILL UNSTABLE -- last SUCCESS #151 1 j 23 h ago)
08:45 huginn New commit(s) kohagit: Bug 5917 : Fixing the translation script <http://git.koha-community.org/[…]07f4c6b0c1bcd946b>
08:49 magnuse rangi: nb-NO-i-staff-t-prog-v-3002000.po is called nb-NO-i-staff-prog-v-3002000.po (without the -t-) in current master
08:50 rangi magnuse: interesting, does it work if you mv it? (i havent touched the .po files but something for frederic to look at maybe)
08:50 kf down to 305 mails in my inbox... from 2047
08:50 magnuse rangi: yes moving it does the trick. 3.2.x has had the same problem, but i think it is fixed there now
08:50 rangi right
08:52 magnuse yep, it's fixed in 3.2.x
08:52 rangi something for fredericd to note when he updates the .po files for 3.4
08:53 magnuse i'll keep an eye on it... ;-)
08:53 kf ok, first meeting
08:53 kf is now known as kf_mtg
08:55 magnuse rangi: hm, i ran translate and switched to nb-NO in the OPAC, now i'm getting a ton of this: /home/magnus/kohahead/koha-tmpl/opac-tmpl/pro​g/nb-NO/xslt/MARC21slim2OPACResults.xsl:176: parser error : error parsing attribute name
08:55 magnuse src="/opac-tmpl/prog/famfamfam/silk/cd.png" title="optisk disk" class="format"
08:55 huginn New commit(s) kohagit: Merge remote branch 'kc/new/bug_6085' into kcmaster <http://git.koha-community.org/[…]3a8dad2d7d23457b3> / Bug 6085: Fix typo in earlier patch <http://git.koha-community.org/[…]681842318ada429ca>
08:55 rangi if you switch off xslt is it ok?
08:57 rangi magnuse: its possible its messing up the xslt
08:57 magnuse rangi: yep, ok without the xslt
08:57 rangi cool, narrowed it down
08:58 rangi thanks for testing
08:58 magnuse np
08:59 rangi interesting the de seems to work
09:00 rangi oh yes it does, i had switched the wrong preference
09:01 snail left #koha
09:01 rangi ah ha
09:01 rangi class="format" / />
09:02 rangi that will do it
09:02 * rangi will fix
09:02 magnuse cool
09:05 chris_n` joined #koha
09:05 chris_n is now known as Guest1468
09:05 chris_n` is now known as chris_n
09:09 rangi was as sample as that
09:10 rangi will push
09:11 magnuse will pull
09:12 rangi done
09:12 rangi you'll need to rerun the translation
09:13 Guest1468 left #koha
09:15 magnuse ok
09:18 magnuse yep that fixed it, rangi
09:18 magnuse rangi++
09:18 huginn New commit(s) kohagit: Merge remote branch 'kc/new/enh/bug_5917' into kcmaster <http://git.koha-community.org/[…]829d05e558ad949a9> / Bug 5917 : Fix for translating XSLT <http://git.koha-community.org/[…]41ce738cd2690e4dd>
09:19 rangi sweet
09:19 rangi 1 down
09:20 rangi i think we are on the downhill, working on bug 6155 now
09:20 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6155 critical, P5, ---, oleonard, NEW, Lists not working in opac or staff client
09:23 jenkins_koha Project Koha_master build #165: STILL UNSTABLE in 38 mn: http://jenkins.koha-community.[…]/Koha_master/165/
09:23 jenkins_koha Chris Cormack: Bug 5917 : Fixing the translation script
09:23 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5917 enhancement, PATCH-Sent, ---, gmcharlt, NEW, Switch Koha to use Template::Toolkit
09:23 jenkins_koha Starting build 166 for job Koha_master (previous build: STILL UNSTABLE -- last SUCCESS #151 2 j 0 h ago)
09:24 magnuse yeah, cgi-bin/koha/opac-shelves.pl​?viewshelf=1&sortfield=title shows the same thing as cgi-bin/koha/opac-shelves.pl
09:29 rangi yeah
09:30 rangi that fix for bug 5431
09:30 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5431 enhancement, PATCH-Sent, ---, katrin.fischer, ASSIGNED, Separate state field for library addresses
09:30 rangi will fix the stability
09:31 rangi (its why members.t is throwing an error)
09:31 rangi yeah i see the problem for some reason viewshelf is not being set
09:40 rangi found it
09:40 rangi if ( $query->param('viewshelf') ) {
09:41 rangi the helper routine we wrote so that we dont have to edit every singled file (will do that over time) means taht doing that sets the param to nothing
09:42 magnuse ouch
09:50 francharb left #koha
09:51 * magnuse wonders if bug 4918 was a temporary problem...
09:51 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=4918 enhancement, P5, ---, gmcharlt, NEW, searsh z3950
09:51 matts is now known as matts_away
10:03 jenkins_koha Project Koha_master build #166: STILL UNSTABLE in 39 mn: http://jenkins.koha-community.[…]/Koha_master/166/
10:03 jenkins_koha * Colin Campbell: Bug 6085: Fix typo in earlier patch
10:03 jenkins_koha * Chris Cormack: Bug 5917 : Fix for translating XSLT
10:03 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6085 blocker, PATCH-Sent, ---, chris, ASSIGNED, Can't Change language both in OPAC and staff client
10:03 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5917 enhancement, PATCH-Sent, ---, gmcharlt, NEW, Switch Koha to use Template::Toolkit
10:06 Oak left #koha
10:09 Guillaume1 joined #koha
10:10 rangi if anyone has time id appreciate a sign off on the patch for bug 6155
10:10 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6155 critical, PATCH-Sent, ---, oleonard, NEW, Lists not working in opac or staff client
10:11 magnuse i can give it a go
10:13 rangi yay
10:13 huginn New commit(s) needsignoff: [Bug 6155] Lists not working in opac or staff client <http://bugs.koha-community.org[…]w_bug.cgi?id=6155>
10:13 rangi it should apply on master, and should make the lists show
10:15 Cybermon left #koha
10:18 magnuse huh, i did "wget -O bug6155 http://bugs.koha-community.org[…]hment.cgi?id=3859", then "git am -i3u bug6155" and i get "Patch does not have a valid e-mail address." ??
10:20 magnuse ^^ rangi?
10:25 rangi hmm i never use the ones attached, i always apply from the mailing list, so not sure
10:25 rangi ill try attaching it a different way
10:27 magnuse never mind, i got it
10:28 * rangi did anyway :)
10:28 rangi this kobli thing is such a distraction
10:28 rangi i wish people would release code, or put up public repositories, and then announce, not the other way round
10:30 magnuse amen
10:31 Cybermon joined #koha
10:34 kf_mtg is now known as kf
10:34 magnuse rangi: signed off!
10:34 wahanui signed off is, like, approval
10:34 rangi woo hooo
10:34 magnuse i already thought so, wahanui ;-)
10:34 kf back
10:34 wahanui magnuse: sorry...
10:36 * magnuse sees that gmail has suddenly decided to hide all his koha labels - like there hasn't been enough activity there lately...
10:36 Guillaume2 joined #koha
10:37 Guillaume1 left #koha
10:39 conan joined #koha
10:40 rangi magnuse++
10:40 rangi first person to rebase a patch for tt
10:41 magnuse thanks! rebase?
10:41 kf marcelr++
10:41 marcelr second one arrived :-)
10:42 * magnuse thinks rangi is getting his ma*'es confused again ;-)
10:42 conan hi everybody
10:43 magnuse hola conan
10:44 magnuse is now known as magnus_lunch
10:44 conan magnuse: hola :), where are you from?
10:44 jenkins_koha Starting build 167 for job Koha_master (previous build: STILL UNSTABLE -- last SUCCESS #151 2 j 1 h ago)
10:45 rangi tab completion, 2 names starting with ma
10:45 rangi :)
10:45 kf hehe
10:45 kf I always forget about the tab completion
10:46 huginn New commit(s) kohagit: Bug 6155 : Fixing bug with lists not showing <http://git.koha-community.org/[…]4f18aa94112482ae8>
10:49 tomascohen joined #koha
10:51 tomascohen is now known as tcohen
11:06 druthb joined #koha
11:07 miguelxercode joined #koha
11:11 miguelxercode left #koha
11:12 miguel joined #koha
11:12 Guillaume2 left #koha
11:18 tcohen left #koha
11:20 rangi ah ha
11:20 druthb ah ha?
11:20 druthb hi, rangi.  :)
11:20 rangi magnus_lunch: when you get back, what OS are you running?
11:21 rangi debian squeeze has template::toolkit 2.22 .. the zebra stripes in the search results work on that, older template::toolkits they dont
11:21 rangi hi druthb
11:21 rangi http://koha-community.org/get-involved/  <-- dashboard
11:22 druthb oooo...nice!
11:23 jenkins_koha Project Koha_master build #167: STILL UNSTABLE in 38 mn: http://jenkins.koha-community.[…]/Koha_master/167/
11:23 jenkins_koha Chris Cormack:  Bug 6155 : Fixing bug with lists not showing
11:23 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6155 critical, PATCH-Sent, ---, oleonard, NEW, Lists not working in opac or staff client
11:24 rangi ok time for sleep, anyone who has time to test master, that would be much appreciated
11:25 kf good night rangi
11:25 kf hi druthb :)
11:32 nengard joined #koha
11:34 jwagner joined #koha
11:36 kf hi nengard and jwagner
11:36 jwagner Guten tag kf
11:37 marcelr What happened with cgi-bin/koha/opac-authorities-home.pl in master and the three search options?
11:38 kf a patch from biblibre I thin
11:38 kf k
11:38 kf marcelr: check the history of the file on git.koha-community.org
11:38 marcelr removing that functionality?
11:38 kf I have not worked on that, only seen something flying by
11:39 kf oh
11:39 kf the new template files don't have a history
11:40 marcelr too bad
11:40 kf hm yes
11:40 kf I would try bugzilla next
11:40 kf will be back in a few
11:42 marcelr bugzilla not responding?
11:42 nengard hi #koha
11:42 marcelr hi nengard
11:42 huginn New commit(s) kohagit: Adding 2 more developers to the history, 141 now <http://git.koha-community.org/[…]7b8dcf6242d18083a>
11:43 pastebot0 left #koha
11:44 wahanui left #koha
11:44 jenkins_koha Starting build 168 for job Koha_master (previous build: STILL UNSTABLE -- last SUCCESS #151 2 j 2 h ago)
11:44 clrh_ joined #koha
11:45 rangi left #koha
11:47 magnus_lunch is now known as magnuse
11:48 magnuse @later tell rangi i'm on debian 5 something, so that accounts for the monochrome zebra in the search results
11:48 huginn magnuse: The operation succeeded.
11:48 magnuse conan: i live and work in norway
11:50 druthb left #koha
11:51 miguel Hi all
11:53 marcelr @later tell jcamins No search results with the latest 3072 patch for dom authorities; while i expect many records (after reindexing).
11:53 huginn marcelr: The operation succeeded.
11:54 kf marcelr: now it's broken again?
11:55 marcelr only the dom side for authorities
11:55 marcelr not the older one
11:55 Cybermon left #koha
11:57 larryb joined #koha
11:58 kf marcelr: http://git.koha-community.org/[…]5392ccc9c4bcd6f8d for the authority dispaly in opac
11:59 rangi joined #koha
11:59 marcelr it was decided that they were useless :-)
12:00 AmitG left #koha
12:01 kf ah, missing the template module - can someone point me to the right one?
12:01 marcelr @later tell rangi Problem with tt templates for opac-authorities-home: refers to old templates, but they are gone.
12:01 huginn marcelr: The operation succeeded.
12:01 marcelr kf: cpan
12:01 marcelr cpan install Template
12:02 magnuse kf: sudo apt-get install libtemplate-perl
12:02 NateC joined #koha
12:02 kf thx marcelr
12:02 kf the last one :)
12:02 julian left #koha
12:03 marcelr magnuse: i do not have apt-get
12:04 magnuse kf: if you are not on debian squeeze, using cpan might give you a newer version that avoids a problem with the alternating colours for search results (see comment from rangi earlier today)
12:04 mtj marcelr: apt-get is better that cpan, because you know you get a stable version
12:04 magnuse marcelr: what os are you on?
12:04 matts_away is now known as matts
12:05 marcelr fedora
12:05 magnuse ah
12:06 JesseM joined #koha
12:06 julian joined #koha
12:07 marcelr mtj: that's right, if you are on debian; on rhe/fedora yum does not list anything for template
12:08 jcamins_away is now known as jcamins
12:08 jcamins good morning, #koha
12:08 marcelr hi jcamins
12:10 jcamins marcelr: you are using MARC21 with DOM authorities, right?
12:10 marcelr i tested that
12:10 jcamins Hm.
12:11 kf magnuse: not sure which os I have installed on that test box :( will have to check that
12:11 rangi marcelr: http://git.koha-community.org/[…]5392ccc9c4bcd6f8d
12:12 rangi old templates are there, you just need to checkout the tag (see email)
12:12 marcelr ok
12:12 marcelr just testing master
12:12 rangi kf was right, they were removed by a patch from biblibre
12:12 marcelr will put a comment on 5930
12:13 rangi on purpose
12:13 marcelr such changes could be more communicated?
12:13 rangi changing the search page (removing options useless for a patron)
12:13 rangi yes
12:14 jcamins marcelr: you manually applied the patch?
12:15 Guillaume1 joined #koha
12:15 marcelr yes
12:15 jcamins Against master?
12:15 marcelr and did an install, reindex etc
12:15 marcelr latest master
12:16 * jcamins will test
12:16 rangi ok, now ive switched my speakers off, so my name wont make the computer beep again, and im going back to sleep ;)
12:16 rangi thanks marcelr for testing master
12:16 marcelr sorry
12:17 oleonard joined #koha
12:18 jcamins marcelr: I think the patch I uploaded to Bugzilla may be corrupted.
12:18 marcelr did not have problems applyin git
12:18 jcamins Hm.
12:19 jcamins We'll I cherry-picked it onto latest master from my Template Pro branch, and I'm reindexing authorities now.
12:20 clrh left #koha
12:20 marcelr jcamins: also had a question if the lines with recordtype: dom.<etc> should be recordtype.xml: dom.<etc> with xml added to recordtype.
12:20 jcamins Where?
12:20 marcelr in zebra-authorities-dom.cfg
12:20 jcamins I don't know. I didn't touch that file.
12:20 jcamins Whoops, forgot to update my koha-dev.
12:20 marcelr just browsing zebra manual
12:21 marcelr but i did not have warnings when reindexing
12:21 jcamins It probably is wrong.
12:21 jcamins Our indexing leaves...
12:22 jcamins something to be desired.
12:22 jcamins As you've noticed.
12:23 jenkins_koha Project Koha_master build #168: STILL UNSTABLE in 38 mn: http://jenkins.koha-community.[…]/Koha_master/168/
12:23 jenkins_koha Chris Cormack: Adding 2 more developers to the history, 141 now
12:23 jcamins Works for me.
12:24 jcamins You updated the authority-zebra-indexdefs.xsl file, right?
12:24 marcelr do you have search results?
12:24 jcamins Yup.
12:25 marcelr strange
12:25 jcamins Where are you checking?
12:25 marcelr opac authority: there is a problem with the templates there though
12:26 jcamins Oh.
12:26 jcamins I didn't try that.
12:26 jcamins My test was specifically for the authority linking search in the Cataloging module.
12:26 jcamins I keep on forgetting that it even exists.
12:27 marcelr no results too on auth search in staff
12:27 jcamins If you use a box other than Main entry ($a only) the authority searching works?
12:28 Guillaume1 left #koha
12:28 marcelr on master these three boxes disappeared
12:28 marcelr bug 5930 push
12:28 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5930 enhancement, PATCH-Sent, ---, oleonard, RESOLVED FIXED, improving/modifying authority display on OPAC
12:28 Guillaume1 joined #koha
12:29 jcamins The authority search in the OPAC is broken on Master.
12:29 jcamins (just discovered that)
12:29 marcelr template stuff
12:29 Guillaume1 left #koha
12:30 jcamins Yeah. So that's why it's not working for you. Try the Cataloging module for bug 3072.
12:30 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=3072 critical, PATCH-Sent, ---, m.de.rooy, ASSIGNED, 'Heading-Main' authority-index breaks authority searching in STABLE
12:30 jcamins With the removal of those boxes on the OPAC, the change won't have any affect on the OPAC anyway.
12:30 marcelr true
12:30 jcamins I'll see if I can figure out why the OPAC authorities thingy is broken.
12:31 marcelr with cataloging plugins for auth control fields I cannot find anything either
12:32 jcamins Hm.
12:32 jcamins Does it work for boxes other than Main entry ($a only)?
12:33 marcelr no
12:33 frido joined #koha
12:33 frido left #koha
12:33 jcamins Does it work if you revert the patch for bug 3072?
12:34 marcelr will try that
12:34 tcohen joined #koha
12:35 tcohen hi #koha
12:39 jcamins marcelr: it looks like "search all headings" is broken in Master.
12:39 * oleonard will be grumpy for a while about the uselessness of "git blame" now
12:41 jcamins Someone (not me) removed "Any".
12:41 marcelr before 3072 any was not in authorities?
12:42 jcamins I'm not sure exactly when it was removed.
12:42 jcamins But I'm getting an error message about unsupported Bib-1 attribute.
12:42 marcelr i thought it was added recently
12:42 marcelr are you on latest master?
12:42 jcamins Yup.
12:42 jcamins Very latest.
12:43 jcamins And obviously you don't have it either, since the OPAC authorities search isn't working for you.
12:44 marcelr check authorities/etc/bib1.att: it includes Any
12:45 jcamins But Any is 114.
12:45 marcelr ?
12:46 jcamins The error message I'm getting says "Unsupported use attribute 114 Any"
12:47 marcelr i did not have warnings on reindex
12:47 jcamins No warnings on reindex.
12:47 jcamins I'm watching the log from doing a search.
12:49 jcamins "authorities-home.pl: oAuth error: Unsupported Use attribute (114) Any Bib-1"
12:52 jcamins So apparently the first fix for 3072 should have fixed this.
12:53 jcamins Wait, no, that's Heading-Main not any.
12:55 jcamins Did Any *ever* work?
12:56 jcamins (for MARC21)
12:57 Cybermon joined #koha
12:58 Cybermon hi all: anyone know about the bug=5859, is it fixed ?
12:58 oleonard Bug 5859
12:58 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5859 normal, PATCH-Sent, ---, jcamins, ASSIGNED, Can't set character encoding with stage MARC records
12:58 jcamins There is a patch for it.
12:58 jcamins If you sign off on it, it should be able to get into Koha.
12:58 jcamins You should sign off on it, because I'd really like it to. ;)
12:59 Cybermon ok
13:00 jcamins marcelr: Any worked in 3.1.0.145, but it was broken by 3.3.0.32.
13:01 jcamins It was broken by 3.3.0.12.
13:02 marcelr ok
13:02 jcamins If my patch fixes the Heading-Main search, you can sign off on it, and I'll see if I can get the Any working. ;)
13:04 jcamins Wait a minute...
13:05 jcamins Any is broken with DOM, and always has been.
13:06 marcelr that could be true, 3072 fixed any only for grs
13:10 jcamins Goodness... the documentation for Zebra is truly staggeringly bad.
13:10 marcelr one advantage: 'any'documentation is better than none :-)
13:11 jcamins I suppose.
13:12 kf marcelr/jcamins: hope you can figure it out - had a lot of complaints about searching for authorities
13:15 jcamins marcelr: I think it's best to keep the fix for Heading-Main and the fix for Any in separate patches.
13:15 shelley joined #koha
13:17 sijobl left #koha
13:17 sekjal joined #koha
13:18 kf morning sekjal :)
13:18 sekjal morning, kf!
13:19 marcelr no problem
13:20 gmcharlt good morning
13:20 space_librarian left #koha
13:23 kf hi gmcharlt :)
13:29 * marcelr Restored my grs zebra again with results for biblio and authorities. Will look at dom later again.
13:30 marcelr click on auth record: Template process failed: file error - parse error - /usr/share/koha/testclone/koha-tmpl/opac-tmp​l/prog/en/modules/opac-authoritiesdetail.tt line 65: unexpected token (IN)
13:30 jcamins marcelr: oh, I haven't gotten that far.
13:31 jcamins OPAC authorities are just plain broken with DOM.
13:31 marcelr yeah that was on grs again
13:32 jcamins I really wish people wouldn't make these sweeping changes without checking that they're not breaking MARC21.
13:33 marcelr i wonder if dom worked anyhow?
13:33 jcamins I think it never worked all the way.
13:34 jcamins However, I think Any was enabled for UNIMARC and no one bothered checking whether it would work in the recommended MARC21 configuration.
13:35 marcelr suppose that signing a marc21 or unimarc patch should be done with more care
13:35 marcelr get a signoff from both sides or so
13:36 jcamins Yeah.
13:36 jcamins Or, at least, a head's up to the list saying "hey, we just changed the way something works in UNIMARC/MARC21, someone should make it work in MARC21/UNIMARC, too."
13:37 marcelr right
13:37 marcelr Must go now, thanks.
13:37 hdl hi all
13:38 marcelr left #koha
13:38 hdl sekjal: if you could have a look at the branch for admin/smart-rules.pl... Just on that part. Because it needs an other patch for it to be well used.
13:40 Brooke_ joined #koha
13:40 sekjal hdl: I'll see if I can fit it in today... may have to be later this week
13:41 Brooke_ kia ora
13:41 hdl sekjal: maybe ask someone else to test then
13:41 larryb left #koha
13:42 hdl maybe oleonard could be interested I don't know.
13:42 oleonard What's the issue?
13:44 hdl jcamins: Any has to be defined like any other  index in DOM syntax
13:45 jcamins hdl: yeah, I've been noticing that.
13:45 hdl oleonard: it is the smart-rules update with jeditable
13:45 hdl you may want to test.
13:45 hdl jcamins: I can send you abs2dom file if you still need that.
13:45 oleonard In master?
13:46 hdl oleonard: it is a branch over master yes
13:46 jcamins hdl: I'd definitely like to see that, yes, please!
13:55 jcamins hdl: thanks!
14:04 sekjal can't seem to fetch from git://git.koha-community.org/koha-biblibre.git
14:04 sekjal am I making one of those silly Monday morning mistakes?
14:05 jcamins sekjal: git://git.biblibre.com/koha.git?
14:06 sekjal jcamins: no, looking to pull off the koha-biblibre repo on git.k-c.org
14:06 sekjal wip/bug5872, specifically
14:06 jcamins sekjal: oh, I didn't know there was one.
14:06 jcamins git://git.koha-community.org/wip/koha-biblibre.git
14:06 sekjal ah
14:08 * Brooke_ wonders why there isn't a dishwashing module in Koha.
14:08 Brooke_ cmon people, you've had 10 years.
14:09 * mtj hands brooke a dishcloth
14:10 Cybermon left #koha
14:10 nengard okay the document for the new OpacHiddenItems preference tells me nothing useful for adding that prefernce to the manual ... anyone have some more detail to give me so I can explain to librarians how to use it ... not developers?
14:11 * jcamins couldn't figure out what it did, but concluded that it wasn't something that he needed anyway.
14:12 mtj hides 'hidden' items from appearing in search results and details page, etc?
14:12 mtj thats my recent hunch....
14:15 Brooke_ left #koha
14:15 nengard k ... that's not enough to explain it to the librarians using Koha and reading the manual :)
14:15 nengard how about UseControlNumber
14:15 jcamins UseControlNumber I can explain.
14:16 mtj nope, its just my hunch
14:16 nengard in librarian english? :) hehe
14:16 jcamins nengard: Yes.
14:16 nengard woo hoo
14:17 jcamins Enabling UseControlNumber tells Koha to use Control Numbers (from the 001 field) for links to related records.
14:17 jcamins (writing the lengthier explanation... please hold)
14:38 kf @later tell Brooke_ rofl
14:38 huginn kf: The operation succeeded.
14:40 kf jcamins++
14:40 jcamins kf: what did I do?
14:41 Guillaume1 joined #koha
14:42 kf explaining the control number thing :)
14:42 jcamins Ah.
14:44 jcamins nengard: http://pastebin.com/7d4GL96c
14:55 kf although it might work a bit better in some cases without the (YrSymbol) part
14:55 kf not sure we got that working
14:55 kf zebra is not a big fan of parentheses
14:57 jcamins I thought marcelr got that working?
14:57 jcamins I had tested it...
14:58 jcamins I thought...
14:58 kf I haven't tested it - so I just don't know
14:59 kf my test data is without the org code - should make another set with
15:07 kf jcamins: I suspect indexing problems
15:08 rhcl_away is now known as rhcl
15:08 kf jcamins: not for the parallel records links like earlier/later title, but for the set links downwards from the set to the linkes records. but needs testing
15:09 jcamins kf: hm.
15:09 jcamins Okay.
15:09 jcamins nengard: Take out the (YrSymbol) from the 78x$w in the documentation.
15:10 * kf should really test that :(
15:10 nengard k
15:10 kf nengard: you can do lots of different links with it - would a set of test records help you with documentation?
15:11 nengard yes!
15:11 kf nengard: I wanted to write a real rfc for that feature, but foudn really no time to do it yet - all I have is german notes and the test st
15:11 kf ok - will mail you :)
15:11 wizzyrea druthb++ |she didn't know it but helped me a lot :)
15:15 nengard thanks kf
15:16 nengard i have 187 commit messages still to read after my week off
15:16 nengard lots of manual updating to do today
15:16 kf tell me
15:16 kf 2047! mails in my inbox when I started today
15:17 wizzyrea !!!
15:17 kf still over a hundred I have to do something with
15:17 wizzyrea < had 4, but has lots of filters. So all of the stuff was, heh, just not in my inbox.
15:17 kf after sorting koha mailing lists away it was at 700
15:18 kf nengard: which mail?
15:18 nengard nengard@gmail.com
15:25 kf ok, sent
15:25 kf hope it makes any sense :)
15:25 nengard i haven't read all my emails yet ... but does anyone know where the 'edit' link when on the saved reports page?
15:26 nengard thanks kf
15:26 conan I don't know if this question should go to list instead, but I'll try here first
15:26 jcamins nengard: what do you mean?
15:26 jcamins Oh.
15:27 nengard i'm on master and there is no 'edit' link ... just 'show', 'run' and 'schedule'
15:27 jcamins I see what you mean.
15:27 jcamins Template  issue, I think.
15:27 oleonard nengard: I suspect guided reports have a lot of problems now
15:27 nengard k
15:27 nengard i'll report the bug then
15:27 oleonard This kind of thing is not good for T:T: "guided_reports.pl?phase=Build new"
15:28 conan does anybody know why in marc_subfield_structure table it's defined like: `authorised_value` varchar(20) default NULL, while in authorised_values it's like: `category` varchar(10) NOT NULL default '' ?
15:28 nengard bug 6157 reported
15:28 oleonard nengard: Actually I think I see the problem with your edit link
15:28 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6157 critical, P5, ---, gmcharlt, NEW, can't edit reports anymore
15:28 kf nengard: could also be permissions
15:29 nengard i'm super librarain
15:29 nengard ibrarian
15:29 nengard librarian
15:29 nengard ahhhhh
15:29 jcamins kf: I think it's templates, because I have the same problem.
15:29 oleonard That you are nengard!
15:29 kf ah, just a thought, because there are different permissions for run and edit
15:29 oleonard [% IF ( savedreport.CAN_user_reports_create_reports ) %]
15:29 kf but templates makes sense too :)
15:29 oleonard Wrong scope for the permissions check
15:29 jcamins oleonard: yeah, there are lots of those.
15:29 kf or a mix :)
15:30 oleonard I'm guessing it should say [% IF ( CAN_user_reports_create_reports ) %]
15:30 jcamins Yeah, I think so.
15:30 kf how does this scope thing work?
15:30 jcamins Logically. ;)
15:30 jcamins Unlike Template Pro which didn't have scope at all.
15:30 oleonard kf: In this case, this replaces the TMPL_LOOP:
15:30 oleonard [% FOREACH savedreport IN savedreports %]
15:31 oleonard And then each variable within that FOREACH is scoped with "savedreport."
15:31 oleonard [% savedreport.id %]
15:31 jcamins Oh, lots of permissions errors.
15:32 kf oleonard: thx!
15:34 jcamins Okay, I have a patch to fix many of the permissions issues.
15:36 * oleonard would like to test
15:37 jcamins I'll send it momentarily.
15:41 matts is now known as matts_away
15:42 jcamins oleonard: on its way.
15:49 druthb joined #koha
15:49 druthb Hi, #koha!   Say hello to the Wiggin Memorial Library of Stratham, NH, USA!
15:50 jcamins Hello, Wiggen Memorial Library!
15:50 jcamins *Wiggin
15:50 sekjal howdy, Wiggin Memorial!
15:55 tcohen Ender Wiggin?
15:56 druthb don't think so...original settlers of the area--Capt. Tom and Emma Wiggin.
15:56 * kf waves :)
15:58 jcamins nengard: does the Patron messaging preferences table work for you?
15:58 jcamins Or oleonard.
15:58 jcamins Or anyone on Master.
16:01 julian left #koha
16:01 nengard jcamins - it's a bit funny
16:02 nengard avanced notice says unknown
16:02 nengard and i can check boxes on the details tab
16:02 nengard but when i click 'edit' i can make changes and they take
16:02 jcamins Okay, so it does say "Unknown"?
16:03 nengard yes
16:03 oleonard This variable scope thing is going to be tedious to sort out
16:03 jcamins Hm.
16:03 jcamins oleonard: it sure is!
16:03 sekjal the "Unknown" comes up in the include file... the name of notice is not taken from the DB directly, but matched against values in the template
16:04 sekjal if no match is found, it gets 'unknown'
16:04 sekjal in this case, the values it's matching against must be off, somehow
16:04 kf oleonard: looking through all loops?
16:04 oleonard From just looking at the template it is going to be hard to determine which variables should and shouldn't be scoped
16:06 kf oh
16:06 oleonard Several things in opac-reserve.tt were scoped when they shouldn't have been
16:06 kf ok, perhaps it's more complicated
16:06 jcamins oleonard: did you receive my patch?
16:06 nengard we are suppposed to report all these little things we find ... right?
16:06 jcamins nengard: oh yes!
16:07 oleonard jcamins: Yes, testing it now
16:07 kf from your example above I thought it would be quite easy to find out and add those things
16:07 nengard jcamins did you report that tone?
16:07 nengard one
16:07 nengard or should i?
16:08 jcamins nengard: I did not, because I wasn't 100% certain it was a problem.
16:08 huginn New commit(s) needsignoff: [Bug 6159] Variable scope errors prevent placing holds in the OPAC <http://bugs.koha-community.org[…]w_bug.cgi?id=6159>
16:09 tcohen anyone has an example of variable that is read from apache's env variebles?
16:09 tcohen PERL5LIB?
16:09 jcamins tcohen: see C4/Auth.pm
16:09 jcamins OPAC_CSS_OVERRIDE
16:09 tcohen i'm about to do some performance tests of putting koha-conf.xml in memcached
16:10 kf left #koha
16:10 tcohen and need a way for context.pm to know about the memcached server, without parsing the MXL
16:10 tcohen s/MXL/XML/
16:10 tcohen hehe
16:13 hdl tcohen: from what I experienced, in a single machine environment, preformance enhancement with/ w/o memcached is not much.
16:13 hdl In order to see differences, set mysql on a different machine
16:14 hdl Then the difference is big...
16:14 tcohen we have that setup here
16:15 tcohen what I want to test is avoiding the xml parsing
16:15 hdl what could help too in a CGI mode would be to load config file with yaml
16:15 hdl see config_yaml branch on git.biblibre.com
16:16 hdl But was a work in progress. I had to leave aside.
16:16 tcohen hdl: but what about *avoid parsing*?
16:16 druthb left #koha
16:16 hdl And have that in a Storable ?
16:16 tcohen i'll check that branch
16:17 hdl Going that way would have been really daring.
16:18 tcohen i cannot parse daring, what do u mean?
16:18 tcohen (sorry for my english, is it good or bad?)
16:18 hdl tcohen: you would have to take one patch to generate yml file and then other...
16:18 nengard lots of template bugs reported
16:18 hdl Going to No parsing at all would be daring...
16:18 jcamins nengard++
16:19 tcohen hdl: I don't mean not parsing at all, but     $self = read_config_file($conf_fname); every time context is called?
16:20 hdl mmm with xml, it would slow down everything.
16:21 hdl the systempreferences are loaded 7 times.
16:21 hdl (at least).
16:21 tcohen $self = read_config_file($conf_fname); is what we already do
16:22 tcohen on the contrary, i want to test reading that info from memcached
16:25 nengard oleonard i was just assuming all those bugs were template bugs, feel free to re-assign if i was wrong
16:25 oleonard No problem nengard.
16:27 tcohen hdl: is it safe to use one memcached server for more than one instance of koha?
16:27 hdl tcohen: that makes sense indeed
16:28 tcohen hdl: using memcached from more than one instance of koha? or avoid parsing?
16:28 hdl If you are using different namespaces, I think it is.
16:29 tcohen but if the namespace is KOHA in all...
16:29 hdl tcohen: avoid parsing : I finally understood
16:29 hdl tcohen: then it would not.
16:29 hdl tcohen: then it would not be safe I mean.
16:29 tcohen understood
16:30 tcohen but it would be easy to modify so it works
16:30 hdl You have to use KOHA_A KOHA_B KOHA_C....
16:30 tcohen yes
16:30 hdl otherwise, you would share the same configuration and systempreferences for all.
16:30 tcohen perhaps ask for that in the install
16:30 hdl This would certainly not be what you want
16:30 tcohen ok, i'm mixing things up
16:31 tcohen subject 1) how memcached is being used/configured by default in koha
16:31 tcohen subject 2) do some testing on having several configurations on memcached to avoid parsing
16:31 miguel left #koha
16:31 tcohen they're obviously related
16:32 tcohen but they where two different subjects, sorry for that
16:32 tcohen gt to levae
16:32 tcohen thanks hdl
16:33 jcamins Yikes! Bug 6167 is pretty icky.
16:33 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6167 blocker, P5, ---, oleonard, NEW, can't use 008 or 006 plugin in cataloging
16:34 jcamins Looks like a template error, so that's good.
16:38 huginn New commit(s) needsignoff: [Bug 6157] can't edit reports anymore <http://bugs.koha-community.org[…]w_bug.cgi?id=6157>
16:39 nengard jcamins glad i'm not alone in thinking it's a BIGGY
16:40 oleonard Pretty much all of these template bugs could be considered blockers I'm guessing
16:40 magnuse is now known as magnus_away
16:41 * jcamins agrees
16:43 miguelxercode joined #koha
16:43 miguel joined #koha
16:43 miguelxercode left #koha
16:43 sekjal is now known as sekjal_lunch
16:48 jcamins nengard: I guess I should've marked that bug more clearly, huh?
16:49 nengard ?
16:49 huginn New commit(s) needsignoff: [Bug 6160] my details not showing tabs <http://bugs.koha-community.org[…]w_bug.cgi?id=6160>
16:49 jcamins Bug 6157.
16:49 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6157 critical, PATCH-Sent, ---, gmcharlt, NEW, can't edit reports anymore
16:49 jcamins Owen already signed off on a patch for 6158 which fixed that, along with a whole bunch of other errors.
16:54 Ahmuck joined #koha
16:56 jcamins Anyone who understands javascript about?
16:57 oleonard For sufficiently lax definitions of "understand"
16:57 hdl jcamins: ?
16:57 jcamins Excellent!
16:57 jcamins I am trying to understand why this line works:
16:57 jcamins document.getElementsByName(""​+champ_verif[i]+"")[0].value
16:57 jcamins But this does not:
16:57 jcamins eval("document.form."+champ_verif[i]+".value")
16:57 jcamins Actually, no, I don't care why.
16:58 jcamins I'm trying to understand if there's a reason I can't replace the latter with the former.
17:00 oleonard What purpose does the eval() serve?
17:00 jcamins I have no idea.
17:01 jcamins That's in the check_form_borrowers() function.
17:01 jcamins Unfortunately, it would seem to be very brittle, and when you add a guarantor from the "Set to patron" button, it breaks.
17:03 jcamins The getElementsByName seems to work more consistently.
17:03 cait joined #koha
17:04 cait hi #koha
17:05 jcamins Hello.
17:05 fcapo joined #koha
17:07 BobB_ joined #koha
17:07 * oleonard will have to take another look after lunch
17:07 oleonard is now known as oleonard-away
17:08 Irma left #koha
17:08 BobB left #koha
17:10 huginn New commit(s) needsignoff: [Bug 6164] messaging tab on staff client loses name <http://bugs.koha-community.org[…]w_bug.cgi?id=6164>
17:13 Guillaume1 left #koha
17:16 sekjal_lunch is now known as sekjal
17:16 slef I like looking after lunch, oleonard-away
17:17 Irma joined #koha
17:17 slef I don't seem to be very good at it, though. It keeps getting eaten.
17:17 slef wb Irma
17:19 cait hi slef
17:24 hdl left #koha
17:26 slef hi cait
17:35 Ahmuck left #koha
17:38 nengard left #koha
18:11 huginn New commit(s) needsignoff: [Bug 6169] Inventory tool fails when ignoreissued set <http://bugs.koha-community.org[…]w_bug.cgi?id=6169>
18:14 jcamins How should I create a bug for quieting warnings?
18:15 jcamins Should there be one bug per file? One bug per module?
18:18 tcohen jcamins, what is the preferred serialization method for arrays in koha?
18:18 jcamins tcohen: I know what that means, but only barely.
18:18 jcamins I have no idea what the answer is, sorry.
18:18 tcohen jcamins :-D
18:19 tcohen anyone?
18:19 * jcamins thinks gmcharlt probably knows the answer
18:20 tcohen gmcharlt: what serialization method do we use in koha for arrays -> string?
18:20 gmcharlt tcohen: I need a little more context
18:21 * jcamins also thought that saying his name would probably summon the all-knowing gmcharlt. :D
18:21 jcamins wizzyrea: around?
18:22 tcohen gmcharlt: i'm about to do some performance tests using memcached
18:22 tcohen to store koha-conf.xml data, to avoid parsing each time
18:22 tcohen so, I need to serialize several things to save them
18:22 oleonard-away is now known as oleonard
18:22 tcohen for instance, some arrays
18:22 oleonard jcamins: Are you still trying to puzzle out that javascript issue?
18:22 jcamins oleonard: I am.
18:23 tcohen not sure it is the best approach, but its enough for the test
18:23 jcamins Well, actually, at this point I'm mostly just hoping that someone will just tell me the answer, magically. ;)
18:23 tcohen so, i need to know if we're using some serialization library
18:23 oleonard jcamins: Can you describe the problem that raised your question?
18:23 tcohen (already)
18:24 gmcharlt tcohen: since we already use Cache::Memcached, you can let it handle the serialization
18:24 gmcharlt grep for object_key in http://search.cpan.org/~dorman[…]ache/Memcached.pm
18:25 tcohen gmcharlt: thanks
18:26 jcamins oleonard: if you add a guarantor to an existing child record using the "Set to patron," you will get an error message "The following fields are mandatory: zipcode."
18:27 jcamins In Firefox.
18:27 jcamins 3.6.16.
18:27 tcohen thats a feature, not a bug?
18:27 jcamins tcohen: not when you've filled the zipcode in.
18:28 tcohen hehe
18:30 * oleonard 's patron search seems to be broken
18:30 jcamins oleonard: yeah, the patron search is just broken.
18:31 jcamins It's one of the critical bugs.
18:31 rangi im pretty sure it was broken before the merge
18:31 rangi oleonard: for all the systempreferences
18:31 rangi easiest fix for them
18:32 jcamins rangi: it was.
18:32 rangi checkout the commit in my email, with the tmpl and tt files
18:32 jcamins I can't find the bug, though.
18:33 rangi edit installer/html-template-to-template-toolkit.pl
18:33 rangi round line 36
18:33 rangi add them to the globals, then rerun the conversion
18:33 rangi it will do all the templates in one go
18:34 rangi does that make sense?
18:34 rangi thats the easiest way to fix scoping bugs in one hit
18:35 rms joined #koha
18:35 rms hey
18:35 rms i have an issue with koha git
18:35 rms wondering if anyone with commit access is here
18:36 jcamins rangi: gee, I wish I'd asked you if there was a better way to do it before I went through and changed the scoping on the permissions by hand.
18:36 oleonard rms: What is your issue?
18:36 rms http://pastie.org/1783819
18:36 rms Template.pm is missing..
18:36 jcamins rms: sudo apt-get install libtemplate-perl
18:37 jcamins Hey, where's wahanui?
18:38 rms oh god, it went into maintenance mode :/
18:38 jcamins rms: of course. You need to run the updater.
18:38 jcamins After you install Template::Toolkit.
18:38 rms which would be which pl script?
18:38 rms Makefile.pl?
18:38 jcamins rms: log into the staff client.
18:39 jcamins Using your database user.
18:39 jcamins rms: http://git.koha-community.org/[…]6e4e75286;hb=HEAD
18:39 rangi jcamins: hehe i appreciate the fixing, when you do them in future, if you edit the globals in that file too, then if we do have to rerun ever it wont undo your changes
18:40 jcamins rangi: I didn't realize it was even possible.
18:40 rangi jcamins: you underestimate my laziness
18:40 jcamins Heh.
18:41 jcamins Oh, question for you: there are a whole bunch of warnings about using uninitialized variables in tools/inventory.pl.
18:41 jcamins I would like to eliminate them because they're annoying and make troubleshooting difficult.
18:41 huginn New commit(s) needsignoff: [Bug 6162] name missing on reading history in opac <http://bugs.koha-community.org[…]w_bug.cgi?id=6162>
18:41 rangi bug 2505
18:41 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=2505 major, P3, ---, gmcharlt, NEW, enable Perl warnings in all modules and scripts
18:41 jcamins Thanks.
18:42 jcamins I didn't think there should be a bug for every file.
18:42 rms left #koha
18:45 conan left #koha
18:45 oleonard There are a lot of loos in the templates now
18:45 rangi PSA : Im probably going to push a lot of the template fixes without waiting for signoff, because i can easily see if they work or not
18:46 rangi oleonard: yeah the script dropped the last letter to make the foreaches
18:46 rangi we can tidy them up when we start rearranging templates
18:47 rangi but for now almost all the problems are down to 2 things
18:47 rangi scope
18:47 rangi or doing this
18:48 rangi if (template->param('something')){
18:48 rangi because that sets something to undef
18:48 oleonard I don't understand
18:48 rangi that is a html::template thing
18:49 rangi thats not at all how you set variables for T::T
18:49 rangi so there is a wrapper script in C4/Templates.pm
18:49 rangi thats lets us keep using it for now
18:49 rangi $template->param('something' => 'value');
18:49 rangi works
18:50 rangi but you cant if it
18:50 rangi thats the same as doing this
18:50 rangi $template->param('something' => undef);
18:51 rangi i will edit the wrapper script to allow that, without resetting the variable
18:51 rangi but fixing them in scripts is valid too, because its not how you check with TT anyway
18:52 huginn New commit(s) needsignoff: [Bug 2505] enable Perl warnings in all modules and scripts <http://bugs.koha-community.org[…]w_bug.cgi?id=2505>
18:52 rangi for TT its
18:52 rangi if ($template->{VARS}->{'something'}){
18:53 * rangi hopes he is making sense
18:53 cait left #koha
18:53 cait joined #koha
18:53 rangi oleonard: does that make any sense at all?
18:53 oleonard I may not understand the why of it, but I can follow directions ;)
18:54 rangi the why is $template->param doesnt exist in Template::Toolkit
18:54 rangi so we wrote our own
18:55 rangi because we didnt have time to edit every single .pl
18:55 rangi but the new convention is to do
18:56 rangi $template->{VARS}->{'something'} = $somevalue;
18:56 rangi and eventually we will phase out $template->param
18:57 jcamins There's no sort of encapsulation?
18:58 rangi $somevalue can be an arrayref or hashref just or a scalar
18:58 rangi eg
18:59 rangi check line 221 of C4/Templates.pm
18:59 jcamins I see.
19:00 rangi anyway, long story short
19:00 rangi doing an if on a template->param will undef it
19:00 rangi which is what broke the lists
19:01 rangi so pretty much everything is either that, or scope
19:01 * rangi hopes that helps ppl find and fix bugs
19:01 rangi i think now the translation works, we are on the downhill slide
19:01 rangi (translation to other languages that is)
19:02 rangi but now i have to go make breakfast
19:05 oleonard $breakfast->{VARS}->{'meat'} = "bacon";
19:10 chris_n $breakfast->{VARS}->{'carbs'} = "cereal & poptarts";
19:19 oleonard $breakfast->{VARS}->{'TV'} = get_program_from_childs_age($age);
19:24 oleonard Do the same rules apply under TT with regard to translations [% IF %] inside a tag?
19:25 oleonard <option value="foo"[% IF ( x) %] selecte=d"selected"[% END %]> still a no-no?
19:27 nengard joined #koha
19:29 fcapo left #koha
19:43 rangi oleonard not entirely sure yet, let's proceed as if it was a no no still
19:43 rangi and we can do some tests when we have time
19:44 Ahmuck joined #koha
19:44 sekjal left #koha
19:46 * rangi wanders off again
19:47 jcamins There's no way to identify a search result row?
19:47 jcamins How's that possible?
19:48 Ahmuck-Sr left #koha
19:50 hdl joined #koha
19:56 jwagner left #koha
19:57 sekjal joined #koha
19:58 shelley left #koha
19:58 sekjal left #koha
19:59 oleonard In moremember.pl,
19:59 oleonard if (C4::Context->preference('Enh​ancedMessagingPreferences')) {
19:59 oleonard $template->param(messaging_form_inactive => 1);
19:59 oleonard Inactive?
19:59 space_librarian joined #koha
20:01 druthb joined #koha
20:05 huginn New commit(s) kohagit32: Partial fix for Bug 4870, Damaged status does not prevent items from being selected... <http://git.koha-community.org/[…]7cabb7364faab6aff> / Bug5555 Corrected search for ISBN / ISSN <http://git.koha-community.org/[…]5c9306a540945b7f1> / Bug 5924 : C4::AuthoritiesMarc.pm search enhancement <http://git.koha-community
20:09 rangi oleonard: heh, how did that ever work?
20:10 cait probably didn't?
20:10 rangi that would be my guess
20:11 rangi jcamins: what do you mean no way to identify a search result row?
20:12 jcamins rangi: in Javascript.
20:13 rangi ahh,
20:13 * rangi tunes out again
20:14 rangi cos in TT you can do loop.row
20:14 jenkins_koha Starting build 12 for job Koha_3.2.x (previous build: FIXED)
20:14 jcamins The issue that I'm struggling with is jQuery-ing a link into the Actions row which includes the biblionumber.
20:16 rangi who do i have to bribe to get bug 5431 signed off?
20:16 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5431 enhancement, PATCH-Sent, ---, katrin.fischer, ASSIGNED, Separate state field for library addresses
20:16 rangi its a follow up patch that allows you to actually add borrowers again :) Id like it so the tests stop complaining .. and yay the tests for catching it
20:16 oleonard left #koha
20:20 cait me?
20:20 * cait feels guilty about it
20:20 rangi cait: that works :)
20:21 cait git pulling now
20:22 rangi yay!
20:23 * cait can still not believe how she missed that
20:23 cait *sigh*
20:23 rangi easy to do
20:23 rangi heck, the sign off missed it, and i missed it too
20:26 cait hmpf!
20:27 rangi http://koha-community.org/get-involved/  <-- now cached hourly so its speedier and doesnt slow bugzilla down as much
20:30 cait bug 5922 :(
20:30 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5922 enhancement, PATCH-Sent, ---, katrin.fischer, ASSIGNED, Show waiting items for patron on return
20:30 rangi why the :(
20:30 cait too late now?
20:31 rangi nope, afaik frederic hasnt set up the 3.4 files for translation yet?
20:31 rangi lemme check when it was first sent
20:31 rangi 26 march
20:31 rangi yep thats ok, it can still go
20:32 rangi its gonna be about the last one tho, i only want to be pushing fixes from now on
20:32 cait thx :)
20:33 cait possible that the new templates are slower?
20:33 cait hm. perhaps not, I have this flash thing open in firefox
20:34 rangi it is possible, because of the fact that we store utf8 inconsistently and have to check it all on output
20:35 rangi but wont be slower on the client end
20:35 cait hm.
20:35 cait do I want to ask why we do that?
20:35 rangi why we store stuff inconsistently, errors
20:36 rangi and because mysql is stupid about utf8
20:36 rangi the upside is, utf8 chars are now displayed consistently right throughout koha
20:36 cait patch sent
20:37 rangi cool
20:37 rangi ok im gonna get to pushing
20:37 cait creating German templates should worknow, right?
20:37 rangi lots of fixes over night, which is cool
20:37 rangi yes, should work fine
20:37 rangi look
20:38 rangi http://opac.opus.koha.catalyst[…]koha/opac-main.pl
20:38 rangi (Its my incredibly slow overloaded virtual machine)
20:38 rangi but you can toggle to deutsch
20:38 cait I wonder if it's the fuzzy thing
20:39 rangi its only using the 3.2 .po files but it catches quite a lot, we need the new ones made for 3.4 pretty soon so ppl can translate
20:39 cait but I see a lot of english on that page
20:39 rangi yeah
20:39 rangi http://opac.opus.koha.catalyst[…]ha/opac-search.pl
20:39 rangi more german there
20:40 druthb left #koha
20:43 tcohen left #koha
20:43 cait and a small template problem :)
20:43 cait "2008minus"
20:44 rangi :)
20:45 nengard left #koha
20:45 cait patch?
20:46 rangi i wouldnt say no
20:46 cait the more/fewer optons on the template don't work either - I thought chris had fixed that
20:46 rangi hmm they were
20:46 JesseM left #koha
20:46 rangi they do for me
20:47 rangi http://opac.opus.koha.catalyst[…]xpanded_options=1
20:47 cait hm was testing on my installation
20:48 cait and they don't
20:48 cait nope
20:48 cait not on yours
20:48 cait where are you looking?
20:48 rangi that url there
20:48 cait nope
20:49 rangi they do for me
20:49 cait you should see boolean dropdowns and a plus sign
20:49 rangi oh
20:49 cait hehe
20:49 rangi i thought you meant show more options
20:49 rangi which works fine
20:49 cait had that same discussion with the other chris
20:49 cait that's what show more options does
20:49 cait one of the things
20:49 rangi right you might need to update the bug then
20:50 rangi it maybe that a patch hasnt been sent/pushed
20:50 cait which bug?
20:50 rangi didnt you say chris fixed it?
20:50 cait yes, but had only the table on the wiki
20:50 rangi that was me then
20:51 rangi the chris on the wiki crossing things out was me
20:51 rangi im not sure who you talked to about it :-)
20:52 cait I am quite sure :)
20:52 jenkins_koha Project Koha_3.2.x build #12: UNSTABLE in 37 mn: http://jenkins.koha-community.[…]ob/Koha_3.2.x/12/
20:52 jenkins_koha * ruth@bywatersolutions.com: Bug 5305: CCL query, then resort, loses reults.
20:52 jenkins_koha * ruth@bywatersolutions.com: Bug 6004/3270: Sending things "home"
20:52 jenkins_koha * Matthias Meusburger: Bug 4943: Search history cookie size limit
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5305 normal, PATCH-Sent, ---, paul.poulain, ASSIGNED, Resorting results of CCL queries fails in Staff Client
20:52 jenkins_koha * Matthias Meusburger: Bug 5996 : MT2926: Fix default values for patron import
20:52 jenkins_koha * Paul Poulain: Bug 5965 : Normalizing opac-detail.pl
20:52 jenkins_koha * Frédérick Capovilla: Bug 3727: Corrects the behaviour of the itemtype selectbox in addbiblio.pl
20:52 jenkins_koha * Paul Poulain: Bug 5625 : adding missing title (needed for lateorders.pl)
20:52 jenkins_koha * Henri-Damien LAURENT: Bug 6026 : export.pl : removing useless condition
20:52 jenkins_koha * Owen Leonard: Fix for Bug 5989 - Funds filter does not remember library choice
20:52 jenkins_koha * Katrin Fischer: Bug 5860: Adding duplicate stocknumber fails silently
20:52 jenkins_koha * Chris Nighswonger: Updating Version Number to 3.02.06.001
20:52 jenkins_koha * Paul Poulain: Bug 6045: Accepted by is empty when accepting from list
20:52 jenkins_koha * Paul Poulain: Bug 6043: SQL error when IndependantBranches=ON on suggestion
20:52 jenkins_koha * Paul Poulain: Bug 6046: suggestedby list on she filter was not created properly
20:52 cait huh
20:52 jenkins_koha * Frédérick Capovilla: Corrects an error when showing a suggestion linked to a deleted budget.
20:52 jenkins_koha * Christophe Croullebois: Bug 5962 : Budgets showing when they shouldn't (MT #4717) Bug in Koha 3.2 on acqui-home.pl
20:52 jenkins_koha * Chris Cormack: Updating history
20:52 jenkins_koha * Alex Arnaud: Bug #6044 - Authority is deleted when mergeto and mergefrom are the same
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6004 minor, PATCH-Sent, ---, kyle.m.hall, NEW, checking in an item that needs to be transferred home, and is on-hold for a patron, causes dual transfer message box
20:52 jenkins_koha * Paul Poulain: BZ6058: uncertain price can't be unchecked
20:52 jenkins_koha * Jared Camins-Esakov: Bug 5651: Question marks break searches w/ICU
20:52 jenkins_koha * Sophie Meynieux: Bug 6047: Remove check on subfield 3 that prevents biblios from BNF to create corresponding authorities
20:52 jenkins_koha * Chris Cormack: Bug 6040 : Adding some error handling to the opac export
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=4943 minor, PATCH-Sent, ---, paul.poulain, RESOLVED FIXED, Search history cookie size limit
20:52 jenkins_koha * Frédérick Capovilla: Bug 5410 : Adds "do-not-truncate" in the search queries of Heading.pm
20:52 jenkins_koha * fdurand: Bug 4196 - Defintion of popularity index into Unimarc setup
20:52 jenkins_koha * Henri-Damien LAURENT: Bug 5924 : C4::AuthoritiesMarc.pm search enhancement
20:52 jenkins_koha * Janusz Kaczmarek: Bug5555 Corrected search for ISBN / ISSN
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5996 minor, PATCH-Sent, ---, matthias.meusburger, RESOLVED FIXED, Patron import defaults not being set right
20:52 jenkins_koha * Owen Leonard: Partial fix for Bug 4870, Damaged status does not prevent items from being selected for reserves
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5965 minor, PATCH-Sent, ---, paul.poulain, RESOLVED FIXED, Make sure opac-detail.pl outputs marc in utf-8
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=3727 normal, PATCH-Sent, ---, fcapovilla, RESOLVED FIXED, If item type is mandatory in marc editor, itemtype is autofilled
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5625 normal, PATCH-Sent, ---, paul.poulain, RESOLVED FIXED, late orders report missing titles
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6026 minor, PATCH-Sent, ---, gmcharlt, RESOLVED FIXED, Remove useless condition for export.pl
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5989 normal, PATCH-Sent, ---, oleonard, RESOLVED FIXED, Funds filter does not remember library choice
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5860 critical, PATCH-Sent, ---, katrin.fischer, RESOLVED FIXED, Adding duplicate stocknumber will fail silently
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6045 critical, PATCH-Sent, ---, paul.poulain, RESOLVED FIXED, Accepted by is empty when accepting from list
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6043 major, PATCH-Sent, ---, paul.poulain, RESOLVED FIXED, No suggestions showing when independant branches set to OFF
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6046 normal, PATCH-Sent, ---, paul.poulain, RESOLVED FIXED, Managed by list in suggestions was not created correctly
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5962 normal, PATCH-Sent, ---, paul.poulain, RESOLVED FIXED, Budgets are showing when they shouldn't on acqui-home.pl
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6044 critical, PATCH-Sent, ---, gmcharlt, NEW, Authority is deleted when mergeto and mergefrom are the same
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5651 major, PATCH-Sent, ---, jcamins, ASSIGNED, can't use ? character in searches
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6047 normal, PATCH-Sent, ---, gmcharlt, NEW, Authority not added if subfield 3 in biblio
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6040 normal, PATCH-Sent, ---, oleonard, NEW, opac-export.pl can throw an untrapped error when trying to export an invalid record
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5410 normal, PATCH-Sent, ---, fcapovilla, ASSIGNED, "Right truncation not supported" error when running link_bibs_to_authorities.pl
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=4196 normal, PATCH-Sent, ---, gmcharlt, ASSIGNED, Defintion of popularity index into Unimarc setup
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5924 normal, PATCH-Sent, ---, henridamien, ASSIGNED, Authorities search : Heading Main is defined in unimarc record.abs
20:52 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=4870 normal, PATCH-Sent, ---, christophe.croullebois, ASSIGNED, Damaged status does not prevent items from being selected for reserves
20:53 rangi string freeze for 3.2.7 :)
20:57 rangi remind me to remind tcohen to put bug numbers in his patches
20:57 * rangi fixes
20:58 jcamins @later tell rangi Remind tcohen to put bug numbers in his patches.
20:58 huginn jcamins: The operation succeeded.
20:58 cait hehe
20:58 cait I already did - left a comment on one of he bugs I signed off
20:59 jenkins_koha Starting build 169 for job Koha_master (previous build: STILL UNSTABLE -- last SUCCESS #151 2 j 11 h ago)
21:00 cait link to the tamplate toolkit bug?
21:01 rangi yep
21:03 cait done
21:03 huginn New commit(s) kohagit: Merge remote branch 'kc/new/enh/bug_5431' into kcmaster <http://git.koha-community.org/[…]b8082e5e0eeca1a0b> / Bug 5431 : Follow up patch fixing ModBranch <http://git.koha-community.org/[…]245532bcfd7d628f8>
21:06 rangi is translate.koha-community.org down for others?
21:08 jcamins is now known as jcamins_away
21:11 wizzyrea it's working for me rangi
21:12 cait for me too
21:12 hdl good night folks
21:12 rangi cool
21:12 wizzyrea gnite hd
21:12 wizzyrea l
21:13 huginn New commit(s) kohagit: Bug 6167 - can't use 008 or 006 plugin in cataloging <http://git.koha-community.org/[…]c2ec4320d5408bf73>
21:20 hdl left #koha
21:25 huginn New commit(s) kohagit: Fix for Bug 6160, my details not showing tabs <http://git.koha-community.org/[…]6cbf451d09906423d> / Bug 6158: Permissions scoped wrong for T::T <http://git.koha-community.org/[…]caa4341a51d61fb49>
21:32 rangi @later tell fredericd I think we need to get the 3.4 po files up asap
21:32 huginn rangi: The operation succeeded.
21:37 sekjal joined #koha
21:37 huginn New commit(s) kohagit: Fix for Bug 6162, name missing on reading history in opac <http://git.koha-community.org/[…]65d938a7acc28823b> / Bug 6164 Send Borrower Data to template consistently <http://git.koha-community.org/[…]cca2230f9164ebeef> / Fix for Bug 6159 - Variable scope errors prevent placing holds in the OPAC <http://git.koha-commun
21:40 jenkins_koha Project Koha_master build #169: STILL UNSTABLE in 40 mn: http://jenkins.koha-community.[…]/Koha_master/169/
21:40 jenkins_koha Chris Cormack: Bug 5431 : Follow up patch fixing ModBranch
21:40 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5431 enhancement, PATCH-Sent, ---, katrin.fischer, ASSIGNED, Separate state field for library addresses
21:40 jenkins_koha Starting build 170 for job Koha_master (previous build: STILL UNSTABLE -- last SUCCESS #151 2 j 12 h ago)
21:41 wizzyrea is anybody a whiz with the wiki categories?
21:42 wizzyrea I'm trying to add a page to tips and tricks but I don't see how to
21:42 rangi they are all messed up at the moement
21:42 wizzyrea OHH
21:42 rangi at least last time i looked
21:42 * wizzyrea will desist then
21:42 wizzyrea the essence of what I wanted to do is done ;)
21:42 * space_librarian avoids the wiki pages due to scary evilness
21:42 space_librarian ;)
21:42 magnus_away Just add [[Category:Tips & Tricks]] "by hand" - or whatever the name of the category
21:42 wizzyrea hehe
21:43 magnus_away ....is
21:43 wizzyrea magnus_away++
21:44 wizzyrea thanks :)
21:44 magnus_away np - and good night!
21:44 magnus_away left #koha
21:59 huginn New commit(s) kohagit: Bug 2505: quiet warnings in tools/inventory.pl <http://git.koha-community.org/[…]437cf7c33b1f882f3> / Bug 6163 : Fixing typo in updatedatabase <http://git.koha-community.org/[…]23c17609ae509fca2>
22:20 jenkins_koha Project Koha_master build #170: STILL UNSTABLE in 39 mn: http://jenkins.koha-community.[…]/Koha_master/170/
22:20 jenkins_koha * Salvador Zaragoza Rubio: Bug 6167 - can't use 008 or 006 plugin in cataloging
22:20 jenkins_koha * Jared Camins-Esakov: Bug 6158: Permissions scoped wrong for T::T
22:20 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6167 blocker, PATCH-Sent, ---, salva, ASSIGNED, can't use 008 or 006 plugin in cataloging
22:20 jenkins_koha * Owen Leonard: Fix for Bug 6160, my details not showing tabs
22:20 jenkins_koha * Owen Leonard: Fix for Bug 6159 - Variable scope errors prevent placing holds in the OPAC
22:20 jenkins_koha * Colin Campbell: Bug 6164 Send Borrower Data to template consistently
22:20 jenkins_koha * Owen Leonard: Fix for Bug 6162, name missing on reading history in opac
22:20 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6158 critical, PATCH-Sent, ---, jcamins, ASSIGNED, Permissions scoped wrong after change to T::T
22:20 jenkins_koha Starting build 171 for job Koha_master (previous build: STILL UNSTABLE -- last SUCCESS #151 2 j 13 h ago)
22:20 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6160 major, PATCH-Sent, ---, oleonard, ASSIGNED, my details not showing tabs
22:20 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6159 critical, PATCH-Sent, ---, oleonard, ASSIGNED, Variable scope errors prevent placing holds in the OPAC
22:20 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6164 major, PATCH-Sent, ---, colin.campbell, ASSIGNED, messaging tab on staff client loses name
22:20 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6162 major, PATCH-Sent, ---, oleonard, ASSIGNED, name missing on reading history in opac
22:29 NateC left #koha
22:38 cait good night all
22:38 cait left #koha
22:55 NateC joined #koha
22:59 jenkins_koha Project Koha_master build #171: STILL UNSTABLE in 39 mn: http://jenkins.koha-community.[…]/Koha_master/171/
22:59 jenkins_koha * Chris Cormack: Bug 6163 : Fixing typo in updatedatabase
22:59 jenkins_koha * Jared Camins-Esakov: Bug 2505: quiet warnings in tools/inventory.pl
22:59 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=6163 major, PATCH-Sent, ---, oleonard, NEW, patron messaging form screwy in multiple places
22:59 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=2505 major, PATCH-Sent, ---, gmcharlt, NEW, enable Perl warnings in all modules and scripts
23:02 druthb joined #koha
23:10 rangi sup bywaterians
23:13 brendan_ heya rangi
23:14 sekjal hi, rangi
23:15 druthb left #koha
23:21 NateC left #koha
23:29 brendan_ left #koha
23:30 brendan_ joined #koha
23:34 rangi heh, i say hi and ppl run :)
23:42 sekjal I'm still here...
23:42 rangi oh hey
23:42 sekjal looking at the wrong window, but here
23:42 rangi i think hdl was gonna chat to you, about an issuing rules thing he did and reworked to work with your hardcoded due dates
23:43 sekjal bug 5872, I believe, which brings the improved smart-rules editor together with Hard Due Dates
23:43 huginn Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5872 enhancement, PATCH-Sent, ---, christophe.croullebois, ASSIGNED, Enhancements to circulation management

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