Time  Nick            Message
00:53 mtj             hey #koha
00:54 mtj             could someone test something for me..
00:54 mtj             $ perl t/db_dependent/Holidays.t
00:55 mtj             ..does that test pass on a 3.20.00 repo, for anyone?
00:56 rangi           yes
00:56 rangi           12 tests all pass
00:56 rangi           All tests successful.
00:56 rangi           Files=1, Tests=12,  0 wallclock secs ( 0.03 usr  0.00 sys +  0.24 cusr  0.01 csys =  0.28 CPU)
00:56 mtj             ok, sweet
00:56 rangi           Result: PASS
00:58 pastebot        "mtj" at 127.0.0.1 pasted "prove t/db_dependent/Holidays.t" (17 lines) at http://paste.koha-community.org/2
00:58 mtj             thats my weird error ^
00:58 rangi           looks like youve got messed up data
01:00 wizzyrea        yeah, is this the database where you've been messing with your holidays?
01:01 wizzyrea        mtj ^
01:01 wizzyrea        maybe try a clean one that's 3.16 only?
01:01 rangi           also this is wrong
01:01 rangi           my $insertHoliday = $dbh->prepare("insert into repeatable_holidays (id,branchcode,weekday,day,month,title,description) values ('', ?, NULL, ?, ?, ?,? )");
01:02 rangi           i mean that only works cos mysql is leniet
01:02 rangi           lenient even
01:02 mtj             wizzyrea:  yeah, its a test db, with some holidays rows
01:02 rangi           `id` int(11) NOT NULL AUTO_INCREMENT,
01:03 rangi           so passing in a ''
01:03 mtj             the test is expecting a clean 'repeatable_holidays' table? i guess?
01:03 rangi           is just silly
01:03 rangi           just leave out the id in the query
01:03 mtj             rangi: gotcha ^
01:03 rangi           line 234 Calendar.pm
01:03 mtj             yep
01:03 rangi           that works by accident
01:03 rangi           a real db would explode
01:04 rangi           but yeah if you are getting 0
01:04 rangi           check show create table repeatable_holidays
01:04 rangi           mine says
01:04 rangi           ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
01:04 rangi           if that is set to 0
01:04 rangi           and you haev a row with 0 already
01:05 rangi           kabloom
01:05 rangi           so 2 problems, 1 bad data, 2 a bad sql that should be fixed but not causing this problem ;)
01:06 mtj             so the real fix.. is to fix crappy sql in insert_day_month_holiday() sub?
01:06 rangi           that wont fix your error
01:06 rangi           but it should be done anyway
01:06 rangi           in a new bug somewhere
01:06 rangi           to fix your error, check your db
01:07 rangi           with the show create table
01:07 mtj             ok ta :)
01:07 rangi           find out what your auto_increment is set to
01:07 rangi           and fix that
01:12 mtj             mysql> show create table repeatable_holidays;
01:13 mtj             rangi:  hmm, that command? ^
01:14 mtj             my 'repeatable_holidays' is indeed missing an AUTO_INCREMENT
01:14 rangi           yeah
01:14 rangi           theres your problem then
01:14 rangi           somewhere in the past an upgrade didnt get run
01:15 rangi           im suprised you an add any holidays at all
01:15 rangi           can even
01:16 mtj             i do see the AUTO_INCR in my master db
01:16 mtj             `id` int(11) NOT NULL AUTO_INCREMENT,
01:16 mtj             so, looks like that is my bug :)
01:19 mtj             whew, thanks for that help
01:29 wizzyrea        random q, can you specify a kohadb to be excluded from dbupdates with the packages?
01:30 eythian         you mean when you upgrade the packages?
01:31 * wizzyrea      imagines something like koha-foreach --upgrade (that is always set) but having the option for a database to be marked as "do not upgrade" by leaving it off, kind of like the email switch
01:31 wizzyrea        yeah, that
01:31 wahanui         yeah, that is cool - a way to enhance the OPAC without bloating Koha...
01:31 wizzyrea        pft.
01:31 eythian         there's no way I know of
01:32 wizzyrea        it's a thing that's probably only interesting to me
01:33 wizzyrea        it's a bit of a downfall of gitified installs.
01:33 eythian         yeah
01:35 mtj             im having a horrible series of WTF moments, with this holidays thing..
01:36 mtj             thinking im alllllmost finished, and then..
01:36 mtj             take a look at this sub, and have a guess what it does..
01:36 mtj             http://git.koha-community.org/gitweb/?p=koha.git;a=blob;f=Koha/Calendar.pm;h=27a02b5d3b7095c603546a55241dd97ac0c54738;hb=HEAD#l343
01:36 mtj             add_holiday()
01:37 mtj             ..it seems to be used only for the ./t/db_dependent/Holidays.t test
01:38 mtj             to mock a 'special_holidays' insert, without really doing it
01:38 eythian         tools/newHolidays.pl
01:38 eythian         77:		add_holiday($newoperation, $branch, $weekday, $day, $month, $year, $title, $description);
01:38 eythian         80:	add_holiday($newoperation, $branchcode, $weekday, $day, $month, $year, $title, $description);
01:38 eythian         lrn2grep, mtj ;)
01:38 eythian         oh wait
01:39 eythian         lrn2read, eythian
01:39 mtj             uh huh...
01:39 eythian         there's two subs with the same name
01:39 mtj             yep
01:39 eythian         it's not too terrible to have something to make test cases easier though
01:39 eythian         it's also documented as such
01:40 mtj             so, i shoud really move that tools/newHolidays sub to ... Koha/Calendar.pm and use that?
01:40 eythian         I don't know
01:40 eythian         do they do the same thing?
01:41 mtj             ..and use that sub the test, instead - as it would actually add the row to the table, rather than pretend too
01:42 eythian         that's probably best
01:43 mtj             sorry ranting a bit :)
01:47 mtj             hmm , looks like the add_holiday() sub in  tools/newHolidays.pl creates a  C4::Calendar obj
01:48 mtj             .. so i cant add that code to Koha::Calendar
01:49 mtj             ..nor could i add that sub to C4::Calendar, and call it from Koha::Calendar - as that would add a dep
01:50 mtj             a no no Koha::* -> C4::* dependancy?
01:52 rangi           yeah dont that
01:52 rangi           do that even
01:53 mtj             i think i pinch the code from C4::Cal::insert_single_holiday()
01:53 wizzyrea        hehe
01:53 mtj             ..and use it for Koha::Cal::add_holiday()
01:54 mtj             its seems to be the same thing, but an actual db write
01:55 mtj             i try that, for a start..
02:04 mtj             in other good news.. i do have all 35 t/Calendar.t tests passing
03:49 * Francesca     waves
04:17 mtj             hey Francesca
04:17 wahanui         I love the 11th doctor!
04:17 Francesca       hey mtj
04:18 Francesca       whatsup
04:18 * mtj           has the  t/db_dependent/Holidays.t tests passing too
04:18 mtj             hmm, not too much here.. :0)
04:59 eythian         http://www.theonion.com/article/harper-lee-announces-third-novel-my-excellent-care-50840
05:14 mtj             peeps, do the latest 3.18.8 pkgs have the security patches added
05:14 eythian         ought to
05:14 mtj             yeah, i thought so too
05:15 eythian         hmm
05:15 mtj             http://git.koha-community.org/gitweb/?p=koha.git;a=tag;h=refs/tags/v3.18.08
05:16 eythian         yes?
05:16 mtj             made from that commit, yeah?
05:16 mtj             v3.18.08
05:16 mtj             object	0580342093946f59e8f0f1320f136ad085abe305	commit
05:16 mtj             author	Liz Rea <wizzyrea@gmail.com>
05:16 mtj             Tue, 23 Jun 2015 22:49:40 +0000 (10:49 +1200)
05:16 eythian         well no
05:16 eythian         because I have commits on top
05:16 eythian         http://git.catalyst.net.nz/gw?p=koha.git;a=shortlog;h=refs/heads/3.18.08-packaging
05:17 rangi           http://git.koha-community.org/gitweb/?p=koha.git;a=shortlog;h=refs/heads/3.18.x
05:17 eythian         should have been built from that
05:17 rangi           all the security patches are there
05:17 eythian         it also has some extra patchs from wizzyrea that come after the tag
05:18 mtj             yep, awesome... thanks for confirming
05:19 * eythian       runs for b in $(git branch |grep -- -packaging) ; do git push origin $b ; done
05:19 eythian         found a few I'd missed
05:23 mtj             thanks for that packing url eythian, very helpful
05:23 eythian         cool
05:32 eythian         @later tell magnuse https://www.youtube.com/watch?v=2OSrvzNW9FE
05:32 huginn`         eythian: The operation succeeded.
06:47 reiveune        hello
06:50 magnuse         eythian: cool, why oh why have i not heard of that before?
06:54 magnuse         this http://ak-hdl.buzzfed.com/static/enhanced/webdr03/2013/7/25/3/enhanced-buzz-17903-1374739080-12.jpg
07:02 Joubu           morning
07:05 magnuse         bonjour le Joubu!
07:06 Joubu           Bonjour le magnuse :)
07:06 fridolin        hie
07:07 Joubu           Salut fridolin!
07:08 gaetan_B        hello
07:09 Joubu           o/
07:10 magnuse         bonojur fridolin et gaetan_B
07:10 magnuse         @wunder boo
07:10 huginn`         magnuse: The current temperature in Bodo, Norway is 9.0°C (8:50 AM CEST on July 16, 2015). Conditions: Light Rain. Humidity: 100%. Dew Point: 9.0°C. Pressure: 29.89 in 1012 hPa (Steady).
07:10 magnuse         @wunder marseille
07:10 huginn`         magnuse: The current temperature in Marseille / Marignane, France is 26.0°C (9:00 AM CEST on July 16, 2015). Conditions: Scattered Clouds. Humidity: 52%. Dew Point: 18.0°C. Pressure: 30.04 in 1017 hPa (Rising).
07:11 Joubu           @wunder Liverpool, uk
07:11 huginn`         Joubu: The current temperature in Liverpool, United Kingdom is 12.0°C (7:50 AM BST on July 16, 2015). Conditions: Clear. Humidity: 88%. Dew Point: 10.0°C. Pressure: 30.09 in 1019 hPa (Steady).
07:26 magnuse         kia ora paul_p_
07:26 paul_p_         'morning magnuse !
07:29 magnuse         no holiday yet?
08:33 magnuse         kia ora cait
08:36 cait            kia ora
08:57 drojf           morning #koha
08:59 cait            drojf: all but help files translates now - not checked yet
08:59 drojf           you're too fast!
08:59 drojf           cait++
09:04 drojf           waiting for so many email answers, maybe i should go on vacation for a few days. what is this patience thing people talk about?
09:06 drojf           lol, i am so used to "magnuse" that i even addressed magnus like that in an email ;)
09:07 drojf           i pronounce it french, mangüüs
09:08 drojf           @wunder berlin, germany
09:08 huginn`         drojf: The current temperature in Berlin Tegel, Germany is 21.0°C (10:50 AM CEST on July 16, 2015). Conditions: Mostly Cloudy. Humidity: 78%. Dew Point: 17.0°C. Pressure: 30.06 in 1018 hPa (Steady).
09:09 * wizzyrea_     waves
09:16 drojf           hi wizzyrea_
09:17 wizzyrea_       ugh, what's the package for apachebench/
09:17 wizzyrea_       ?
09:23 drojf           wizzyrea_: is it in apache2-utils?
09:24 wizzyrea_       well that's what I thought but it doesn't turn up as installed.
09:24 * wizzyrea_     ignores it
09:24 drojf           i thought i had written down something about that. but can't find it in the wiki. i remember i had problems finding that too. i usually ignore it, but i needed it for the actual tests
09:31 drojf           wizzyrea_: i have a local libhttpd-bench-apachebench-perl_0.73-1_amd64.deb file, so i guess i built it myself
09:38 wizzyrea_       ohoh
09:38 wizzyrea_       bench-apachebench-perl I didn't try that.
09:39 wizzyrea_       but it didn't work so meh.
09:41 drojf           i dh-make-perl'ed it. and i show up in the koha irc logs every 3 years asking why it does not work :D http://irc.koha-community.org/koha/2015-03-10#i_1647719
09:42 drojf           past me send me greetings from the logs. past me is such a nice person
09:48 wizzyrea_       hehe
09:48 wizzyrea_       now if I could figure out what godawful reason Creators.t has for not passing
09:49 * wizzyrea_     is feeling really dumb
10:00 seltmann        hello, i managed to install koha and configured it with all sample data. is there a description available, how i can login with sample patrons credentials, lookup titles, etc?
10:20 magnuse         drojf: it is pronounced magnus_e :-)
10:20 drojf           magnuse: i know ;)
10:20 drojf           in theory, i know
10:20 drojf           but i prefer the other way :)
10:26 magnuse         :-)
10:26 * magnuse       needs lunch
10:31 * drojf         found lunch :)
10:31 wizzyrea_       not quiiiiite time for a midnight snack.
10:32 * wizzyrea_     gives the finger to Creators.t
10:32 wizzyrea_       completely no obvious explanation as to why it's doing what it's doing. hrmph.
10:34 jcamins         wizzyrea_: you're up late.
10:34 wizzyrea_       I had duties to attend to!
10:34 wizzyrea_       had/have
11:01 mtj             @later tell pianohacker:  http://hardware.slashdot.org/story/14/07/24/1941227/a-warm-feeling-wooden-keyboard-video
11:01 huginn`         mtj: The operation succeeded.
11:16 wizzyrea_       I want so badly to make some UX rules for Koha.
11:17 wizzyrea_       and enforce some UI principles
11:35 wizzyrea_       "every interface shall return to it's origin interface with the back button or have an option to 'do another of the same thing'"
11:36 wizzyrea_       see the item search for a reasonably egregious violation of this rule.
11:38 wizzyrea_       what if I don't want to edit the search, and just do a whole new one? ugh.
11:39 wizzyrea_       you can't reset it, if you click back, it takes you to advanced search.
11:39 wizzyrea_       so it's 2 clicks to do a thing that should take 1 click.
11:40 wizzyrea_       3 if you include the fact that you clicked the back button and were surprised that you didn't go where you expect
11:40 wizzyrea_       expected*
11:41 wizzyrea_       and then you said "bah" and went to get a coffee.
11:41 wizzyrea_       because this thing is annoying.
12:03 barton          morning, #koha -- I have a librarian who says that the 'OverdueNoticeBcc' is being used for *all* notices, not just Overdue. Is that true? Is there any way to limit it?
12:04 wizzyrea_       it would seem like a sensible thing.
12:04 wizzyrea_       to have it work for all
12:04 wizzyrea_       since it's just one preference.
12:04 Joubu           looking at the code, yes it's used for all notices
12:05 wizzyrea_       the way to fix that I guess would be to make the bcc part of the email notice definition in Notices and Slips.
12:05 wizzyrea_       and do away with the global pref.
12:05 Joubu           The description of the pref is "Send all notices as a BCC to this email address"
12:06 wizzyrea_       ^
12:06 barton          mmm. Yeah.
12:06 wizzyrea_       have your librarian become comfortable with email filters.
12:06 barton          good catch Joubu.
12:07 barton          heh.
12:07 wizzyrea_       at least until it's fixed properly.
12:20 magnuse         wizzyrea_: see also bug 14322
12:20 huginn`         04Bug http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14322 normal, P5 - low, ---, gmcharlt, NEW , Can't link to an item search
12:21 wizzyrea_       magnuse: urg.
12:27 magnuse         wizzyrea_: just propose your ux rules - put 'em on the wiki and we'll have a vote. sounds good to me!
12:28 wizzyrea_       I'd want to consult with oleonard on it :)
12:32 magnuse         good idea
12:32 magnuse         @seen oleonard
12:32 huginn`         magnuse: oleonard was last seen in #koha 19 weeks, 5 days, 18 hours, 37 minutes, and 39 seconds ago: <oleonard> That's very strange squash. I'm sorry, I don't know what's going on.
12:32 magnuse         might be a good idea to just jot something down so he can look at it when he comes back
12:35 wizzyrea_       good night, friends.
12:35 magnuse         have fun wizzyrea_
12:35 magnuse         cait around?
12:37 cait            kind of
12:37 cait            just annoyed that documentation of calcfine is wrong *sigh*
12:43 magnuse         cait: bug 13930 puts new code in C4 - is that a blocker?
12:43 huginn`         04Bug http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13930 enhancement, P3, ---, mail, Needs Signoff , Add supporting service svc/ncip for xnciptoolkit driver
12:45 magnuse         it uses lots of other subs from C4
12:50 cait            then probably it couldn't go into Koha
12:52 cait            Koha - the namespace
12:56 cait            @wunder Konstanz
12:56 huginn`         cait: The current temperature in Bodensee Konstanz City, Konstanz, Germany is 31.0°C (2:55 PM CEST on July 16, 2015). Conditions: Clear. Humidity: 26%. Dew Point: 9.0°C. Pressure: 30.06 in 1018 hPa (Steady).
12:56 * cait          melts
12:57 magnuse         wow
12:57 magnuse         @wunder boo
12:57 huginn`         magnuse: The current temperature in Bodo, Norway is 10.0°C (2:50 PM CEST on July 16, 2015). Conditions: Mostly Cloudy. Humidity: 82%. Dew Point: 7.0°C. Pressure: 29.92 in 1013 hPa (Steady).
12:57 magnuse         the average would be good :-)
12:59 magnuse         cait: yeah, i thought "not use a lot of C4 modules" was a criterion for gettin into Koha::. this code basically exposes stuff from C4 through the API, so it makes total sense to use things from C4
13:06 druthb          @later tell talljoy Saw this, and though of you:  http://www.geekxgirls.com/article.php?ID=5095
13:06 huginn`         druthb: The operation succeeded.
13:41 seltmann        hello all, could you please help me with PatronSelfRegistration. i enabled 'PatronSelfRegistration' and 'PatronSelfRegistrationVerifyByEmail', saved it, restarted zebra, but i cannot find any link for registering in the opac.
13:41 cait            did you also set the default patron category?
13:41 cait            i think it needs that at well
13:41 cait            use an existing categorycode
13:42 cait            and make sure you are not logged in when looking at the opac
13:42 cait            ... und hallo aus Konstanz ;)
13:42 seltmann        cait: thanks for the hint. hallo aus leipzig :)
13:42 cait            :)
13:43 druthb          @wunder konstanz
13:43 huginn`         druthb: The current temperature in Bodensee Konstanz City, Konstanz, Germany is 31.3°C (3:43 PM CEST on July 16, 2015). Conditions: Clear. Humidity: 29%. Dew Point: 11.0°C. Pressure: 30.04 in 1017 hPa (Falling).
13:43 cait            = too hot
13:43 druthb          @wunder 77098
13:43 huginn`         druthb: The current temperature in Montrose (Mandell Place), Houston, Texas is 29.4°C (8:43 AM CDT on July 16, 2015). Conditions: Clear. Humidity: 79%. Dew Point: 25.0°C. Pressure: 29.97 in 1015 hPa (Steady).
13:43 druthb          == too humid.
13:44 cait            @wunder leipzig
13:44 huginn`         cait: The current temperature in Leipzig Schkeuditz, Germany is 27.0°C (3:20 PM CEST on July 16, 2015). Conditions: Scattered Clouds. Humidity: 45%. Dew Point: 14.0°C. Pressure: 30.06 in 1018 hPa (Steady).
13:44 cait            ooooh
13:44 * druthb        is jealous
13:44 druthb          leipzig sounds Just Right.
13:45 seltmann        it is indeed. unfortunately not in front of a computer :-(
13:48 seltmann        alright cait, please help me. whats that group?
13:50 mtj             joubu, do the tests for qa-test-tools pass OK for you?
13:51 mtj             if so... which repo do you have success with?
13:52 nengard         hola all
13:52 nengard         @wunder 78754
13:52 huginn`         nengard: The current temperature in Four Seasons, Austin, Texas is 25.9°C (8:52 AM CDT on July 16, 2015). Conditions: Overcast. Humidity: 83%. Dew Point: 23.0°C. Pressure: 30.01 in 1016 hPa (Falling).
13:52 mtj             ..i have my PERL5LIB pointing to a 3.20.00 git repo, and get some failling tests
13:54 pastebot        "mtj" at 127.0.0.1 pasted "prove t/Perl.t" (263 lines) at http://paste.koha-community.org/3
13:57 mtj             # Looks like you failed 2 tests of 37.
13:58 mtj             http://wiki.koha-community.org/wiki/QA_Test_Tools
13:58 mtj             does 'qa-test-tools
13:58 mtj             oops..
13:58 mtj             does 'qa-test-tools' pass for anyone else?
14:00 mtj             cd ~/qa-test-tools
14:00 mtj             prove -v t/Perl.t
14:08 mtj             ok, looks like i need in install codespell
14:11 seltmann        the next problem i have: koha wont sent verification mails. although manual testmails via 'mail' command works from commandline. any suggestions?
14:12 seltmann        before you ask: there is a file 'email.enabled' in the librarys filestructure
14:15 Joubu           The guy who wrote C4::VirtualShelves::Page was drunk I guess, or had a terrible hangover
14:16 mtj             lol, hiya Joubu :)
14:16 cait            seltmann: sorry, was afk
14:17 cait            administraction > patron categories (benutzertypen)
14:17 seltmann        cait: np
14:17 mtj             i have installed codespell, now down to 1 qa-tool error
14:17 cait            koha will use the mta for sending emails, but you also need to activate a cronjob
14:17 cait            how did you install koha?
14:18 cait            or differently - the next thing to check is the message_queue database table
14:18 seltmann        debian and the packages
14:18 cait            cool
14:18 seltmann        im looking for the cronjob
14:18 cait            in this table the messages are stored before they are sent out
14:18 cait            then the process_messaquueue (or similar) job will send them
14:19 mtj             if i rewind my  qa-tools repo 4 commits, it passes ok
14:19 cait            you might have to enable email for your instance - there is a command line command to do that
14:19 mtj             http://git.koha-community.org/gitweb/?p=qa-test-tools.git;a=commit;h=304d7a79bdc9e558e689b9adce9cbe20a1f1296f
14:19 seltmann        i did that already
14:19 mtj             to that commit ^
14:19 cait            koha-email-enable instancename?
14:20 seltmann        yes
14:20 cait            hm ok
14:20 seltmann        but my cronjob is not working.
14:20 cait            hm it should be
14:20 seltmann        not in a docker environment :)
14:20 cait            ok, can't say anythign about that
14:22 cait            so the table has entries?
14:22 seltmann        i guess. let me first try the cronjobs manually. i think that is the problem
14:22 cait            when you run them - koha-shell
14:23 cait            http://wiki.koha-community.org/wiki/Commands_provided_by_the_Debian_packages
14:23 cait            to have the right environment variables set for you
14:27 Joubu           mtj: what's your error?
14:28 mtj             http://git.koha-community.org/gitweb/?p=qa-test-tools.git;a=commit;h=f8d8aadd1153b3b54acbfc800cf12bffaa698077
14:28 mtj             ^ Joubu: that commit seems to be causing the problem
14:29 mtj             got...
14:29 mtj             #  FAIL perl/updatedatabase.pl
14:29 mtj             #    OK   critic
14:29 mtj             #    FAIL         forbidden patterns
14:29 mtj             #    OK   pod
14:29 mtj             #    OK   spelling
14:29 mtj             #    FAIL         valid
14:29 mtj             expected...
14:29 mtj             #  FAIL perl/updatedatabase.pl
14:29 mtj             #    OK   critic
14:29 mtj             #    FAIL         forbidden patterns
14:29 mtj             #    OK   pod
14:29 mtj             #    OK   spelling
14:29 mtj             #    OK   valid
14:29 mtj             .
14:30 mtj             but that test *should* fail... not pass?
14:30 Joubu           use -v 2
14:31 Joubu           to know which pattern is forbidden :)
14:31 xekhz           hello ppl
14:34 xekhz           concerning this bug http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14527
14:34 huginn`         04Bug 14527: normal, P5 - low, ---, cnighswonger, NEW , zebra error 114 when searching for items added before or after a specific date
14:34 xekhz           i tested it in an online demo of koha and it does not work
14:35 mtj             $ prove   ./t/Perl.t
14:35 cait            xekhz: strange, i tried it to
14:35 cait            could you add a step by step to the bug for a demo?
14:35 xekhz           i tested it in http://intranet-demo.biblibre.com/cgi-bin/koha/labels/label-edit-batch.pl?op=add&batch_id=0&item_number=3762&item_number=3765&item_number=4423&item_number=4633&item_number=4635&item_number=4807&item_number=5158&item_number=5161&item_number=5173&item_number=5176&item_number=5293&item_number=5778&item_number=5782&item_number=5818&item_
14:35 xekhz           number=5819
14:35 mtj             Joubu: can you give a -v 2 example please?
14:35 cait            with exactly the search options you used?
14:35 xekhz           in the bug i added screenshots
14:35 Joubu           mtj: sorry, I didn't understand that the problem was on the unit tests
14:35 mtj             $ prove -v 2 ./t/Perl.t
14:35 mtj             like that? ^
14:36 cait            last time i couldn't open the zip filed screenshots
14:36 xekhz           let me try to open the files
14:36 Joubu           mtj: % git log --oneline | head -n1
14:36 Joubu           9ba54a0 spelling: Don't die if codespell is not installed
14:37 Joubu           prove t returns green for me
14:37 xekhz           http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=40967
14:37 xekhz           link to screenshot
14:38 cait            xekhz: your screenshot of the zebra reindex shows a couple problmeatic records
14:38 xekhz           with the options and error
14:38 xekhz           yes i know.. but i can search .... the problem is when i search by date
14:38 mtj             Joubu: what version of koha is your qa-tool pointing too?
14:38 xekhz           i get @attr 1=32
14:38 xekhz           and zebra does not know what that is
14:39 cait            xekhz: i can't unpack it- something strange with the file names
14:39 Joubu           master
14:39 xekhz           maybe it is this
14:39 xekhz           ~
14:39 Joubu           mtj but it does not check the koha code
14:39 xekhz           symbl a til in portuguese
14:39 mtj             Joubu:  yep ok ^
14:39 cait            hm now it worekd - but have to actually unpack, can't use the preview
14:40 cait            hm
14:41 xekhz           it has 2 images.
14:41 xekhz           with one image preview works
14:41 cait            it works fine for me
14:41 seltmann        ok, lets call it a day, cait. thanks for your help.
14:41 cait            in 3.18.8
14:41 cait            seltmann: np
14:42 cait            new batch - edit items - search the date you searched for in the same date format - items found
14:42 cait            i think it's something witht he items it tries to retrieve maybe
14:42 xekhz           what about the error in zebra
14:43 xekhz           @attrset 1=32
14:43 huginn`         xekhz: downloading the Perl source
14:43 mtj             Joubu: can you explain how this test works?
14:43 mtj             http://git.koha-community.org/gitweb/?p=qa-test-tools.git;a=commitdiff;h=f8d8aadd1153b3b54acbfc800cf12bffaa698077;hp=304d7a79bdc9e558e689b9adce9cbe20a1f1296f
14:44 xekhz           the date format is the same in the DB
14:44 mtj             its seems to be expecting '$STATUS_OK    valid'
14:45 Joubu           mtj: Sorry, I don't have the time
14:46 mtj             .. but the test should fail, as the file contains a forbidden_pattern
14:46 Joubu           mtj but quickly: I use a module to mock a git report (Git::Repository)
14:46 Joubu           and then for each dir in t/data, 1 commit is simulated
14:46 Joubu           so in commit 5, a new file updatedatabase.pl is added
14:47 Joubu           and should be valid
14:47 Joubu           if it's not for you, just try perl -wc t/data/5/perl/updatedatabase.pl
14:47 mtj             ah, ok ... its valid perl
14:47 Joubu           it's what the test does
14:47 cait            xekhz: i think it's a problem with the data
14:48 cait            but i don't know aht it could be - as i said, ic an't make the error show up
14:48 cait            sorry, I can't help you more right now
14:48 mtj             valid perl - with forbidden patterns
14:48 xekhz           ok
14:48 mtj             +   $STATUS_KO    forbidden patterns
14:48 mtj             +   $STATUS_OK    valid
14:48 xekhz           anyone know zebra very well ?
14:54 Joubu           mtj: but you get a valid fail, that's it?
14:55 mtj             Joubu:  thanks , i found my problem... no KOHA_CONF was set , uuuh
14:55 Joubu           heh
14:56 mtj             fk me
14:57 mtj             sorry for the hassle, Joubu
14:57 Joubu           no worries ;)
15:02 mtj             i am up late watching the TdF... not paying enough attention :0)
15:12 reiveune        bye
16:18 gaetan_B        bye
16:45 bag             cait: HI THERE
17:12 cait            bag: hi THERE
17:31 magnuse         bag: HI >>>>>>>>>
17:31 nengard         magnuse what about me??? hehe
17:32 * nengard       is pouting
17:37 magnuse         nengard_lunch: HI >>>>>>>>>
17:37 magnuse         but that must be an exception - the "HI" is a bag thing....
17:38 bag             :)
17:38 bag             magnuse: HI
17:38 wahanui         que tal, bag
17:41 magnuse         bag: HI
17:41 wahanui         kia ora, magnuse
17:41 magnuse         well hello there wahanui
17:49 pianohacker_dnd wahanui: give me a glass of scotch
17:49 wahanui         pianohacker_dnd: huh?
17:49 pianohacker_dnd wahanui: neat
17:49 * wahanui       tips out the ice, starts over.
17:59 Joubu           time to go
17:59 Joubu           I will be off for the next 2 weeks, see you!
18:00 magnuse         have fun Joubu!
18:01 magnuse         pianohacker_dnd: nice one!
18:41 drojf           evening
19:27 cait            :)
19:28 drojf           is there a non-youtube version of the "koha--a community" video?
19:28 cait            hmmm
19:28 cait            not sure
19:29 cait            think tomas has the file - we could probably uplaod that somewhere?
19:29 drojf           we should
19:30 drojf           brb
19:37 drojf           it should probably have a license too? i don't think there is any mentioned :)
20:35 rangi           morning
20:36 drojf           hi rangi
20:36 cait            waves
20:39 drojf           [off] keep your fingers crossed for an awesome hackfest location option. they are going to discuss it soon :)
20:40 drojf           [off] unfortunately you will all have to come then so we fill the room or i'll look silly :P
20:40 cait            :)
21:03 * Francesca     waves good morning
21:19 drojf           good night #koha
21:19 Francesca       rangi you around?
21:20 rangi           yep
21:30 * wizzyrea      wonders if there's some mariadb/mysql difference in detecting privileges on a database
21:31 wizzyrea        seems like I always get a message "You don't have sufficient privileges to do stuff to koha_db" but it still works.
21:31 wizzyrea        it doesn't do that on mysql.
21:31 wizzyrea        during install.
21:32 wizzyrea        also bless whoever put the "select all" link on the sample data page. You're the best and I love you.
21:35 * Francesca     waves at wizzyrea
21:35 wizzyrea        hiya
21:36 Francesca       I won't be in today after all
21:36 Francesca       I have to go finish my costume for armaggedon
21:37 Francesca       hey wizzyrea I have a cat related photo article for you
21:37 Francesca       http://cheezburger.com/558341/funny-cats-list-cats-that-melted
21:38 wizzyrea        hehe that's cute
21:39 Francesca       My cats tend to melt at night
21:39 Francesca       and then they magically reform when food comes out
21:40 Francesca       heh the lock ness monster hunter has decided that its just a big catfish
21:44 indradg         good morning #koha
21:44 Francesca       monring
21:45 * indradg       waves
21:45 * Francesca     waves back
21:51 rangi           http://www.nzherald.co.nz/nz/news/article.cfm?c_id=1&objectid=11482144
21:52 rangi           AUT University (AUT) and Victoria University Wellington (VUW) hold contracts with MBIE, and are getting help from New Zealand technology companies Catalyst and Open Parallel to develop the astonishing computing power required by the radio-telescope - a trillion times more than was needed to send a man to the moon - which does not yet exist.
21:52 rangi           yeah buddy
21:52 wahanui         https://www.youtube.com/watch?v=BD0mif8R9vQ
21:53 ibeardslee      and VUW are still too big for Koha? ;)
21:54 rangi           heh probably
21:57 Francesca       sad
21:57 Francesca       Vic would be that much more awesome with kohl
21:58 Francesca       koha
21:58 Francesca       can't spell today
21:59 Francesca       hey rangi would I be able to come sometime next week instead of today?
21:59 Francesca       I've got to do something this afternoon so can't make it
22:06 rangi           yeah thats cool
22:07 Francesca       sweet thanks
22:07 Francesca       I'm still trying to get bugzilla going on my mac, having a few problems with apache and perl
22:07 cdickinson      :P
22:07 rangi           ahh, in a virtual machine eh?
22:09 Francesca       kinda
22:10 Francesca       I'm just trying to get the stuff running off my mac operating system
22:10 Francesca       but if it doesn't work I shall give up and start up virtual box
22:10 Francesca       and do it there instead
22:10 rangi           righto
22:12 Francesca       I'll get it working eventually
22:13 cait            @wunder Konstanz
22:13 huginn`         cait: The current temperature in Bodensee Konstanz City, Konstanz, Germany is 24.0°C (12:13 AM CEST on July 17, 2015). Conditions: Clear. Humidity: 65%. Dew Point: 17.0°C. Pressure: 30.04 in 1017 hPa (Steady).
22:13 Francesca       @wunder wlg
22:13 huginn`         Francesca: The current temperature in Wellington, New Zealand is 11.0°C (10:00 AM NZST on July 17, 2015). Conditions: Mostly Cloudy. Humidity: 82%. Dew Point: 8.0°C. Pressure: 29.92 in 1013 hPa (Steady).
22:14 Francesca       hmm not too cold today
22:18 cdickinson      it was threatening to rain before
22:18 cdickinson      hopefully it doesn't, getting fibre set up at home today and I'd feel bad for the guys working outside
22:19 Francesca       yeah
22:19 Francesca       that would suck
22:20 Francesca       I've got my rain coat so I'm ok if it rains
22:20 technetct       Hi. I was hoping someone can help me with my koha install
22:23 technetct       I upgraded ubuntu today and it killed my settings for apache.
22:23 technetct       Not sure how to fix it and get it back to where it was
22:24 Francesca       google it maybe? if you can?
22:24 rangi           check the sites-enabled dir
22:25 rangi           it shouldnt have deleted the config files, if it did change them there will be a .dpkg version that it backed up
22:25 technetct       i tried that and come up with nothing. my sites-available has a koha link to the koha folder.
22:25 technetct       not sure what config file I should be looking for
22:25 rangi           how did you install koha?
22:26 technetct       I didn't do the install. i inheritited it from the IT company that did it many years ago.
22:26 rangi           ahh probably not with packages then
22:27 rangi           in your koha folder
22:27 rangi           take a look for koha-httpd.conf
22:27 technetct       i see that file. that looks correct. That is the file that is linked in the site-available folder with a koha shortcut
22:29 technetct       how do I get that recognized by apache? when I go to the ip I get the generic welcome to apache index.html page.
22:29 rangi           right, try symlinking that into the sites-enabled dir
22:30 technetct       symlinking? can you explain that?
22:30 technetct       i see a link to that file in the site-enabled folder
22:31 technetct       same file link for sites-available and sites-enabled. is that correct?
22:31 rangi           if you are getting the default page, its probably a dns issue
22:32 eythian         hi
22:32 wahanui         hi, eythian
22:32 Francesca       hey eythian
22:32 technetct       if I go the ip I get the Index of page with an html link. the html link goes to the default page.
22:33 technetct       same with port 8080 which was the koha admin page
22:34 eythian         Francesca: g'day
22:34 Francesca       whatsup
22:35 rangi           technetct: whats the ServerName in the koha-httpd.conf set to?
22:35 technetct       virtualhost
22:35 wahanui         virtualhost is probably http://httpd.apache.org/docs/trunk/vhosts/
22:36 rangi           it says
22:36 rangi           ServerName virtualhost
22:36 rangi           ?
22:37 technetct       sorry. under servername for 8080 it has kohalive:8080
22:37 rangi           right
22:37 rangi           what happens if you hit that url
22:37 rangi           http://kohalive:8080
22:38 technetct       server not found
22:42 rangi           i think you are going to want to set up proper dns entries and then modify your servername accordingly, to fix it properly
22:43 rangi           ah crappy not really a fix but a workaround is to disable the default site
22:43 rangi           something like
22:43 rangi           sudo a2dissite 000-default
22:45 technetct       site 000-default already disabled
22:45 technetct       computer name is koha-mini
22:49 technetct       hosts file has 127.0.0.1 localhost, 127.0.1.1 koha-mini
22:54 technetct       how do I see what sites apache sees?
23:04 technetct       if I do a sudo a2ensite koha I get site koha does not exist
23:05 ibeardslee      'ls /etc/apache2/sites-available' will show you the sites that are available to be enabled
23:06 ibeardslee      'ls /etc/apache2/sites-enabled' should show you the sites (well the configurations) that are currently enabled.
23:12 technetct       I found the issue. the link to the koha-httpd.conf file needs to be a file koha.conf not a link. I created the file (copy and pasted the text) into the site-avail and site-enabled and now I'm back up and running.
23:14 technetct       thanks for some pointers.
23:15 eythian         technetct: that's actually not true, it's totally fine being a link
23:15 eythian         traditionally, it is a link
23:16 eythian         but, I wouldn't change it now it works.
23:18 technetct       I found this which supports it: When attempting to enable an apache site, it supposedly doesn't exist. Depending on the version of apache installed, sites of one form (e.g. /etc/apache2/sites-available/{SITENAME}) need to be renamed to another form (e.g. /etc/apache2/sites-available/{SITENAME}.conf).
23:19 technetct       Or I just needed to rename the file it was linked to?
23:20 eythian         you would have had to rename the link name if it didn't end in .conf
23:20 eythian         that changed with Apache 2.4