Time  Nick            Message
23:19 koha-jenkins    Project Koha_Master_D9 build #1795: FIXED in 1 hr 15 min: https://jenkins.koha-community.org/job/Koha_Master_D9/1795/
23:19 wahanui         Congratulations!
23:19 koha-jenkins    Yippee, build fixed!
22:41 huginn`         tuxayo: The operation succeeded.
22:41 tuxayo          @later tell khall ok to release the 27th? (see my email)
22:41 tuxayo          (oups, I can't edit a message on IRC)
22:40 tuxayo          * @later tell khall ok
22:40 huginn`         tuxayo: I've exhausted my database of quotes
22:40 tuxayo          @later khall ok to release the 27th? (see my email)
22:28 koha-jenkins    Project Koha_19.11_U_Stable build #55: FIXED in 25 min: https://jenkins.koha-community.org/job/Koha_19.11_U_Stable/55/
22:27 wahanui         Congratulations!
22:27 koha-jenkins    Yippee, build fixed!
19:44 cait            Joubu: still around?
17:42 wahanui         i already had it that way, huginn`.
17:42 huginn`         oleonard: I'll give you the answer as soon as RDA is ready
17:42 oleonard        huginn`: How many undelivered messages are you sitting on?
17:41 huginn`         oleonard: The operation succeeded.
17:41 oleonard        @later tell MagicalElves please fix 28012 while we sleep
17:35 oleonard        Seems like a not great bug to carry into the next version...
17:35 huginn`         Bug https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28012 minor, P5 - low, ---, koha-bugs, NEW , Error on Saving new numbering pattern
17:35 oleonard        Oh, it's bug 28012
17:19 oleonard        :(
17:19 oleonard        C4::Serials::Numberpattern::AddSubscriptionNumberpattern(): DBI Exception: DBD::mysql::st execute failed: Field 'description' doesn't have a default value
17:13 huginn`         Bug https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26257 enhancement, P5 - low, ---, oleonard, ASSIGNED , Move translatable strings out of subscription-add.tt and into subscription-add.js
17:13 oleonard        I keep adding more to the Bug 26257 test plan until I get tired.
15:45 Joubu           adding to the bug or I will forget
15:44 Joubu           would be good to know if we have such test, indeed!
15:44 ashimema        see ya
15:44 Joubu           ok, I am tired, leaving now. See you tomorrow!
15:44 ashimema        I was indeed
15:44 Joubu           you were talking about the other test :D
15:43 ashimema        nope
15:43 Joubu           (it's not related to your patches)
15:43 Joubu           t/db_dependent/api/v1/cashups.t line 66
15:43 ashimema        damn
15:43 ashimema        not that I can see..
15:41 ashimema        I'm looking for such a test now
15:41 ashimema        lol
15:40 Joubu           ofc it will fail if you have one defined
15:40 Joubu           66     $t->get_ok("//$userid:$password@/api/v1/cash_registers/1/cashups") 67       ->status_is(404)->json_is( '/error' => 'Register not found' );
15:39 Joubu           hum, passing after a reset_all
15:38 Joubu           t/db_dependent/api/v1/cashups.t is failing for me but it does not seem related at all
15:37 Joubu           Are we certain we have a test for the "set a date using the REST API" case?
15:35 ashimema        I've been here a few times
15:35 ashimema        I will dig out the relevant line of code
15:34 Joubu           I suppose it does nothing if it get a string
15:34 Joubu           yes, wondering about what DBIC does behind
15:33 ashimema        make sense?
15:33 ashimema        yes.. it does change the return from a DateTime to a String.. but in such a way that doesn't break the Write actions but does fix the Read actions
15:32 ashimema        it's the call there we are fixing
15:32 ashimema        Koha/REST/Plugin/Objects.pm
15:31 ashimema        not the ONLY one
15:31 Joubu           and it's the one that is calling attributes_from_api
15:31 Joubu           this name makes me think it is setting :)
15:31 Joubu           677 sub set_from_api {
15:31 ashimema        okies
15:31 Joubu           I must write the whole thing before confusing you
15:30 ashimema        and as far as I can see doesn't break setting
15:30 ashimema        this bug fixes searching
15:30 ashimema        that's not what this bug fixes
15:30 Joubu           but we are setting
15:30 ashimema        search requires you convert to the right formatted string
15:30 Joubu           I use $dtf for comparison
15:30 ashimema        but search is NOT
15:30 ashimema        it is
15:30 ashimema        or a DateTime for that matter.. it auto-stringifies if it's passed a DateTime.. or just accepts the string if passed a string
15:30 Joubu           isn't it happy with a DT as well?
15:29 ashimema        and that's happy with a string
15:28 ashimema        we simply call ->set
15:28 ashimema        I've checked everywhere
15:28 ashimema        yeah.. I was right
15:27 ashimema        where in store do we assume we're being passed a DateTime object
15:27 Joubu           have*
15:27 Joubu           I think that's what confused me when I asked the question (had to admit I forgot)
15:26 Joubu           so yes, that makes sense
15:26 ashimema        I see where you're going
15:26 ashimema        yeah
15:26 Joubu           it's inside a ->set
15:26 ashimema        let me check again
15:26 Joubu           ok right
15:26 Joubu           677 sub set_from_api {
15:26 ashimema        ok
15:26 Joubu           I don't think so, hence the question
15:25 ashimema        I believe so..
15:25 ashimema        I'm not close enough to remember that
15:25 Joubu           ashimema: but are we right before and insert/update?
15:25 ashimema        I imaging it would be something along the lintes `output_pref(dt_from_string($string, 'ref3339), format => sql)` or something using just DateUtils right?
15:24 ashimema        string -> object -> string
15:24 ashimema        dt_from_string to get a DateTime from an rfc3339 string.. and then dtf to convert that DateTime back to a string, but this time magically the right string for whatever Database we're talking to
15:23 Joubu           Koha::DateUtils and $dtf
15:23 ashimema        yes..
15:23 Joubu           you are using both
15:23 ashimema        I've deliberately ignored the timezone stuff still for now.. I'd love to add timezone testing into that test actually.. feels like a great place to add it.
15:23 Joubu           +                    $value = $dtf->format_date(dt_from_string($value, 'rfc3339'))
15:23 Joubu           ashimema: ok but..
15:23 ashimema        and.. if we're trying to be db agnostic.. this is the right thing to do
15:22 ashimema        I'm not even sure which function in DateUtils would output the right thing.
15:22 ashimema        for me.. using dtf from the DBI connecting is the standard approach..
15:22 ashimema        just commented
15:21 Joubu           ashimema: what about comment 22?
15:19 ashimema        Joubu, I fixed 28585
15:16 reiveune        bye
15:10 oleonard        Ah, yes, i see it. Thanks
15:10 cait            select * from items;
15:10 cait            9... something
15:10 cait            just below 1000 items
15:09 cait            i put the query in
15:09 cait            it as on a fresh sample database
15:09 cait            oleonard: i think it soudl be possible to replicate
15:09 oleonard        Do you know what the total result count of your test query was?
15:08 huginn`         Bug https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29186 enhancement, P5 - low, ---, oleonard, Failed QA , Move reports result limit menu into toolbar
15:08 oleonard        I can add the question to the bug report if you don't have time, but I'm curious about Bug 29186
15:08 cait            kind of :)
15:04 wahanui         oleonard: sorry...
15:04 oleonard        hush, wahanui
15:04 wahanui         it has been said that cait around is cait cait1 cait2 cait3 cait4 cait5
15:04 oleonard        cait around?
14:57 domm            eythian: might do (esp. if koha-elasticsearch is the "official" way to interact with ES/rebuild_elasticsearch.pl)
14:43 Joubu           (ask a question on #koha and you end up with 2 patches to write and 1 to SO :D)
14:42 Joubu           +or a column of authid from auth_header, then index biblios or authorities, but not both.
14:42 Joubu           +Read a csv file created with a sql query, the csv must contain a column of biblionumber from biblios
14:42 Joubu           +
14:42 Joubu           +=item B<-f|--file>
14:42 huginn`         Bug https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20384 enhancement, P5 - low, ---, axel.amghar, Needs Signoff , Elasticsearch rebuild script improvements - options for indexing
14:42 Joubu           domm: see also bug 20384
14:37 eythian         domm: or update koha-elasticsearch to support them :)
14:36 domm            ok, so it's better to use search_tools/rebuild_elasticsearch.pl directly instead via the koha-elasticsearch wrapper, because the latter does not provide all the command line opts
14:33 ashimema        oh.. I hadn't realised that had been reverted
14:32 ashimema        ok, well that too
14:32 ashimema        lol
14:30 Joubu           fix that first then :D
14:30 huginn`         Bug https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28585 major, P5 - low, ---, tomascohen, ASSIGNED , Cannot search on date fields
14:30 Joubu           ashimema: bug 28585
14:29 * ashimema      wants to add date range handling to that list
14:29 eythian         oh, not err
14:29 ashimema        but I can't actually see any examples of using that
14:29 eythian         err
14:29 ashimema        and we default to 'contains'
14:29 eythian         domm: you could also use --desc to index in reverse order and just abort it once the first batch or so is indexed
14:29 ashimema        it looks like we support 'contains', 'starts_with', 'ends_with' and 'exact'
14:28 ashimema        reading koha-tmpl/intranet-tmpl/prog/js/datatables.js
14:28 Joubu           {attr: "value"} ?
14:28 ashimema        yeah.. as an example
14:28 Joubu           ashimema: exact match then?
14:26 Joubu           domm: misc/search_tools/rebuild_elasticsearch.pl
14:26 ashimema        the code looks like i support it.. but I have no idea how to actually use it
14:26 ashimema        anyone happen to know of anywhere we do anything other than a `like` search using the new ajax datatables wrapper?
14:25 eythian         wow, that looks like my writing
14:25 domm            Joubu: I don't see that in koha-elasticsearch --help
14:25 Joubu           83 repeated.
14:25 Joubu           82 Only index the supplied biblionumber, mostly for testing purposes. May be
14:25 Joubu           81
14:25 Joubu           80 =item B<-bn|--bnumber>
14:24 Joubu           there is a --bnumber
14:24 cait            hm I migh thave some ES questions for a workshop next week... just a warning to anyone :)
14:24 Joubu           oops, ES reindex script does not have it
14:24 domm            but I can't find any hints on how to do that
14:24 Joubu           --where?
14:24 domm            I can of course rebuild the whole index, but just indexing some books seems faster / smarter...
14:23 domm            Our (dev) cluster switched to read-only mode (not sure yet why), so some books that have been catalogued can not now be found (because they are not in the ES index)
14:22 domm            Is it possible to only index some biblios via elasticsearch?
13:47 * oleonard-away biab
13:08 koha-jenkins    Project Koha_Master build #1784: SUCCESS in 1 hr 3 min: https://jenkins.koha-community.org/job/Koha_Master/1784/
12:47 koha-jenkins    Project Koha_Master_D9 build #1794: NOW UNSTABLE in 41 min: https://jenkins.koha-community.org/job/Koha_Master_D9/1794/
12:41 Joubu           heh, yes :)
12:41 koha-jenkins    Project Koha_19.11_U_Stable build #54: UNSTABLE in 25 min: https://jenkins.koha-community.org/job/Koha_19.11_U_Stable/54/
12:40 oleonard        I hope that's on the testing server!!
12:40 Joubu           great comments :D
12:40 Joubu           https://snipboard.io/jmyv09.jpg
12:38 oleonard        That would be ideal
12:38 Joubu           we should have a "create from" feature from this search result. It will create the biblio and the subscription.
12:37 Joubu           results from a research on Mana-KB
12:37 Joubu           - create datatable in mana-subscription-search-result.inc to show
12:36 Joubu           maybe there is something about it in the comments
12:36 Joubu           did you read the original bug report?
12:35 Joubu           oleonard: ok, I understood your question, finally.
12:32 koha-jenkins    Project Koha_19.11_U21 build #1: SUCCESS in 43 min: https://jenkins.koha-community.org/job/Koha_19.11_U21/1/
12:30 oleonard        Maybe the standalone Mana search results should somehow link to a new bibliographic record creation. Not sure how that would work.
12:29 oleonard        It's a hidden field which is buggy. I have a patch almost ready.
12:29 Joubu           also noticed a red cross on the form, suppose to be a date picker there?
12:28 oleonard        So you have to add a record with a valid ISSN, then start to add the subscription, then "find" the subscription in Mana, then import the details.
12:28 Joubu           If I remove this "search_only" flag I see the "import" button but it does nothing..
12:27 oleonard        I guess the problem is that you can't create a subscription without a bib record
12:27 oleonard        Joubu: Yes, the buttons are shown when the subscription add process shows mana results.
12:27 koha-jenkins    Project Koha_Master_U20 build #216: FIXED in 56 min: https://jenkins.koha-community.org/job/Koha_Master_U20/216/
12:27 wahanui         Congratulations!
12:27 koha-jenkins    Yippee, build fixed!
12:26 oleonard        Joubu: Are the actions only shown when Mana search results are shown on the subscription add page? It's been ages since I've tested that process.
12:25 Joubu           oleonard: mana - that's weird. There is a "search_only" flag that is passed to the template and it hides the actions column
12:17 eythian         I hear they don't guard the nachtwacht during the day!
12:16 oleonard        As in let's make [off] with some valuable works of art
12:15 koha-jenkins    Project Koha_Master_U_Stable build #288: FIXED in 33 min: https://jenkins.koha-community.org/job/Koha_Master_U_Stable/288/
12:15 wahanui         Congratulations!
12:15 koha-jenkins    Yippee, build fixed!
12:15 tcohen          [off] as in let's organize a crime haha
12:15 koha-jenkins    Project Koha_Master_D10_MDB_Latest build #705: FIXED in 50 min: https://jenkins.koha-community.org/job/Koha_Master_D10_MDB_Latest/705/
12:15 wahanui         Congratulations!
12:15 koha-jenkins    Yippee, build fixed!
12:15 eythian         as in, the cheese smells like it's [off] ?
12:15 tcohen          gentle suggestion, you should be using [off] :-P
12:14 eythian         Actually, I have been thinking of subscribing to a kunstlening thing, just to keep it interesting
12:13 marcelr         those vermeers have the right dimensions
12:12 eythian         haha
12:12 marcelr         schilderij van de zaak rather than a fietsenregeling
12:11 eythian         I do have a blank space on my wall that could be used to put something up, should you just need to free up a little space. I know it's a pretty small building you've got there.
12:08 marcelr         we should sell some paintings
12:07 marcelr         lol
12:07 oleonard        We'd all like a slice of that sweet sweet Rijksmuseum money :D
12:07 marcelr         hi eythian still looking for money :)
12:06 eythian         I mean, I do live about 10 minutes by bike from it, so it'd be pretty ideal really!
12:06 eythian         unless marcelr is hiring for the Rijksmuseum at an amount that'll also let me keep paying my mortgage ;)
12:05 koha-jenkins    Project Koha_Master_U21 build #3: FIXED in 40 min: https://jenkins.koha-community.org/job/Koha_Master_U21/3/
12:05 wahanui         Congratulations!
12:05 koha-jenkins    Yippee, build fixed!
12:05 koha-jenkins    Project Koha_Master build #1783: FIXED in 1 hr 3 min: https://jenkins.koha-community.org/job/Koha_Master/1783/
12:05 wahanui         Congratulations!
12:05 koha-jenkins    Yippee, build fixed!
12:05 eythian         heh, would that I had the mental bandwidth/free time to do that these days :)
12:02 cait            eythian: we just want to give you reason to hang out with us more agian :)
11:48 koha-jenkins    Project Koha_Master_D11 build #422: FIXED in 56 min: https://jenkins.koha-community.org/job/Koha_Master_D11/422/
11:48 wahanui         Congratulations!
11:48 koha-jenkins    Yippee, build fixed!
11:45 oleonard        Good point Filiosp
11:42 Filiosp         I prefer the muppet show mana mana
11:42 koha-jenkins    Project Koha_Master_D11_CPAN build #454: FIXED in 32 min: https://jenkins.koha-community.org/job/Koha_Master_D11_CPAN/454/
11:42 wahanui         Congratulations!
11:42 koha-jenkins    Yippee, build fixed!
11:39 oleonard        mana-mana-mana-mana-mana-mana-mana-mana BATMAN
11:30 koha-jenkins    Project Koha_Master build #1782: NOW UNSTABLE in 1 hr 12 min: https://jenkins.koha-community.org/job/Koha_Master/1782/
11:28 oleonard        I don't understand the purpose of the "Search on Mana" page which returns a list that you can't do anything with.
11:28 oleonard        Anyone around who is familiar with Mana and serials?
11:27 oleonard        eythian: That's the idea!
11:25 koha-jenkins    Project Koha_Master_D10_My8 build #669: FIXED in 50 min: https://jenkins.koha-community.org/job/Koha_Master_D10_My8/669/
11:25 wahanui         Congratulations!
11:25 koha-jenkins    Yippee, build fixed!
11:25 eythian         tcohen: very unfair to volunteer me when I'm on holiday :)
11:24 koha-jenkins    Project Koha_Master_D12 build #47: FIXED in 49 min: https://jenkins.koha-community.org/job/Koha_Master_D12/47/
11:24 wahanui         Congratulations!
11:24 koha-jenkins    Yippee, build fixed!
11:16 huginn`         oleonard: Error: I could not find a valid location for: tcohen
11:16 oleonard        @wunder tcohen
11:16 oleonard        Good morning tcohen
11:14 tcohen          hola #koha
11:01 koha-jenkins    Project Koha_Master_D9 build #1793: STILL FAILING in 21 min: https://jenkins.koha-community.org/job/Koha_Master_D9/1793/
10:52 koha-jenkins    Project Koha_Master_U_Stable build #287: STILL UNSTABLE in 58 min: https://jenkins.koha-community.org/job/Koha_Master_U_Stable/287/
10:40 koha-jenkins    Project Koha_Master_U20 build #215: UNSTABLE in 1 hr 5 min: https://jenkins.koha-community.org/job/Koha_Master_U20/215/
10:34 huginn`         News from kohagit: Bug 29052: Make consistent use of spans and div with hint class <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=ecd9bd421ec3a0f7693b0b6ebeaf295896629151>
10:34 huginn`         News from kohagit: Bug 27287: Make note fields from orders history searchable <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=b5b6dc9e5bbeea308997546d62e595fe97a4077d>
10:34 huginn`         News from kohagit: Bug 16446: Add ability to add patrons to list by borrowernumber <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=ad1d734e548809ab7534545a1b2c7c936ae542eb>
10:34 huginn`         News from kohagit: Bug 16446: (follow-up) Fix translation and adjust radio buttons <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=d20e800ac29f47daa701e80e1e57beff1958dcf3>
10:34 huginn`         News from kohagit: Bug 28180: Fix bug with first image does not exist <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=1916c644808577beb3170d642f93b456bfcc5c56>
10:34 huginn`         News from kohagit: Bug 28867: Use Bootstrap button menu and modal for adding patrons to lists <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=f64cc6b472e94afc7ee1e40ffb1a5555ffba56cb>
10:34 huginn`         News from kohagit: Bug 28084: Standardize: Cardnumber, Card number, Card <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=d0ab4f292d128f5fe1ab0315cf8bcbc867afee81>
10:34 huginn`         News from kohagit: Bug 29231: Add missing Flatpickr to inventory page <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=a2a8f1f426fd40571e0866760fdb5f970782e043>
10:34 huginn`         News from kohagit: Bug 29244: Move message inside dialog and remove width <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=813ca7369e400af937da95cf6bb66449493070a8>
10:34 huginn`         News from kohagit: Bug 29244: Add dialog class where missing in print-notices.tt <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=b4d9d367ba067f41c9cb9e1c19808b138ca2cb86>
10:34 huginn`         News from kohagit: Bug 27287: (QA follow-up) Unit tests <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=da13a79d57eac0321162116fde3b25cf4d089d9a>
10:34 huginn`         News from kohagit: Bug 28867: (follow-up) Make error message translatable <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=417f03142aa6b39ae094e7e3e8fd8eb91b73f1ff>
10:34 huginn`         News from kohagit: Bug 28180: Remove adlibris conflict <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=52fdbd9d6bcf44bcc9c3f98e62eeb030c3ccdc27>
10:34 huginn`         News from kohagit: Bug 29200: Compiled CSS <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=1d2b148e16b3240aa241a5c97450e758e8f0aecb>
10:34 huginn`         News from kohagit: Bug 29298: Add 'Managing library' column to table settings for histsearch <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=02ebc90e4b1e0f59a2d64204da0054e4c3b55dde>
10:34 huginn`         News from kohagit: Bug 27287: Add new columns to the table settings yml file <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=e5d5623ee26d9fdcee13aea87a2ccbdd01ee7876>
10:34 huginn`         News from kohagit: Bug 29200: DBRev 21.06.00.036 <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=e88ee4c1c021fc40ead2fdb5b92f346a7512ef9c>
10:34 huginn`         News from kohagit: Bug 29244: Compiled CSS <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=2b15842460dfb3d28478bf16723a9ba6f732bb85>
10:34 huginn`         News from kohagit: Bug 28867: Compiled CSS <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=0d11ec2ab1f20bda6445ed853ef15a16618daff2>
10:34 huginn`         News from kohagit: Bug 29052: Compiled CSS <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=aaf4d7e0e92c12aad361992707d825a45108b0d0>
10:29 oleonard        He posted this a couple of days ago: https://snipboard.io/BGoRHr.jpg
10:28 oleonard        I connected with Sher on LinkedIn and sent a message asking him to update the Koha mailing list about KohaCon
10:18 koha-jenkins    Project Koha_Master_D11_CPAN build #453: UNSTABLE in 1 hr 30 min: https://jenkins.koha-community.org/job/Koha_Master_D11_CPAN/453/
10:14 koha-jenkins    Project Koha_Master_D10_MDB_Latest build #704: UNSTABLE in 40 min: https://jenkins.koha-community.org/job/Koha_Master_D10_MDB_Latest/704/
09:54 koha-jenkins    Project Koha_Master_U_Stable build #286: UNSTABLE in 32 min: https://jenkins.koha-community.org/job/Koha_Master_U_Stable/286/
09:42 koha-jenkins    Project Koha_Master_D11 build #421: UNSTABLE in 56 min: https://jenkins.koha-community.org/job/Koha_Master_D11/421/
09:37 koha-jenkins    Project Koha_Master_U21 build #2: FAILURE in 3 min 6 sec: https://jenkins.koha-community.org/job/Koha_Master_U21/2/
09:34 koha-jenkins    Project Koha_Master build #1781: FAILURE in 35 min: https://jenkins.koha-community.org/job/Koha_Master/1781/
09:34 koha-jenkins    Project Koha_Master_D10_My8 build #668: UNSTABLE in 49 min: https://jenkins.koha-community.org/job/Koha_Master_D10_My8/668/
09:33 koha-jenkins    Project Koha_Master_D12 build #46: UNSTABLE in 48 min: https://jenkins.koha-community.org/job/Koha_Master_D12/46/
09:17 ashimema        some time this morning
09:17 ashimema        whilst it's fresh in the brain I'll submit the 22.05 changes
09:17 ashimema        sorry I missed it.. ☹️
09:16 Joubu           thx ashimema!
09:12 ashimema        and compared to the wiki page.. all solid
09:12 ashimema        looks good, done a quick test and am happy with it.
09:12 ashimema        done
08:58 koha-jenkins    Project Koha_Master_D9 build #1792: FAILURE in 9 min 49 sec: https://jenkins.koha-community.org/job/Koha_Master_D9/1792/
08:58 Joubu           https://gitlab.com/koha-community/release-tools/-/merge_requests/27 < that one
08:58 Joubu           not the ktd one!
08:57 Joubu           ashimema: can you approve the merge request?
08:56 Joubu           tcohen: https://gitlab.com/koha-community/koha-testing-docker/-/merge_requests/267
08:56 marcelr         apparently nobody did :)
08:56 ashimema        my bad.. I should have spotted it
08:55 Joubu           oops
08:55 Joubu           https://tree.taiga.io/project/koha-ils/task/38
08:54 Joubu           indeed
08:50 ashimema        humm.. you don't.. but all the maint releases should have been using it for the last 6 months
08:49 Joubu           it will be needed to build the 21.11 release notes
08:49 Joubu           ashimema: I don't have it, but it's not needed yet
08:48 * fridolin      waves and reaches the bedroom
08:47 ashimema        https://gitlab.com/koha-community/release-tools/-/merge_requests/27/diffs
08:47 ashimema        I see the merge request from tuxayo.. but it appears I never actually looked at it before
08:46 ashimema        is the 21.11 team only on your local checkout or am I going completely mad?
08:44 huginn`         News from kohagit: Bug 25030: Implement IncludeSeeFromInSearches with Elasticsearch <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=2c0d09e9936c318acc6809d0c54f277565749f95>
08:44 huginn`         News from kohagit: Bug 28079: Set focus to search box field when adding an order to basket <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=73a541e19c535cc6629e9b6dbac7598f8d434db1>
08:44 huginn`         News from kohagit: Bug 29225: Don't hide subgroup filter on pag load <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=751cae0ef8214343379aaf5d8991bd11f8f00905>
08:44 huginn`         News from kohagit: Bug 29216: Correct --where documentation in update_patrons_category.pl <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=a0725b12a8d29cc91253b2ce5a78711010822389>
08:44 huginn`         News from kohagit: Bug 29261: (bug 15812 follow-up) Fix translation issue in include file <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=47528bffe26123b8d78d2639b71947a849e6d92b>
08:44 huginn`         News from kohagit: Bug 25030: (QA follow-up) Add POD <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=df63fe79e0e4cff1dac624e53b21c661c84fd41c>
08:44 huginn`         News from kohagit: Bug 29221: Correctly display refund info <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=4aaf383e527ff4b165696e8dd982daf82abb6ff2>
08:44 huginn`         News from kohagit: Bug 29215: (bug 3137 follow-up) Fix guarantor block toggle <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=b5da108e350455e24c49dfd5679cc6d2f105b5f6>
08:44 huginn`         News from kohagit: Bug 25030: (QA follow-up) Fix tests <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=515a596fb95751d8cb1fb890b45e5112487e0dd4>
08:44 huginn`         News from kohagit: Bug 29271: Fix cash register report results <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=b29a7148a9123fec08277d91ba7c2d4a75c34db6>
08:44 huginn`         News from kohagit: Bug 29279: Don't sort holds ratio numeric columns as 'natural' <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=8e1b1f3d156dc2a7f11fe3d349d1802cbbf2a388>
08:44 huginn`         News from kohagit: Bug 29271: (QA follow-up) Add missing filter <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=388611ef78b27e376765b5fef5c94254c773d60e>
08:44 huginn`         News from kohagit: Bug 29271: (QA follow-up) Fetch and send descriptions to template <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=0af6f31dbef58d6d72b0c71a81a6a30e1d093d10>
08:44 huginn`         News from kohagit: Bug 17600: Fix imports for svc/letters/preview <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=9d858dc8ea95dd5ddcaa98f9f69a537c115cca0a>
08:44 huginn`         News from kohagit: Bug 29279: Use class for targets <https://git.koha-community.org/gitweb/?p=koha.git;a=commitdiff;h=85f6781562ef4cbe13eb0d94b97bddd4897f11f5>
08:43 Joubu           so yes, they are in 2 places
08:43 Joubu           there is the team for the about page and the one for the release notes
08:42 ashimema        I don't see 21.11 listed in the config
08:42 ashimema        ooh.. do we already pull the team from koha Joubu?
08:41 marcelr         Joubu++
08:41 Joubu           https://gitlab.com/koha-community/release-tools/-/commit/2f88180bfc771d8524e0bc0f9e3d0fdd115c76ec
08:41 ashimema        nice to see it fixed so quick
08:41 marcelr         whats in a name
08:41 ashimema        cool
08:39 marcelr         no M but an m
08:39 Joubu           yes
08:39 marcelr         Rijksmuseum
08:39 Joubu           no
08:39 marcelr         no
08:39 Joubu           that?
08:39 Joubu           +  rijksmuseum.nl: RijksMuseum
08:39 Joubu           -  rijksmuseum.nl: Rijks Museum
08:39 marcelr         just like it was before 18.11
08:38 Joubu           I am fixing it in the release-tools
08:38 Joubu           996   rijksmuseum.nl: RijksMuseum
08:38 marcelr         yeah fix it; it should be Rijksmuseum in one word
08:37 marcelr         i wont go there lol
08:37 marcelr         o it is in the release tools
08:37 marcelr         np
08:37 marcelr         i'll add a separate patch for it now I am at it
08:36 ashimema        we can totally fix that whilst we add the next team marcelr 🙂
08:35 Joubu           fridolin: looks like you are volunteering, thanks!
08:35 marcelr         the space there ignores spelling and is more of a design thing
08:34 marcelr         this line is arguable btw: rijksmuseum.nl: Rijks Museum
08:33 fridolin        other points may be more important
08:33 fridolin        bah it is only done twice per year
08:31 marcelr         :)
08:31 marcelr         and they beat dortmund btw
08:31 ashimema        then we have just one place to maintain that particular list
08:31 marcelr         ajax is your friend
08:31 ashimema        perhaps we can do that next step next cycle 🙂
08:30 ashimema        another one of those projects that got 95% there before I forgot where I was going.. Joubu's done a great job of keeping things moving forward there though..
08:30 ashimema        I think
08:30 ashimema        the eventual idea was to make the release tools use the one in koha
08:30 marcelr         yes but one copy is surely better than two
08:29 ashimema        I think the wiki is sorta helpful to see the full history.. we don't display that anywhere in Koha.. even though we do have it in the code in that doc file
08:29 fridolin        ich
08:29 fridolin        ah indeed
08:29 fridolin        maybe wiki page is not necessary
08:29 ashimema        being the second location
08:29 ashimema        https://gitlab.com/koha-community/release-tools/-/blob/master/etc/config.yaml
08:28 ashimema        it's currently still in two ☹️
08:28 ashimema        my hope was to just maintain it in one place..
08:28 ashimema        yeah.. I kinda just took it on.. need to properly document it
08:27 ashimema        https://git.koha-community.org/Koha-community/Koha/src/branch/master/docs/teams.yaml
08:27 marcelr         seems like we forgot to make an action for it
08:27 ashimema        it's all in the yaml file these days..
08:26 marcelr         no just asking how that goes now; i did it for years
08:24 ashimema        feel free to take that on if you fancy 😉
08:24 ashimema        not yet.. thought I'd do a few QA's first.
08:22 marcelr         ashimema: are you also updating about in Koha ?
08:12 ashimema        Koha moves fast
08:11 ashimema        I can't believe it's already 18 months since I was RM!
08:11 ashimema        not a bad looking team aye
08:10 magnuse         looks promising :-)
08:10 magnuse         ashimema++
08:08 ashimema        https://wiki.koha-community.org/wiki/Release_Teams#21.11_Team updated with yesterdays results
08:05 magnuse         \o/
07:39 marcelr         o/
07:37 ashimema        morning'
07:25 Filiosp_        makes sense
07:24 cait            ... and a lot of the special libaries especially have their own
07:24 cait            lcc and ddc are not much of a thing here, but we have some that have originated here
07:24 Filiosp_        Depending on the size mostly
07:24 Filiosp_        ah, here in Cyprus we have both systems in different libraries
07:24 cait            well, I am in Germany
07:23 Filiosp_        interesting, i only knew of these 2 systems being used tbh
07:23 cait            Filiosp_: here, almost every library seems to have their own classification
07:23 cait            you would probably not even be the first :)
07:22 Filiosp_        maybe i'll just do the first hybrid-library of both LCC and DDC sections xD
07:22 Filiosp_        If 100% of records were in both LCC and DDC databases I think it would be possible, but I have no idea how many of those books were done manually even
07:21 Filiosp_        yea good idea
07:21 cait            that can speed up such operations
07:21 Filiosp_        Yeah, I imagined it would be only possible with some really good intricate coding or something, and still not a perfect solution, and in any case I'll need to re-label them physically
07:20 cait            with links to "edit item"
07:20 cait            what i'd probably do for sure is make a report
07:20 cait            i mean copy from an existing item to the new item...
07:20 cait            but I don't think it's possible with the tools in Koha
07:20 Filiosp_        yeah thought so :( but since I have some time until the 10k come I thought id snoop around
07:20 cait            if there are already items on the records from your branch it might be possible to copy them into the new libraries with sql + reindexing
07:19 Filiosp_        Since we use the same platform I have access to the records
07:19 cait            i think batch doing that might be difficult
07:19 Filiosp_        yes I am going to receive them physically, though they are already listed in the system. So yes I mostly need to change their call numbers from Dewey Decimal to Library of Congress :p
07:17 cait            or are you taking them in with the existing classification?
07:17 cait            are you changing the itemcallnumbers?
07:17 cait            I am still not quite sure where the problem is :)
07:13 Filiosp_        I assumed that not all the records will be available on both DDC and LCC databases, thus a full conversion won't be possible
07:12 Filiosp_        And not sure if there's a mass-edit kind of function that could be used
07:12 Filiosp_        I am about to receive books from a different branch of our college, but we use the same Koha client. They have a lot of books in Dewey Decimal system, but we use Library of congress. And I'm trying to see if there's a different way rather than doing them all manually one by one
07:11 wahanui         the question is probably a bit general
07:11 cait            Filiosp_: what is the question?
07:08 Filiosp_        Not sure if there are any other forums, and I've checked around though not much hope
07:07 Filiosp_        I am about to receive a lot of books already in the system from a different branch of our library, and I don't know how manual this conversion will have to be. (We are using LCC here)
07:07 Filiosp_        Hello, does anybody know if there's a way to Mass Edit Koha Bibliographic Records from Dewey Decimal to Library of Congress classification?
06:54 marcelr         hi alex_a
06:51 alex_a          Bonjour
06:38 marcelr         hi #koha
06:37 koha-jenkins    Project Koha_20.11_D9 build #146: SUCCESS in 1 hr 13 min: https://jenkins.koha-community.org/job/Koha_20.11_D9/146/
06:32 reiveune        hello
06:17 koha-jenkins    Project Koha_20.11_U21 build #1: SUCCESS in 54 min: https://jenkins.koha-community.org/job/Koha_20.11_U21/1/
06:13 fridolin        i got Gitea: Internal Server Error on push
06:13 koha-jenkins    Project Koha_20.11_U_Stable build #48: SUCCESS in 49 min: https://jenkins.koha-community.org/job/Koha_20.11_U_Stable/48/
06:13 fridolin        problem with https://git.koha-community.org/Koha-community/Koha.git ?
06:08 koha-jenkins    Project Koha_20.11_D11 build #169: SUCCESS in 53 min: https://jenkins.koha-community.org/job/Koha_20.11_D11/169/
05:46 koha-jenkins    Project Koha_20.11_U18 build #133: SUCCESS in 43 min: https://jenkins.koha-community.org/job/Koha_20.11_U18/133/
05:38 koha-jenkins    Project Koha_20.11_U20 build #143: SUCCESS in 36 min: https://jenkins.koha-community.org/job/Koha_20.11_U20/143/
05:24 koha-jenkins    Project Koha_20.11_U16 build #123: SUCCESS in 1 hr 8 min: https://jenkins.koha-community.org/job/Koha_20.11_U16/123/
05:24 koha-jenkins    Project Koha_20.11_D10 build #152: SUCCESS in 1 hr 6 min: https://jenkins.koha-community.org/job/Koha_20.11_D10/152/
05:22 koha-jenkins    Project Koha_20.11_D9 build #145: SUCCESS in 1 hr 3 min: https://jenkins.koha-community.org/job/Koha_20.11_D9/145/
05:15 koha-jenkins    Project Koha_20.11_U_Stable build #47: SUCCESS in 59 min: https://jenkins.koha-community.org/job/Koha_20.11_U_Stable/47/
05:02 koha-jenkins    Project Koha_20.11_U20 build #142: SUCCESS in 44 min: https://jenkins.koha-community.org/job/Koha_20.11_U20/142/
05:01 koha-jenkins    Project Koha_20.11_U18 build #132: SUCCESS in 43 min: https://jenkins.koha-community.org/job/Koha_20.11_U18/132/
04:27 fridolin        mtj ++ thanks for saving the cycle 📦
03:32 tuxayo          Thanks for your work mtj++
03:32 tuxayo          mtj: good because you had been volunteered by default 😋
03:16 mtj             hi tuxayo, yep, ok with me :)