← Previous day | Today | Next day → | Search | Index
All times shown according to UTC.
Time | Nick | Message |
---|---|---|
00:22 | AndrewFH joined #koha | |
02:08 | fridolin joined #koha | |
05:00 | fridolin joined #koha | |
05:26 | reiveune joined #koha | |
05:26 | reiveune | hello |
05:39 | Oak joined #koha | |
06:04 | lmstrand joined #koha | |
07:09 | ashimema | Mornin' |
07:27 | fridolin | bonjour ashimema |
07:37 | alex_a joined #koha | |
07:37 | alex_a | Bonjour |
07:54 | huginn` | News from kohagit: Bug 13188: DBRev 21.12.00.002 <https://git.koha-community.org[…]8411d0c99acad96d7> |
07:54 | News from kohagit: Bug 13188: (RM follow-up) Several fixes on db changes <https://git.koha-community.org[…]a8f73cbb43f5c29ca> | |
07:54 | News from kohagit: Bug 13188: (QA follow-up) Enhance list of field exclusions <https://git.koha-community.org[…]f131484b41730a5fa> | |
07:54 | News from kohagit: Bug 13188: Fix alphabetic order in sysprefs.sql <https://git.koha-community.org[…]9b2015decdd80b867> | |
07:54 | News from kohagit: Bug 13188: (QA follow-up) Modernise atomicupdate <https://git.koha-community.org[…]31a361a4be91bc6c8> | |
07:54 | News from kohagit: Bug 13188: (follow-up) Get value from PatronSelfRegistrationBorrowerMandatoryField... <https://git.koha-community.org[…]97d9880c46485e5e8> | |
07:54 | News from kohagit: Bug 28216: Fix vendor list group by in serials statistics wizard <https://git.koha-community.org[…]c7ef6a8e502ae0240> | |
07:54 | News from kohagit: Bug 13188: Add PatronSelfModificationMandatoryField system preference <https://git.koha-community.org[…]cf3ae63594c47bacc> | |
07:54 | marion joined #koha | |
07:56 | cait joined #koha | |
07:59 | cait1 joined #koha | |
08:17 | cait1 | hi #koha |
08:19 | Joubu: foudn your note: [% SET checkout = item.checkout %] ... but I am still not sure how the foreach shoudl then look like? | |
08:22 | Joubu: we are lookign for a list of items that need are going to be due in PREDUEDGST | |
08:30 | ashimema | I can't see item getting passed into preduedgst cait1 |
08:30 | https://git.koha-community.org[…]e_notices.pl#L595 | |
08:30 | cait1 | did I mentin we really need better docuemtnation before ever trying to get rid of the old syntax? I feel totally lost :( |
08:30 | ashimema | to me, it looks like it's just the items.content substitution |
08:31 | I've been trying to work on the documentation | |
08:31 | cait1 | i know, others too - maybe I couldn't find it because it just doesn't work yet |
08:31 | ashimema | but half the problem is allot of customer chuff so it's hard to document as with each notice I try to convert I often find I have to add additional functionality to get the TT versions to work as expected |
08:31 | and... | |
08:32 | it doesn't help that when i tried hard to get this moving it took many months for people to actually look at any of the bugs | |
08:32 | I've basically given up 😉 | |
08:32 | the syntx is easy | |
08:32 | it's just TT | |
08:32 | cait1 | I understand, I also failed to test, finding time has getting inrecdibly hard |
08:32 | koha-jenkins | Project Koha_Master_D9 build #1839: SUCCESS in 38 min: https://jenkins.koha-community[…]a_Master_D9/1839/ |
08:32 | cait1 | the issue is not knowing the names |
08:32 | Joubu | yes I confirm, it does not work |
08:32 | cait1 | and availability of objects |
08:32 | ashimema | indeed |
08:33 | Joubu | I guess it's one of those that got stuck |
08:33 | cait1 | Would it be ok if I file a bug to replace items.content by a TT mechaism? |
08:33 | ashimema | in this case.. the objects are not available at the end level |
08:33 | Joubu | there is a bug already I think |
08:33 | cait1 | well... make one as an alternative |
08:33 | ashimema | I can see why.. but it's a pain to try and fix |
08:33 | we don't allow passing of objects to GetPreparedLetter.. | |
08:33 | Joubu | we don't pass the object, only the id |
08:33 | ashimema | the query is all done within C4::Letters from passed ID's |
08:34 | in this case we'd need to pass a resultset in (as we don't want the standard query.. we want a filtered set) | |
08:34 | I believe anyways | |
08:34 | yeah | |
08:34 | Kyle has a bug for it | |
08:34 | koha-jenkins | Project Koha_Master_D10 build #493: SUCCESS in 39 min: https://jenkins.koha-community[…]a_Master_D10/493/ |
08:34 | ashimema | not this specific notice.. but the idea of passing a resultset in. |
08:35 | bug 19966 | |
08:35 | huginn` | Bug https://bugs.koha-community.or[…]_bug.cgi?id=19966 enhancement, P5 - low, ---, kyle, Signed Off , Add ability to pass objects directly to slips and notices |
08:35 | ashimema | to fix this we'll need the above |
08:39 | Joubu | I am not sure I understand how it would help here |
08:39 | I have the feeling that we are only missing the itemnumbers | |
08:39 | ashimema | it would mean you could pass 'checkouts' as a resultset to the notice |
08:40 | so you're suggestiong iterate on items | |
08:40 | that could work | |
08:40 | Joubu | ashimema: tables => \%table_params, |
08:41 | if there is the itemnumbers there, then it will be accessible | |
08:42 | koha-jenkins | Project Koha_Master build #1856: FAILURE in 48 min: https://jenkins.koha-community[…]Koha_Master/1856/ |
08:43 | ashimema | would it not be 'loops' |
08:43 | isn't tables | |
08:43 | singular | |
08:43 | i.e | |
08:43 | `tables => { items => itemnumber }` | |
08:44 | we'd need `loops => { items => \@itemnumbers }` I think? | |
08:44 | it's a while since I've dug through this code and it takes me time to understand it again every time. | |
08:44 | koha-jenkins | Project Koha_Master_U20 build #261: SUCCESS in 50 min: https://jenkins.koha-community[…]a_Master_U20/261/ |
08:51 | Project Koha_Master_D12 build #46: SUCCESS in 56 min: https://jenkins.koha-community[…]ha_Master_D12/46/ | |
08:53 | cait1 | the list shoudl also be limitd ot the ones that need the reminder |
08:53 | but otherwise I am not quite following, just howping for the best outcome here | |
08:53 | * ashimema | has to duck back out |
08:54 | fridolin | Joubu: could you look https://jenkins.koha-community[…]Koha_Master/1856/ please ? |
08:54 | logs are quite short i dont see a reason | |
08:56 | AnkeB joined #koha | |
08:58 | Joubu | fridolin: 09:42:25 Get "https://registry-1.docker.io/v2/": x509: certificate is valid for *.kohaaloha.com, kohaaloha.com, not registry-1.docker.io |
08:58 | mtj: ^ | |
09:06 | fridolin | arf |
09:06 | Joubu | cait1: did you open a bug? |
09:07 | ashimema | grr circulation is such a mess ☹️ |
09:09 | DaveMB joined #koha | |
09:12 | koha-jenkins | Project Koha_Master_U21 build #46: SUCCESS in 1 hr 13 min: https://jenkins.koha-community[…]ha_Master_U21/46/ |
09:12 | Joubu | cait1: bug 29698 |
09:12 | huginn` | Bug https://bugs.koha-community.or[…]_bug.cgi?id=29698 enhancement, P5 - low, ---, koha-bugs, NEW , items are not available for TT syntax for PREDUEDGST |
09:17 | koha-jenkins | Project Koha_Master_D11_MDB_Latest build #751: SUCCESS in 42 min: https://jenkins.koha-community[…]1_MDB_Latest/751/ |
09:38 | Project Koha_Master_D11_My8 build #712: SUCCESS in 53 min: https://jenkins.koha-community[…]ster_D11_My8/712/ | |
09:51 | Project Koha_Master_U_Stable build #339: SUCCESS in 59 min: https://jenkins.koha-community[…]ter_U_Stable/339/ | |
10:00 | Project Koha_Master_U_Stable build #340: SUCCESS in 43 min: https://jenkins.koha-community[…]ter_U_Stable/340/ | |
10:01 | alex_a joined #koha | |
10:07 | koha-jenkins | Project Koha_Master_D11_CPAN build #491: SUCCESS in 1 hr 24 min: https://jenkins.koha-community[…]ter_D11_CPAN/491/ |
10:07 | Project Koha_Master_D11_CPAN build #492: SUCCESS in 57 min: https://jenkins.koha-community[…]ter_D11_CPAN/492/ | |
10:09 | fridolin | by _o/ |
10:09 | fridolin left #koha | |
10:14 | cait1 | thx Joubu |
10:15 | had 3 meetings this morning, more around now | |
10:15 | Joubu++ ashimema++ | |
10:17 | oleonard | 3_meetings-- |
10:17 | Hi cait | |
10:25 | cait1 | yes... but I like them better in one go... so I have this afternoon meeting free :) |
10:26 | ashimema | meetings-- |
10:26 | I'm in them all morning too | |
10:29 | koha-jenkins | Project Koha_Master_D11_MDB_Latest build #752: SUCCESS in 51 min: https://jenkins.koha-community[…]1_MDB_Latest/752/ |
10:33 | marion joined #koha | |
10:43 | nlegrand joined #koha | |
10:43 | nlegrand | hey #koha, long time no see |
10:45 | oleonard | Hi nlegrand, what have you been up to? |
10:45 | Crak69 joined #koha | |
10:45 | Crak69 | hi all |
10:46 | oleonard | Hi Crak69 |
10:52 | Crak69 | is there a public sip2 server out there for testing purposes? |
10:53 | Joubu | there is a sip2 server embeded by koha-testing-docker. it's not public but it's there for testing purposes :) |
10:59 | Crak69 | Joubu: yes. but our it infrastructure here makes it hard to setup and to access with our develoment environment |
11:00 | nlegrand | hey oleonard! Having a child mostly. And taking care of my wife who broke her back. Things are a bit less crazy right now :D |
11:01 | oleonard | Oh wow, that's a lot! |
11:01 | Your wife is recovering well I hope? | |
11:02 | nlegrand | It's getting better thank you. All will be well at the end, but it's long and it hurts :) |
11:03 | I saw some people were eager to merge the biblio and biblioitem tables. | |
11:04 | And I just thought, we have a weird condition here, we have plenty of biblioitems where the biblioitemnumber is different from the biblionumber. | |
11:04 | Does this happens to other people? Is there a known fix? | |
11:09 | I've changed the index number one day, and new docs have same id, but I have a lot of strange old ones. | |
11:09 | oleonard: and what's new for you? I've read some people want to change the intranet look and feel :) | |
11:14 | oleonard | Yes, I'm looking forward to seeing what we can come up with. |
11:15 | Maybe we'll slip in an upgrade to Bootstrap 5 for the staff interface at the same time :D | |
11:17 | Crak69 | nlegrand: get well soon to your wife |
11:18 | nlegrand | thanks Crak69 |
11:18 | Crak69 | i had a back surgery a month ago... |
11:19 | * Crak69 | can feel the pain |
11:19 | nlegrand | ho, hope you're well now |
11:19 | Crak69 | getting better every day |
11:25 | nlegrand | oleonard: :D |
11:26 | I have try some modal boxes with extensions lately, it's both handy and weird. I'm not very good at it :) | |
11:53 | cait joined #koha | |
11:53 | nlegrand | o/ cait |
11:58 | AndrewFH joined #koha | |
12:01 | cait | hi nlegrand :) |
12:13 | ashimema | Nice to see you nlegrand |
12:14 | nlegrand | hey ashimema |
12:14 | wahanui | ashimema is back on security bugs today.. sorry, it's been a bit of a crazy week |
12:18 | nlegrand | ashimema: good to be here :) |
12:18 | ashimema | 🙂 |
12:42 | AndrewFH joined #koha | |
12:48 | AndrewFH joined #koha | |
12:52 | Crak69 | i tried to fire up the koho-testing-docker on a free aws instance... i completely underestimated the hardware requirements, i guess |
12:53 | too small volume | |
12:53 | and after extending the instance was not acessable any more | |
12:54 | Joubu | oleonard: what's your opinion on the last comments of bug 20398? |
12:54 | huginn` | Bug https://bugs.koha-community.or[…]_bug.cgi?id=20398 enhancement, P5 - low, ---, thibaud.guillot, Needs Signoff , Add a system preference to disable search result highlighting in the staff interface |
12:54 | marion joined #koha | |
12:54 | Crak69 | is there an official 'hardware requirements' ? |
12:55 | Joubu | Crak69: how big/small was the volume? |
12:55 | Crak69 | 8GB the ebs |
12:56 | and the ram i don't know | |
12:56 | ah, 1GB of ram | |
12:57 | Joubu | 1GB of RAM is too short, especially if you need elastic |
12:57 | Crak69 | Joubu: extending to 16GB seems to work 'docker-compose pull' was ok after increasing |
12:57 | Joubu: honestly i only need the SIP2 Server | |
12:58 | but it is hard to fire it up without koha environment | |
12:58 | alex_a joined #koha | |
12:59 | Crak69 | a standalone version would be nice :) |
13:00 | cait1 | if you only need to test sip, maybe a normal installation woudl work |
13:00 | without the git repositories that shoudl be a lot smaller | |
13:01 | normal = installation from Debian packages | |
13:01 | oleonard | Joubu: I commented on the bug |
13:02 | Crak69 | cait1: there is also the SIPServer.pm that should be able to run independently |
13:02 | cait1: but i guess there are other requirements i do not know( database, memcachen...)? | |
13:03 | the SIPServer highly depens on the koha settings if i see it right | |
13:03 | at least it will be started with SIPconfig.xml | |
13:05 | so my hope was that there is no dependency on other settings | |
13:12 | cait1 | yes, you can't just have the SIP server |
13:12 | you need items to check out etc. | |
13:12 | so you can#t use it independently of an ILS | |
13:17 | Joubu | oleonard-away: why do we need the syspref if each user can decide if they want the feature? |
13:21 | koha-jenkins | Yippee, build fixed! |
13:21 | wahanui | Congratulations! |
13:21 | koha-jenkins | Project Koha_Master build #1857: FIXED in 1 hr 4 min: https://jenkins.koha-community[…]Koha_Master/1857/ |
13:21 | Crak69 | hmm and it looks like there is a problem with perl installing MARC -> gdbm_fetch: Item not found at blib/lib/MARC/Charset/Table.pm line 88. |
13:22 | cait1: thank you for the information | |
13:35 | cait1 | Joubu: i think because it doesn't work as expected for a lot of libraires and they don't want to offer it to not get questions |
13:35 | and because it defaults to 'highlight' and peope don't keep cookies etc. or just don't see the 'unhighlight' in the first plac | |
13:36 | e | |
13:38 | Joubu | cait1: then we could disable it by default, and have the "highlight" link to turn it on, store in local storage (no cookies) |
13:39 | jzairo joined #koha | |
13:40 | cait1 | i guess then someone else won't like it - why is a parallel pref such an issueß |
13:40 | ? | |
13:40 | Joubu | if we move some of our prefs to a user's drived config, they could have a "parameter" section in their account to enable/disable them. |
13:40 | user-driven's config (?) | |
13:40 | cait1 | true, but that doesn't fix the issue of libraries not liking the feature |
13:41 | and most users are not 'power' users like this or don't even have an account in some cases | |
13:41 | oleonard | Joubu: That the staff interface doesn't have this preference is an inconsistency that can be easily resolved. Your proposal could be an entirely separate enhancement later |
13:41 | cait1 | +1 |
13:42 | Joubu | I am asking questions, not requiring anything |
13:43 | oleonard | Libraries like having control of the settings, and I don't think it's a burden for us to offer these. |
13:43 | Joubu | do we then agree that the final goal would be to let each user choses their own settings? |
13:43 | ok | |
13:44 | oleonard | I agree in that I believe the user's choice should be remembered by the browser |
13:44 | Joubu | we only offer to turn on/off feature when only some of the users could decide to have them enabled/disabled |
13:44 | anyway, it was just an idea, I thought it's awesome personally :D | |
13:45 | good I've asked before, I won't spend time on something nobody wants | |
13:54 | Crak69 | bye all |
13:54 | Joubu | ashimema: bug 28955 - did you see the previous comment? |
13:54 | huginn` | Bug https://bugs.koha-community.or[…]_bug.cgi?id=28955 normal, P5 - low, ---, martin.renvoize, Signed Off , Add option to set default branch from Apache |
13:54 | Crak69 left #koha | |
13:55 | ashimema | mmm, I don't believe it's used elsewhere.. |
13:55 | but.. I may be mistaken.. | |
13:55 | I don't really have a feeling for it. | |
13:56 | Joubu | like... $template->param( %borrower ); |
13:57 | you pass the branchcode | |
13:58 | We have fixed at least 2 occurrences in the last couple of months, no idea if there are pushed already | |
13:58 | cait1 | Joubu: we do like the individual choise idea - we just like a global thing too :) remember quote 123 :) |
13:58 | Joubu | (it was a problem with 'lang') |
14:01 | * ashimema | is confused by which comments were for him and which were for cait1 there |
14:01 | alex_a joined #koha | |
14:04 | Joubu | ashimema: last 4 were for you - context is https://bugs.koha-community.or[…]g.cgi?id=28955#c6 |
14:04 | huginn` | Bug 28955: normal, P5 - low, ---, martin.renvoize, Signed Off , Add option to set default branch from Apache |
14:09 | ashimema | hmm |
14:09 | looks like the majority now use logged_in_user.branchcode ☹️ | |
14:12 | enkidu joined #koha | |
14:12 | enkidu | Hi all |
14:12 | oleonard | Hi enkidu |
14:12 | enkidu | Anyone is familar with Room Reservation plugin? |
14:20 | Dyrcona joined #koha | |
14:29 | AndrewFH joined #koha | |
14:29 | lucy_ joined #koha | |
14:30 | lucy_ left #koha | |
14:36 | thibaud_glt joined #koha | |
14:41 | cait1 | enkidu: sorry, although we ogt asked about it |
14:41 | aude_c joined #koha | |
14:49 | cait1 | Bug 29325 - commit_file.pl error 'Already in a transaction' |
14:49 | we just found that the suggested patches don't work... if someone could have another look at it that would be great (we commented on the bug too) | |
14:50 | dfliddle joined #koha | |
14:50 | cait1 | blocker for us, as we depend on the script for our union catalog updates :( |
14:50 | ashimema | it's causing us pain |
14:50 | but I'm not close enough to it to fix is | |
14:50 | it | |
14:50 | cait1 | yeah it's out of my league too |
14:53 | ashimema | Is there a general consensus to not us modals on the OPAC |
14:53 | Feels a bit 1990's that everything is a page | |
14:54 | oleonard | ashimema: No we're using them in multiple places |
14:54 | ashimema | I was hoping to copy much of my bookings code to the OPAC.. but it feels out of place being a modal with literally everything else being a page load flow |
14:54 | Where? | |
14:55 | Only one I see is login | |
14:55 | oleonard | Also suspending holds. A modal confirmation dialog is shown in some instances like cancelling a hold |
14:55 | ashimema | Placing holds, making purchase suggestions, etc etc all appear to be full page wizards |
14:55 | Ok | |
14:56 | oleonard | ashimema: No one is stopping you from making more use of modals :D |
14:56 | I started to work on converting the Cart at one point but got distracted. | |
14:57 | dfliddle | Greetings, all … I have an issue with our server (20.11, Debian 10, DigitalOcean) in which the library branches are not listed. The issue is similar to that described at http://irc.koha-community.org/[…]1-08-16#i_2370985 and ... |
14:57 | ... at https://bugs.koha-community.or[…]_bug.cgi?id=28800. | |
14:57 | huginn` | Bug 28800: normal, P5 - low, ---, mtj, RESOLVED FIXED, Library list at /cgi-bin/koha/admin/branches.pl appears empty |
14:58 | ashimema | haha |
14:58 | I just kinda wish we had a style guide | |
14:58 | bshum_ joined #koha | |
15:00 | oleonard | ashimema: I'm not sure a style guide would be able to dictate whether something should be a modal or not... |
15:01 | ashimema | perhaps not.. |
15:01 | but it might make some of these decisions simpler | |
15:01 | Joubu | dfliddle: what's the version of json::validator? |
15:01 | dfliddle | There's a good possibility that the version of JSON::Validator is too new (5.02) to function correctly. |
15:02 | Joubu | yes, that's the reason |
15:02 | dfliddle | But to be honest, I'm not sure how to pull it and install the correct version without causing a major ruckus. |
15:02 | Joubu | apt-cache policy libjson-validator-perl |
15:02 | what's the output? | |
15:02 | wahanui | the output is probably printed after |
15:03 | dfliddle | libjson-validator-perl: |
15:03 | Installed: 5.02-1 | |
15:03 | Candidate: 5.02-1 | |
15:03 | Version table: | |
15:03 | *** 5.02-1 100 | |
15:03 | 100 /var/lib/dpkg/status | |
15:03 | 4.99.1+really3.14-koha3 500 | |
15:03 | 500 http://debian.koha-community.org/koha oldoldstable/main amd64 Packages | |
15:03 | 3.06+dfsg-1 500 | |
15:03 | cait1 | ashimema: maybe we could start with an FAQ style page? |
15:03 | Joubu | dfliddle: did you apt update? |
15:04 | cait1 | ashimema: collect questions like yours and add it there, and then devleop this into a style guide |
15:04 | dfliddle | Yes |
15:04 | cait1 | Q: Shoudl I add modals to the OPAC? Yes, here are some examples... you absolutely can (or so) |
15:04 | ashimema | seems like a reasonable idea |
15:05 | I'm just keen to help bring more consistency to things as a whole.. both OPAC and Staff side | |
15:05 | dfliddle | @Joubu: Sorry that paste came through a little messily; I'm not used to this IRC client yet. |
15:05 | huginn` | dfliddle: I've exhausted my database of quotes |
15:05 | dfliddle | huginn`: I don't know what that means. |
15:05 | huginn` | dfliddle: I've exhausted my database of quotes |
15:06 | Joubu | it's a bot, ignore huginn` |
15:06 | dfliddle: what do you have in /etc/apt/sources.list.d/koha.list? | |
15:07 | dfliddle | @Joubu: deb http://debian.koha-community.org/koha oldoldstable main buster |
15:07 | huginn` | dfliddle: I've exhausted my database of quotes |
15:07 | Joubu | mtj: not around? |
15:10 | dfliddle | @Joubu: That version of the module is beyond even the one specified by 'stable', isn't it? I'm not the only administrator of the server, so I can't answer for what's been done in the past to get it to this state. |
15:10 | huginn` | dfliddle: downloading the Perl source |
15:11 | Joubu | dfliddle: do you have a test instance? |
15:11 | dfliddle: the problem is that us (Koha) are supporting JSON::Validator version 3.14, but a more recent version exists in the debian repo | |
15:11 | dfliddle | I do, as it happens, but it's not identical. It's running Ubuntu 20.04.3 LTS and Koha 21.05. |
15:12 | Joubu | so we fake a more recent one, 4.99.1+really3.14-koha3 |
15:12 | which is version 4.99 but "really" 3.14 and so debian pick that one | |
15:12 | now there is an even more recent version, 5 | |
15:12 | dfliddle | @Joubu: I sort of gleaned that from the name of the package. Interesting. |
15:12 | huginn` | dfliddle: I'll give you the answer just as soon as RDA is ready |
15:12 | wahanui | i already had it that way, huginn`. |
15:12 | Joubu | our test repo has a 5.99+really3.14-koha1 package |
15:13 | but I don't see it in the stable repo | |
15:13 | mtj is the one to ask, but he is not around at the moment (NZ timezone) | |
15:13 | thibaud joined #koha | |
15:13 | Joubu | I can suggest a workaround: download the .deb from our test repo, and install it manually |
15:13 | thibaud joined #koha | |
15:14 | Joubu | but please don't mess with that in production without you tested it properly before |
15:14 | test repo: http://debian.koha-community.o[…]n-validator-perl/ (with the libjson-validator-perl_5.99+really3.14-koha1_all.deb) | |
15:14 | dfliddle | @Joubu: I could give that a try. What do you suppose might happen if I install that deb in the test environment? |
15:14 | huginn` | dfliddle: I suck |
15:15 | thibaud joined #koha | |
15:15 | dfliddle | @Joubu: I suppose I could create a new VM with a simulated instance running on Debian 10. |
15:15 | huginn` | dfliddle: I'll give you the answer as soon as RDA is ready |
15:15 | wahanui | i already had it that way, huginn`. |
15:15 | Joubu | @later tell mtj we are getting reports of problem (IRC + ML) with the REST API (related to json::validator version). Apparently stable deb repo does not contain the 5.99+really3.14 - can you double check please? |
15:15 | huginn` | Joubu: The operation succeeded. |
15:16 | Joubu | dfliddle: I don't know your 'apt' skills, that's why I am not suggesting you to apply something that is not in the official repo directly in production :) |
15:16 | I don't want you to break apt | |
15:18 | dfliddle: but... sorry, I am slow, wait a minute | |
15:18 | dfliddle | Joubu: I have plenty of space on my local VM host to try to replicate the situation. Then I can break it as much as I want. And revert to backups if I need to. |
15:18 | Joubu | you have "buster" in the koha.list on a Ubutun 20.04 |
15:19 | dfliddle | Joubu: I actually don't. The production instance on Debian has 'buster'. The test instance on Ubuntu has 'focal'. |
15:20 | Joubu | oh ok, was reading back the IRC log too fast |
15:22 | dfliddle: then oldoldstable is not correct | |
15:22 | Koha 20.11 is oldstable | |
15:22 | (I think..) | |
15:22 | dfliddle | Joubu: According to what I read on the site yesterday, the designations have changed. |
15:22 | Joubu | no oldoldstable is correct |
15:23 | sorry, looking at the wrong place, our dashboard is not up-to-date! | |
15:23 | dfliddle | Joubu: Thank you very much for the help and suggestions. I think I'll get started on trying to re-create the production instance on a local server. |
15:24 | Joubu: I'm on EU time, so I will check tomorrow morning to see if mtj has responded with thoughts on the matter. | |
15:24 | Joubu | @later tell mtj they are using "oldoldstable main buster" on D10 and Koha 20.11 |
15:24 | huginn` | Joubu: The operation succeeded. |
15:24 | Joubu | dfliddle: if you are not in a hurry, wait tomorrow |
15:25 | mtj will certainly sort that out before you wake up tomorrow :) | |
15:25 | dfliddle | Joubu: I don't think it's a rush. The situation was noticed when a library admin went to the page to delete a branch. |
15:25 | thibaud joined #koha | |
15:26 | dfliddle | Bis morgen, #koha ... |
15:26 | dfliddle left #koha | |
15:31 | Joubu | and dashboard updated with the correct codenames.. |
15:40 | Oak joined #koha | |
15:55 | cait1 | Joubu: something else for the big checklist? |
16:48 | reiveune | bye |
16:48 | reiveune left #koha | |
16:51 | oleonard | kidclamp around? |
16:53 | * kidclamp | waves arms like a wacky waving arm inflatable tube man |
16:53 | kidclamp | oleonard: yes |
16:54 | oleonard | https://czechprimer.org/words/bezduchy |
16:54 | kidclamp have you ever thought about integrating OverDrive API features with regular catalog search results? | |
16:54 | kidclamp | yes, often |
16:55 | rangi filed a bug way back | |
16:55 | oleonard | Oh really? I was just thinking about it as I was looking at OverDrive records which we've incorporated into our regular catalog. |
16:57 | kidclamp | https://bugs.koha-community.or[…]_bug.cgi?id=18514 |
16:57 | huginn` | Bug 18514: enhancement, P5 - low, ---, chris, Patch doesn't apply , Allow library to search their Koha and Overdrive collections using ElasticSearch |
16:58 | oleonard | I see, that's different than what I'm thinking of. We import the OverDrive MARC records into our collection. |
17:03 | cait1 left #koha | |
17:04 | kidclamp | oh, you mean making the buttons and stuff happen for imported records? |
17:04 | yes - I am working on a plugin and would like to add that to the features - that is how cloudlibrary and maybe hoopla work | |
17:04 | https://github.com/bywatersolu[…]-plugin-overdrive | |
17:06 | oleonard | What do you mean "how cloudlibrary and maybe hoopla work" ? Are those other plugins? |
17:06 | kidclamp | yes |
17:08 | oleonard | I didn't know about those. I'll definitely try out the Hoopla one. |
17:31 | AndrewFH joined #koha | |
17:32 | cait joined #koha | |
18:08 | fridolin joined #koha | |
18:11 | fridolin | hi there |
18:46 | kidclamp | hi frido |
21:04 | AndrewFH joined #koha | |
22:19 | huginn` | News from kohagit: Bug 29349: (follow-up) Fix width of item level dropdowns <https://git.koha-community.org[…]1be69543c47cc4c12> |
22:19 | News from kohagit: Bug 29349: Do not assume holding branch is a valid pickup location <https://git.koha-community.org[…]29fb318f1a9fec1cd> | |
22:19 | News from kohagit: Bug 27801: Fix javascript price calculations <https://git.koha-community.org[…]c94218b26ed689099> | |
22:19 | News from kohagit: Bug 29040: Remove warning from the itemtype edit view <https://git.koha-community.org[…]53ddb99d7589f6521> | |
22:19 | News from kohagit: Bug 28855: (follow-up) adapt specific test <https://git.koha-community.org[…]bbc210f42398b4b4d> | |
22:19 | News from kohagit: Bug 27266: (QA follow-up) Remove GetBiblioData from sendshelf too <https://git.koha-community.org[…]b3fca2aea62d130bf> | |
22:19 | News from kohagit: Bug 27266: (QA follow-up) Indentation in opac-sendshelf <https://git.koha-community.org[…]09a70b19faeb28287> | |
22:19 | News from kohagit: Bug 27266: (QA follow-up) Remove GetBiblioData from basket scripts <https://git.koha-community.org[…]547f194b7d9349422> | |
22:19 | News from kohagit: Bug 29403: Fix api/v1/patrons.t <https://git.koha-community.org[…]8857d5d5056244560> | |
22:19 | News from kohagit: Bug 29403: Match the whole string <https://git.koha-community.org[…]067fdab240f96f9a1> | |
22:19 | News from kohagit: Bug 29403: Unit tests <https://git.koha-community.org[…]fa4973616aace226e> | |
22:19 | News from kohagit: Bug 28855: Purging suggestions test should not be on timestamp <https://git.koha-community.org[…]18a3dfdee14e4a410> | |
22:19 | News from kohagit: Bug 27266: (follow-up) Remove get_marc_authors from opac-detail <https://git.koha-community.org[…]8a3cdd202adb13a0d> | |
22:19 | News from kohagit: Bug 27266: (follow-up) Using biblio frameworkcode to get rid of FIXME <https://git.koha-community.org[…]ae767665ed691c32b> | |
22:19 | News from kohagit: Bug 27266: (follow-up) Remove instances of GetMarcAuthors <https://git.koha-community.org[…]f0b09d0a72a9926e4> | |
22:19 | News from kohagit: Bug 27266: (QA follow-up) Rename to get_marc_authors <https://git.koha-community.org[…]a0f61ea8860ae4ac7> | |
22:19 | News from kohagit: Bug 27266: Move GetMarcAuthors to Koha namespace <https://git.koha-community.org[…]43318dd08dbd7148a> | |
22:32 | mtj | hi joubu, json::validator_5.99+really3.14 not being pushed to the 'koha' repo, will only affect deb12/bookworm systems |
22:37 | dfiddle's problem is likely caused by someone building/installing the json-validator package from debian's testing repo, last month | |
22:56 | koha-jenkins | Project Koha_Master_D9 build #1840: UNSTABLE in 37 min: https://jenkins.koha-community[…]a_Master_D9/1840/ |
23:04 | AndrewFH joined #koha | |
23:08 | koha-jenkins | Project Koha_Master_U20 build #262: UNSTABLE in 49 min: https://jenkins.koha-community[…]a_Master_U20/262/ |
23:16 | Project Koha_Master_D12 build #47: UNSTABLE in 56 min: https://jenkins.koha-community[…]ha_Master_D12/47/ | |
23:18 | Project Koha_Master_D10 build #494: UNSTABLE in 58 min: https://jenkins.koha-community[…]a_Master_D10/494/ | |
23:21 | mtj | Joubu: the problem on the ML was unrelated, and was fixed by adding a 'bionic' to the apt repo |
23:26 | hi dfliddle, try 'sudo apt update; sudo apt upgrade' to pull a 5.99 js-validator package, and fix the problem | |
23:26 | koha-jenkins | Project Koha_Master build #1858: UNSTABLE in 1 hr 7 min: https://jenkins.koha-community[…]Koha_Master/1858/ |
23:30 | oleonard joined #koha | |
23:33 | koha-jenkins | Project Koha_Master_D11_MDB_Latest build #753: UNSTABLE in 36 min: https://jenkins.koha-community[…]1_MDB_Latest/753/ |
23:36 | dcook joined #koha | |
23:43 | koha-jenkins | Project Koha_Master_U_Stable build #341: UNSTABLE in 41 min: https://jenkins.koha-community[…]ter_U_Stable/341/ |
23:57 | Project Koha_Master_D11_CPAN build #493: UNSTABLE in 49 min: https://jenkins.koha-community[…]ter_D11_CPAN/493/ |
← Previous day | Today | Next day → | Search | Index