← Previous day | Today | Next day → | Search | Index
All times shown according to UTC.
Time | Nick | Message |
---|---|---|
00:42 | fridolin joined #koha | |
03:49 | alohabot | 🎁 🎃 Koha '21.05.x' packages pushed to 'koha-staging' repo 🍢🍄🥟 |
04:09 | koha-jenkins | Project Koha_21.05_U18 build #186: SUCCESS in 34 min: https://jenkins.koha-community[…]ha_21.05_U18/186/ |
04:13 | Project Koha_21.05_U20 build #197: SUCCESS in 39 min: https://jenkins.koha-community[…]ha_21.05_U20/197/ | |
04:27 | Project Koha_21.05_D10 build #269: UNSTABLE in 53 min: https://jenkins.koha-community[…]ha_21.05_D10/269/ | |
04:35 | Project Koha_21.05_D11 build #221: SUCCESS in 1 hr 3 min: https://jenkins.koha-community[…]ha_21.05_D11/221/ | |
04:47 | Project Koha_21.05_U16 build #196: STILL UNSTABLE in 1 hr 12 min: https://jenkins.koha-community[…]ha_21.05_U16/196/ | |
04:55 | Yippee, build fixed! | |
04:55 | Project Koha_21.05_D9 build #191: FIXED in 42 min: https://jenkins.koha-community[…]oha_21.05_D9/191/ | |
04:55 | wahanui | Congratulations! |
05:03 | reiveune joined #koha | |
05:03 | Oak joined #koha | |
05:03 | reiveune | hello |
05:25 | koha-jenkins | Yippee, build fixed! |
05:25 | Project Koha_21.05_D12 build #123: FIXED in 57 min: https://jenkins.koha-community[…]ha_21.05_D12/123/ | |
05:25 | wahanui | Congratulations! |
05:28 | koha-jenkins joined #koha | |
05:31 | ashimema | Morning |
05:56 | * dcook | waves |
05:56 | hopes other people look at bug 27421 too | |
05:57 | huginn | Bug https://bugs.koha-community.or[…]_bug.cgi?id=27421 enhancement, P5 - low, ---, jonathan.druart+koha, Signed Off , Porting tools/stage-marc-import.pl to BackgroundJob |
05:57 | paxed | arrrgh. |
05:57 | dcook | good morning paxed :) |
05:58 | paxed | i was wondering how come after_biblio_action delete hook didn't work. |
05:58 | of course i can't find the biblio at that point anymore, it's already been deleted. | |
05:59 | before_biblio_action hooks when? | |
05:59 | (there's no way to get the biblio component parts once the biblio has been deleted) | |
06:01 | fridolin joined #koha | |
06:03 | dcook | paxed: That sounds frustrating :/ |
06:03 | I think I actually had the same issue now that I think about it.. | |
06:03 | paxed | it is |
06:03 | dcook | I ended up not using plugins as a result.. heh |
06:04 | paxed | there's no sense keeping the component parts once the host has been deleted |
06:05 | (although i think some of the scientific libraries do have host records that should not have their components deleted...) | |
06:05 | dcook | I was just trying to think of exceptions heh |
06:05 | paxed | but afaik, all normal libraries at least over here just want the components gone. |
06:05 | dcook | Hmm actually it looks like I am using "_after_biblio_action_hooks"... |
06:06 | Maybe I have a bug :o | |
06:07 | paxed | if you look at DelBiblio: |
06:07 | $error = _koha_delete_biblio( $dbh, $biblionumber ); | |
06:07 | _after_biblio_action_hooks({ action => 'delete', biblio_id => $biblionumber }); | |
06:07 | so i don't know what use the biblio_id is at that point+ | |
06:07 | ? | |
06:08 | i guess you could query the marc record from deletedbiblios | |
06:08 | dcook | Well in my case it would be to find that biblionumber in a third-party system to delete it too |
06:08 | I would've sworn that I tested deletions but yeah I think my code might not work either.. | |
06:08 | paxed | if all you're passing the biblionumber, then it works, sure |
06:09 | dcook | Yeah nah I'm passing the whole $biblio object |
06:09 | paxed | (or, maybe, i don't know your code ;) |
06:09 | dcook | Or at least I thought I was haha |
06:09 | Crap... | |
06:09 | arrrgh. | |
06:09 | Hehe | |
06:09 | paxed | oh hey, same reaction :D |
06:10 | jajm joined #koha | |
06:10 | dcook | Yeah I'm always glad that we can grump together |
06:10 | I was going to use the next 45 minutes differently but oh well | |
06:11 | paxed | easy solution would be just to swap those two lines in DelBiblio |
06:13 | but better would be the before_biblio_action hook ;) | |
06:13 | dcook | I was wondering where before_biblio_action hook is even.. |
06:13 | But yeah in my case I just need to pass the biblio_id and I'll be fine I think | |
06:13 | marcelr joined #koha | |
06:13 | marcelr | hi #koha |
06:13 | dcook | hola marcelr |
06:13 | marcelr | hi dcook |
06:13 | wahanui | hi dcook are you around? |
06:13 | dcook | heh |
06:16 | jajm joined #koha | |
06:21 | cait joined #koha | |
06:23 | cait1 joined #koha | |
06:25 | cait1 | new strings on Pootle today |
06:26 | tuxayo: if you still want the translation patch, Bernardo will have to rerun the scripts | |
06:26 | but it will untranslate a lot, so time for translators should not be too short (with complete langauges) | |
06:27 | paxed | ugh. i guess i could get the deleted biblio marc, parse it, and search the component biblios that way, duplicating koha core code. |
06:32 | dcook | paxed: Thanks for that conversation. My deletions are definitely failing. Don't know why I didn't notice before... |
06:33 | paxed: I mean couldn't you search in the Zebra if you're using $w <biblionumber> in the 773? | |
06:33 | Or am I misunderstanding? | |
06:35 | paxed | dcook: i guess. it would've just been so nice to just do $biblio->get_marc_components(999) to get the components |
06:35 | dcook | Hmm that is sounding familiar.. |
06:36 | Yeah sorry it's hard for your situation :( | |
06:36 | I'm hoping mine should be sorted out soon.. | |
06:38 | paxed | dcook: i'll probably just grab the marc from deletedbiblio_metadata, and use the code we had locally before bug 11175 |
06:38 | huginn | Bug https://bugs.koha-community.or[…]_bug.cgi?id=11175 new feature, P5 - low, ---, martin.renvoize, RESOLVED FIXED, Show the parent record's component parts in the detailed views |
06:38 | dcook | We gotta do what we gotta do hey |
06:40 | MarkHofstetter joined #koha | |
06:50 | paxed | hmm. pity i can't do Koha::Deletedbiblios->find($biblionumber) |
06:51 | alex_ joined #koha | |
06:53 | alex_ | Bonjour |
06:53 | wahanui | bidet, alex_ |
06:54 | dcook | I feel like I spend my life waiting for /kohadevbox/misc4dev/populate_db.pl... |
06:55 | paxed: Write a patch as they say heh | |
06:55 | * dcook | looks at the 5 minutes remaining on his work clock |
06:55 | Joubu | it's actually the DROP DB that takes quite a lot of time |
06:55 | dcook | Surely I can fix all the bugs in 5 minutes... |
06:55 | Joubu: Hmm interesting! | |
06:56 | paxed | dcook: we're putting out fires - updated koha last week |
06:56 | dcook | And my koha-testing-docker is up so time for me to work fast and furiously.. |
06:56 | Joubu | paxed: why can't you Koha::Deletedbiblios->find? |
07:00 | paxed | Joubu: "Can't locate Koha/Deletedbiblios.pm" |
07:00 | Joubu | Koha::Old::Biblios |
07:01 | dcook | jaxed: _after_item_action_hooks looks like it might be worse.. |
07:01 | lds joined #koha | |
07:01 | dcook | Actually.. |
07:02 | paxed | Joubu: ugh. talk about consistency ... |
07:03 | Joubu | paxed: ls Koha/Old/ and you will see consistency |
07:06 | paxed | Plugin error (Delete Biblio Components): The method Koha::Old::Biblio->get_marc_components is not covered by tests! |
07:06 | *kaboom* | |
07:10 | marcelr | @later tell khall please try again on 30678 |
07:10 | huginn | marcelr: The operation succeeded. |
07:19 | marcelr | Joubu: working on 30822 ? |
07:19 | Joubu | marcelr: no, but I let a question |
07:20 | comment 10 | |
07:20 | marcelr | ah i see |
07:50 | Joubu how can I see whats background job doing ? i just am importing one record, it takes forever and one CPU goes close to 100% | |
07:50 | Zebra indexing | |
07:50 | nothing in logs | |
07:52 | Joubu | you cannot |
07:52 | well, you can strace | |
07:52 | I haven't tried with zebra | |
07:56 | magnuse | \o/ |
08:08 | jzairo_ joined #koha | |
08:27 | ashimema | perhaps add a _before_biblio_action_hook submission to koha paxed? |
08:29 | marcelr | ugh my $port = '61613'; |
08:35 | paxed | ashimema: istr there alrady was a bug for that, but couldn't find it |
08:44 | Joubu | marcelr: it's the default value, you can overwrite with the config |
08:45 | (but I guess you noticed it already) | |
08:47 | marcelr | yes i just coughed ;) |
08:48 | but i was looking in the wrong place | |
08:48 | the transition between old background and forking and the new stuff makes it hard | |
08:49 | ashimema | hmm, not that I can see paxed ☹️ |
08:49 | https://splitter2.koha-community.org/files | |
08:49 | it would be a fairly trivial hook to add though.. and would be nice to have given we're trying to do the same to a few other placed | |
08:58 | marcelr | ashimema: did you test 30822 with zebra too ? |
08:59 | i need to debug manage_marc_import all over to see whats happening now ? | |
09:04 | ah it works again :) | |
09:06 | batchcommit just failed silently on a wrong branchcode in the imported items, and the js kept polling for the status | |
09:06 | thats bad | |
09:07 | paxed | there doesn't seem to be a commandline tool to handle plugins, apart from install_plugins.pl? |
09:33 | MarkHofstetter joined #koha | |
09:47 | Joubu | marcelr: what about bug 30926? |
09:47 | huginn | Bug https://bugs.koha-community.or[…]_bug.cgi?id=30926 enhancement, P5 - low, ---, jonathan.druart+koha, In Discussion , Remove unnecessary use statements |
09:49 | marcelr | there is not much discussion over there |
09:50 | Joubu | do you agree we should focus on it and push asap? |
09:50 | or we drop it | |
09:51 | marcelr | i asked tomas |
09:52 | Joubu 27421 looks interesting, but incomplete (no test plan, no tests etc) | |
09:52 | and i still have the silent failures | |
09:53 | the job crashes too on wrong branchcode in items | |
09:53 | and the progress stays at 0 / 0 | |
09:53 | Joubu | see comment 15, I am tired of working on bugs without getting feedback. I am providing 80% of the work with those patches, and I need to know if there are people with interest in continuing/helping what needed to polish what's done already |
09:55 | marcelr: you are correct, the catch block does not report the problem | |
09:55 | there is only a warn | |
09:55 | marcelr | its the usual problem Joubu |
09:55 | with feedback etc, nobody has time | |
09:56 | i did not get the warn | |
09:56 | Joubu | in the worker log file? |
09:56 | MarkHofstetter joined #koha | |
09:57 | marcelr | will have a look later |
10:03 | cait1 | unhappy bugzilla? |
10:04 | seems ok now | |
10:41 | cait joined #koha | |
11:59 | magnuse | cait1: it's friday :-) |
12:01 | cait1 | yes |
12:01 | tcohen: ping? | |
12:02 | ashimema | bug 27421 |
12:02 | huginn | Bug https://bugs.koha-community.or[…]_bug.cgi?id=27421 enhancement, P5 - low, ---, jonathan.druart+koha, Signed Off , Porting tools/stage-marc-import.pl to BackgroundJob |
12:02 | ashimema | ah yes.. that one is on my list |
12:03 | too many thing 😜 | |
12:04 | khall_ joined #koha | |
12:29 | oleonard joined #koha | |
12:29 | oleonard | Hi #koha |
12:35 | Oak | Hi oleonard |
12:35 | wahanui | hi oleopard |
12:47 | astyles joined #koha | |
12:48 | magnuse | my problem from yesterday gets weirder. the script reads a file of marcxml and loops over the records. the script as it is seems to have broken records immediately on reading. but if i comment out the line "my $res = ModBiblio( $record, $biblionumber, $config->{'frameworkcode'} );" way down in the script, reading the records seems to go just fine. anyone got a hunch why ModBiblio would break "$records = MARC::File::XML->in( $local_path );"? |
13:00 | Oak | ModBiblio is Koha's internal function? |
13:02 | Dyrcona joined #koha | |
13:02 | astyles | Hi All humble dev here, with an issue when I attempt to run "perl installer/data/mysql/updatedatabase.pl" for an atomic file for a new sys prefin my local Koha v22. What are the rules in this chat space for seeking some help.? thanks. 8-] |
13:05 | oleonard | Hi astyles |
13:06 | The rules are, you ask whatever you want, and if anyone around knows the answer hopefully they'll tell you! | |
13:06 | So you can always ask your question first. | |
13:06 | magnuse | Oak: yes |
13:07 | astyles | awesome thanks so much... when i run "perl installer/data/mysql/updatedatabase.pl" to add my atomic file update for a new sys pref, terminal throws error for missing perl module on line 39 of updatedatabase.pl |
13:07 | "Can't locate C4/Context.pm in @INC (you may need to install the C4::Context module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.34.0 /usr/local/share/perl/5.34.0 /usr/lib/x86_64-linux-gnu/perl5/5.34 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.34 /usr/share/perl/5.34 /usr/local/lib/site_perl) at updatedatabase.pl line 39." | |
13:08 | 8-] | |
13:08 | magnuse | astyles: the solution to that is usually koha-shell |
13:08 | so: sudo koha-shell -c "perl installer/data/mysql/updatedatabase.pl" sitename | |
13:09 | or "sudo koha-shell sitename" and run your updatedatabase.pl after that | |
13:09 | koha-shell makes sure you have the right path etc, so all relevant perl modules can be found | |
13:10 | astyles | ahh thanks magnuse, will try 8-) |
13:13 | magnuse | "man koha-shell" for more info |
13:15 | Oak | magnuse++ |
13:17 | astyles | solution worked!, thanks so much. 8-] |
13:20 | magnuse | astyles++ |
13:28 | Dyrcona joined #koha | |
13:28 | astyles joined #koha | |
13:28 | oleonard joined #koha | |
13:28 | khall_ joined #koha | |
13:28 | jzairo joined #koha | |
13:28 | lds joined #koha | |
13:28 | alex_ joined #koha | |
13:28 | cait1 joined #koha | |
13:28 | jajm joined #koha | |
13:28 | koha-jenkins joined #koha | |
13:28 | reiveune joined #koha | |
13:28 | void09 joined #koha | |
13:28 | davidnind[m] joined #koha | |
13:28 | sonOfRa joined #koha | |
13:28 | tcohen joined #koha | |
13:28 | magnuse joined #koha | |
13:28 | kidclamp joined #koha | |
13:28 | felicia joined #koha | |
13:28 | philor joined #koha | |
13:28 | eythian joined #koha | |
13:28 | Nemo_bis_ joined #koha | |
13:28 | matts joined #koha | |
13:28 | Joubu joined #koha | |
13:28 | claw joined #koha | |
13:28 | dpk joined #koha | |
13:28 | JBoyer joined #koha | |
13:28 | JesseM_ joined #koha | |
13:28 | jeff joined #koha | |
13:28 | sallyf joined #koha | |
13:28 | sam__ joined #koha | |
13:28 | phasefx_ joined #koha | |
13:28 | akilsdonk joined #koha | |
13:28 | nugged joined #koha | |
13:28 | bshum joined #koha | |
13:28 | logbot joined #koha | |
13:28 | abneiman joined #koha | |
13:28 | KotH joined #koha | |
13:28 | paulderscheid[m] joined #koha | |
13:28 | SlackIntegration[m] joined #koha | |
13:28 | mtj[m] joined #koha | |
13:28 | KodoKorkalo[m] joined #koha | |
13:28 | domm[m] joined #koha | |
13:28 | SushiJames[m] joined #koha | |
13:28 | tuxayo joined #koha | |
13:28 | ashimema joined #koha | |
13:28 | rangi[m] joined #koha | |
13:28 | slef joined #koha | |
13:28 | kivilahtio joined #koha | |
13:28 | lari joined #koha | |
13:28 | paxed joined #koha | |
13:28 | huginn joined #koha | |
13:28 | gmcharlt joined #koha | |
13:28 | pastebot joined #koha | |
13:28 | wahanui joined #koha | |
13:28 | davewood joined #koha | |
13:28 | domm joined #koha | |
13:28 | jo joined #koha | |
13:28 | zb joined #koha | |
13:28 | fredericd joined #koha | |
13:30 | huginn | News from kohagit: Bug 30733: fix url => URL to merge with existing string <https://git.koha-community.org[…]0fde3bbebba10eb94> |
13:30 | News from kohagit: Bug 30733: Undo some <span> additions that don't yield good strings <https://git.koha-community.org[…]de1ce3428706692e7> | |
13:30 | News from kohagit: Bug 30733: Simplify some singular cases <https://git.koha-community.org[…]bba30dc2a2ef37dcf> | |
13:30 | News from kohagit: Bug 30733: Split strings differently <https://git.koha-community.org[…]2893b48e9e7fe275d> | |
13:30 | News from kohagit: Bug 30938: Convert ColumnSettings to TableSettings <https://git.koha-community.org[…]8e48e31beefa50df0> | |
13:30 | News from kohagit: Bug 30733: Undo <span> in an ICS calendar file <https://git.koha-community.org[…]d56ed1b6b3564b239> | |
13:30 | News from kohagit: Bug 30733: Wrap one more string in <span> <https://git.koha-community.org[…]7f8aef7943fb935f4> | |
13:31 | News from kohagit: Bug 30733: Undo bad handling of a plural case <https://git.koha-community.org[…]3da99d248786d8283> | |
13:31 | News from kohagit: Bug 30733: Fix string context lost due to being in two parts <https://git.koha-community.org[…]f356debe9ec50eed0> | |
13:31 | News from kohagit: Bug 30733: Move all semicolons inside the translatable strings <https://git.koha-community.org[…]df6d4cf0c026695c7> | |
13:31 | News from kohagit: Bug 30733: Simplify translatable strings <https://git.koha-community.org[…]a9c58f37039596d75> | |
13:31 | astyles joined #koha | |
13:41 | huginn | News from kohagit: Bug 29963: Do not prefill empty date fields with today's date <https://git.koha-community.org[…]a24dce3014075a3a3> |
13:44 | Oak | In your second script, line 107, what does this line mean? |
13:44 | if ( $config->{'marc_format'} && $config->{'marc_format'} eq 'xml' ) { | |
13:49 | alohabot | 🎁 🦄 Koha 'master' packages pushed to 'koha-staging' repo 🍰🍮🥜 |
13:52 | Oak | Oh well. Someone who knows Perl could help best... I see you 'use' a bunch of things from Koha's code, including Biblio.pm -- everything ModBiblio does is accounted for when you use it in your script? use |
13:53 | https://imgur.com/a/zXGoctT | |
14:03 | paulderscheid[m] | <Oak> "if ( $config->{'marc_format'} &&..." <- It means: Do the following stuff if the marc_format field on the config object is not falsy and the marc_format filed on the config object equals xml |
14:03 | s/marc_format/marc\_format/, s/marc_format/marc\_format/, s/filed/field/ | |
14:05 | tuxayo: Congrats on the push to master on bug 30733 | |
14:05 | huginn | Bug https://bugs.koha-community.or[…]_bug.cgi?id=30733 enhancement, P5 - low, ---, victor, Pushed to master , Simplify translatable strings |
14:06 | Oak | Ah.. that makes sense |
14:06 | tuxayo | paulderscheid: thanks for your help yesterday ^^ |
14:06 | paulderscheid[m] | It was my pleasure |
14:13 | koha-jenkins | Project Koha_Master_D11_My8 build #874: SUCCESS in 40 min: https://jenkins.koha-community[…]ster_D11_My8/874/ |
14:16 | alohabot | 🎁 🦄 Koha 'master' packages pushed to 'koha-staging' repo 🍛🧀🌶 |
14:17 | koha-jenkins | Project Koha_Master_D11_MDB_Latest build #962: SUCCESS in 45 min: https://jenkins.koha-community[…]1_MDB_Latest/962/ |
14:17 | cait joined #koha | |
14:18 | cait joined #koha | |
14:19 | khall joined #koha | |
14:35 | ashimema | Great work team in the translation improvements |
14:38 | koha-jenkins | Project Koha_Master_U22 build #97: SUCCESS in 1 hr 6 min: https://jenkins.koha-community[…]ha_Master_U22/97/ |
14:48 | Project Koha_Master build #2067: STILL UNSTABLE in 43 min: https://jenkins.koha-community[…]Koha_Master/2067/ | |
14:51 | Project Koha_Master_U20 build #442: SUCCESS in 37 min: https://jenkins.koha-community[…]a_Master_U20/442/ | |
14:58 | Project Koha_Master_D9 build #2012: SUCCESS in 1 hr 23 min: https://jenkins.koha-community[…]a_Master_D9/2012/ | |
15:00 | bag joined #koha | |
15:02 | astyles left #koha | |
15:18 | cait1 | anyone else having problems with yarn build on ktd? |
15:18 | yarn build | |
15:18 | yarn run v1.22.19 | |
15:18 | $ node_modules/.bin/gulp build | |
15:18 | /bin/sh: 1: node_modules/.bin/gulp: not found | |
15:18 | error Command failed with exit code 127. | |
15:19 | Oak joined #koha | |
15:20 | oleonard | Not me cait but mine has been running for a few days. Is yours newer? |
15:20 | cait1 | from today |
15:20 | new images and all | |
15:24 | tcohen: could we have broken yarn build command on ktd? | |
15:28 | koha-jenkins | Project Koha_Master_D12 build #171: SUCCESS in 37 min: https://jenkins.koha-community[…]a_Master_D12/171/ |
15:44 | Project Koha_Master_D9 build #2013: SUCCESS in 1 hr 5 min: https://jenkins.koha-community[…]a_Master_D9/2013/ | |
15:50 | paulderscheid[m] | Hi, can anyone tell me how to remove a plugin from the shell. My stuff causes the template rendering to fail and unfortunately it's not a KTD. |
15:50 | koha-jenkins | Project Koha_Master_U22 build #98: SUCCESS in 46 min: https://jenkins.koha-community[…]ha_Master_U22/98/ |
15:54 | Project Koha_Master_D11_My8 build #875: SUCCESS in 56 min: https://jenkins.koha-community[…]ster_D11_My8/875/ | |
16:00 | cait1 | paulderscheid[m]: it looks like we have something for installing plugins, but it doesn't appear to have an option for uninstall |
16:00 | https://git.koha-community.org[…]nstall_plugins.pl | |
16:02 | paulderscheid[m] | Maybe I can just reverse the process 😄 |
16:03 | cait1 | i think you might need to empty out the plugin related tables and remove the code from the directory |
16:03 | cait1 left #koha | |
16:05 | paulderscheid[m] | cait1: I thin your right |
16:05 | cait joined #koha | |
16:05 | paulderscheid[m] | > <@_oftc_cait1:matrix.org> i think you might need to empty out the plugin related tables and remove the code from the directory |
16:05 | * I think your right | |
16:15 | alohalog` joined #koha | |
16:15 | Topic for #koha is now Welcome to #koha this channel is for discussion of the Koha project and software https://koha-community.org | |
16:33 | koha-jenkins | Project Koha_Master_D10 build #690: SUCCESS in 42 min: https://jenkins.koha-community[…]a_Master_D10/690/ |
16:39 | Project Koha_21.05_D10 build #270: STILL UNSTABLE in 32 min: https://jenkins.koha-community[…]ha_21.05_D10/270/ | |
16:41 | oleonard | kidclamp: I... don't remember? |
16:46 | koha-jenkins | Project Koha_Master_D11_MDB_Latest build #963: UNSTABLE in 1 hr 2 min: https://jenkins.koha-community[…]1_MDB_Latest/963/ |
16:59 | reiveune | bye |
16:59 | reiveune left #koha | |
17:14 | koha-jenkins | Project Koha_Master_D9 build #2014: SUCCESS in 1 hr 19 min: https://jenkins.koha-community[…]a_Master_D9/2014/ |
17:14 | khall_ joined #koha | |
18:17 | khall joined #koha | |
18:29 | khall_ joined #koha | |
18:44 | jzairo joined #koha | |
19:37 | cait joined #koha | |
19:38 | fridolin joined #koha | |
20:11 | lukeg joined #koha | |
20:15 | cait | 10 more bugs to 31000 |
20:15 | lukeg | :) |
20:15 | ashimema | That's a pretty crazy number |
20:21 | lukeg | tuxayo: you about? |
20:21 | tuxayo | lukeg: hi :) |
20:22 | lukeg | for Bug 30733, did you squash everything needed in 22.05 into a single patch? |
20:22 | huginn | Bug https://bugs.koha-community.or[…]_bug.cgi?id=30733 enhancement, P5 - low, ---, victor, Pushed to master , Simplify translatable strings |
20:22 | tuxayo | lukeg: yes |
20:23 | lukeg | so I'll only need this: https://bugs.koha-community.or[…]36286&action=diff |
20:23 | ? | |
20:23 | cait | tuxayo: will you trigger Bernardo for another po update? |
20:25 | tuxayo | lukeg: yes |
20:25 | cait: yes | |
20:25 | lukeg | tuxayo: thanks! great work. I am testing now and hopefully pushing soon after :) |
20:25 | tuxayo | great :D |
20:29 | lukeg: I didn't though at first to test that way but a better way than the ticket test plan is: without patches, update strings for a lang, git add the .po, apply patch, update strings, diff | |
20:34 | koha-jenkins | Yippee, build fixed! |
20:34 | Project Koha_21.05_D10 build #271: FIXED in 53 min: https://jenkins.koha-community[…]ha_21.05_D10/271/ | |
20:34 | wahanui | Congratulations! |
20:34 | cait | hm search exploding on master... Can't call method "field" on unblessed reference at /kohadevbox/koha/C4/Biblio.pm line 2392 ? |
20:35 | can someone confirm? | |
20:37 | davidnind[m] | it's not for me (maybe try a docker-compose pull before starting up KTD?) |
20:37 | tried normal search in staff interface and OPAC | |
20:37 | cait | i did that on my other ktd... and then could no longer yarn build :) |
20:37 | davidnind[m]: could you try searching: en | |
20:40 | davidnind[m] | cait: is working okay for me, returning search results in staff interface and OPAC |
20:41 | cait | thx davidnind[m] |
20:41 | i just don't wan to throw it out just yet... could be a configuration issue | |
20:41 | and then we might want to catch it | |
20:41 | lukeg | cait: i just tried as well. for me, it works |
20:41 | davidnind[m] | cait: yarn install then yarn build and yarn build --view opac are also working for me |
20:42 | cait | havinga bad day then I guess |
20:42 | I set up a new ktd this morning and it would't work | |
20:42 | pulled ktd, pulled images... ku -d | |
20:43 | hm ok works now (the search) | |
20:43 | thx lukeg++ davidnind[m]++ | |
20:45 | davidnind[m] | I normal stop with Ctrl+C the kd - sometimes I do another kd in case I didn't close everything down properly last time I used |
20:46 | the kd s/be then kd | |
20:46 | cait | actually it started working after a restart_all... :( |
20:46 | so it was not that | |
20:46 | :) | |
20:46 | davidnind[m] | the cure all! |
21:10 | koha-jenkins | Project Koha_22.05_U20 build #13: SUCCESS in 58 min: https://jenkins.koha-community[…]oha_22.05_U20/13/ |
21:21 | lukeg joined #koha | |
21:30 | cait | davidnind[m]: thx for your comment on bug 30989 - i fixed the staff detail page too |
21:30 | huginn | Bug https://bugs.koha-community.or[…]_bug.cgi?id=30989 minor, P5 - low, ---, oleonard, Passed QA , Tags with some special characters are not encoded right |
21:32 | koha-jenkins | Project Koha_22.05_U18 build #16: STILL UNSTABLE in 1 hr 19 min: https://jenkins.koha-community[…]oha_22.05_U18/16/ |
21:33 | davidnind[m] | cait++ |
21:33 | cait | davidnind[m]++ |
21:39 | koha-jenkins | Project Koha_22.05_U22 build #14: SUCCESS in 1 hr 5 min: https://jenkins.koha-community[…]oha_22.05_U22/14/ |
21:40 | tuxayo | lukeg++ |
21:45 | koha-jenkins | Project Koha_22.05_U20 build #14: SUCCESS in 44 min: https://jenkins.koha-community[…]oha_22.05_U20/14/ |
22:21 | Project Koha_22.05_D11 build #21: STILL UNSTABLE in 1 hr 10 min: https://jenkins.koha-community[…]oha_22.05_D11/21/ | |
22:22 | cait | davidnind[m]: just fixing the cloud page too |
22:23 | davidnind[m] | thanks cait! |
22:23 | cait | thx for testing so well :) |
22:48 | koha-jenkins | Project Koha_22.05_U20 build #15: SUCCESS in 37 min: https://jenkins.koha-community[…]oha_22.05_U20/15/ |
22:52 | Project Koha_22.05_U18 build #17: STILL UNSTABLE in 1 hr 20 min: https://jenkins.koha-community[…]oha_22.05_U18/17/ | |
23:15 | Project Koha_22.05_U18 build #18: STILL UNSTABLE in 47 min: https://jenkins.koha-community[…]oha_22.05_U18/18/ | |
23:31 | Project Koha_22.05_D11 build #22: STILL UNSTABLE in 1 hr 9 min: https://jenkins.koha-community[…]oha_22.05_D11/22/ |
← Previous day | Today | Next day → | Search | Index