← Previous day | Today | Next day → | Search | Index
All times shown according to UTC.
Time | Nick | Message |
---|---|---|
00:08 | andreashm joined #koha | |
00:24 | inlibro joined #koha | |
01:20 | matthew joined #koha | |
01:24 | inlibro joined #koha | |
01:50 | khall joined #koha | |
02:24 | inlibro joined #koha | |
03:24 | inlibro joined #koha | |
04:25 | inlibro joined #koha | |
04:39 | cait joined #koha | |
05:25 | inlibro joined #koha | |
05:30 | cait joined #koha | |
05:49 | chris joined #koha | |
05:50 | calire joined #koha | |
06:25 | inlibro joined #koha | |
06:41 | * magnuse | waves |
06:43 | gsr joined #koha | |
06:47 | cait joined #koha | |
06:59 | liliputech_asu | hi #koha |
06:59 | cait | morning #koha |
07:01 | ashimema | mornin' |
07:03 | alex_a joined #koha | |
07:04 | alex_a | Bonjour |
07:15 | laurence joined #koha | |
07:24 | paul_p joined #koha | |
07:25 | inlibro joined #koha | |
07:28 | kohaputti joined #koha | |
07:35 | andreashm joined #koha | |
08:17 | andreashm joined #koha | |
08:19 | andreashm joined #koha | |
08:19 | andreash_ joined #koha | |
08:22 | andreashm_ joined #koha | |
08:22 | andreashm_ | morning |
08:25 | inlibro joined #koha | |
08:35 | Anna joined #koha | |
08:37 | Anna | Hi! I wonder if Koha can be considered compatible with Internet Explorer 11. (I am aware that the recommendation is Firefox or Chrome) |
08:38 | Is there something that just would not work? | |
08:39 | cait | you'd probably have issues, more in staff than in opac |
08:39 | opac should probably be ok or would be more likely to be fixed | |
08:40 | we do not officially support IE for staff | |
08:40 | bug 17695 would be an example | |
08:40 | huginn` | Bug http://bugs.koha-community.org[…]_bug.cgi?id=17695 normal, P5 - low, ---, oleonard, NEW , Frameworks not saving in IE11 when editing records |
08:50 | Anna | Thx for input. However, the IE-related bugs do not seem to be many at all when i check Bugzilla. Anyone who actually work on a library using IE and wants to share experience? |
08:50 | cait | i think that woudl be better on the mailnig list to ask |
08:50 | bigger audience | |
08:51 | i remember seeing total breakage of staff layout - but can't find a bug report relating to that right now | |
08:51 | i woudl really not recommen dit | |
08:52 | magnuse | is it written down anywhere which browsers we support? |
08:52 | cait | yes i think we did that, sec |
08:52 | Probably shoudl add something here: https://koha-community.org/download-koha/ | |
08:53 | ah manual | |
08:53 | sec | |
08:53 | https://koha-community.org/man[…]a-recommendations | |
08:57 | JesseM_ joined #koha | |
08:59 | magnuse | cait++ for being awesome! |
09:00 | huginn joined #koha | |
09:00 | abneiman joined #koha | |
09:03 | magnuse | patron logs on to opac on a public computer, uses koha, logs out. next patron uses "back" in the browser to see what previous patron has on loan etc. is there a bug about that? cait? |
09:04 | ashimema | ermm |
09:04 | I thought that had been resolved ages ago | |
09:04 | has it come back :( | |
09:05 | cait | yeah ti shoudl have been resolved |
09:05 | magnuse: is this the new summary thing on the start page or account? | |
09:05 | it has to be marke by page that caching is not allowed in the browser | |
09:05 | an di think we only do that for account pages | |
09:05 | so is it a specific page or... all? | |
09:06 | magnuse | i saw someone asking about it on the sedish slack |
09:06 | *swedish | |
09:06 | cait | sec |
09:06 | magnuse | they are on 18.11 |
09:07 | cait | bug 5371 |
09:07 | huginn | Bug http://bugs.koha-community.org[…]w_bug.cgi?id=5371 major, P3, ---, jonathan.druart, CLOSED FIXED, Back-button in OPAC shows previous user's details, after logout |
09:07 | cait | bug 22542 for more recent |
09:07 | huginn | Bug http://bugs.koha-community.org[…]_bug.cgi?id=22542 normal, P5 - low, ---, jonathan.druart, RESOLVED FIXED, Back browser should not allow to see other patrons details (see bug 5371) |
09:08 | cait | hm |
09:08 | can someone help me with jquery in return? | |
09:08 | i have callnubmers with <> in them that the browser just hides away thinking it's a tag | |
09:08 | i want to replace them | |
09:08 | 18.11 will fix it, but we can't update them right now | |
09:09 | magnuse | cait++ |
09:11 | cait | what i got is too greedy, killing the < from the browse shelf too |
09:11 | $("td.call_no").html(function(_,v){ | |
09:11 | return v.replace(/\</,'<')}); | |
09:11 | $("td.call_no").html(function(_,v){ | |
09:11 | return v.replace(/\>/,'>')}); | |
09:18 | magnuse | can you combine them, to replace <> with '<'> in one go? |
09:19 | cait | is this string |
09:20 | i want to catch the first <> before the browse link... and not all callnumbers have <> so lookign for the first doesn't work | |
09:20 | i need to look for those before the browse shelf link speficially | |
09:21 | magnuse | and there can be stuff between < and >? |
09:21 | cait | yep |
09:22 | the z there | |
09:22 | this shoudl display | |
09:22 | it's part of the callnumber | |
09:22 | but <z> is interpreted as a tag, so not visible | |
09:26 | inlibro joined #koha | |
09:34 | magnuse | in perl i would do something like /<(.*?)>/'<'$1>/ |
09:34 | ? makes the matching non-greedy | |
09:34 | $1 gives you what's inside the first parenthesis | |
09:35 | dunno what replace() is capable of | |
09:37 | cait | the non-greedy is not quite what i need |
09:37 | because if there is no <> as part of the call num, it targets the <a href...> | |
09:37 | i am trying ot make it look befure the () from the browse shelf part,... but failing right now | |
09:38 | and my regex works in an online tester i found, but only as long as I don't switch to javascript | |
09:38 | wonder if it doesn't support something or interprts differently :( | |
09:39 | (.*)(\>)(.*\(\<.*) gets me the < in theory as a second group | |
09:39 | only it doesn't | |
09:41 | perl could do it! | |
09:41 | * cait | gives up for now |
09:42 | magnuse | tricky! |
10:08 | khall joined #koha | |
10:13 | andreashm joined #koha | |
10:22 | magnuse_ joined #koha | |
10:25 | andreashm joined #koha | |
10:26 | inlibro joined #koha | |
11:26 | inlibro joined #koha | |
11:40 | alex_a joined #koha | |
12:26 | inlibro joined #koha | |
12:28 | andreash_ joined #koha | |
13:10 | khall joined #koha | |
13:15 | cait | bye all |
13:16 | cait left #koha | |
13:26 | andreashm joined #koha | |
13:26 | inlibro joined #koha | |
13:28 | wizzyrea joined #koha | |
13:38 | oleonard joined #koha | |
13:40 | oleonard | Hi all |
14:05 | ashimema | hey oleonard.. is https://gitlab.com/koha-dev/ko[…]atatables-upgrade pretty much up to date.. |
14:05 | thought I might give it a test | |
14:07 | oleonard | I think it still applied as recently as a week ago |
14:07 | ashimema | awesome |
14:09 | calire left #koha | |
14:19 | ashimema | Well.. given Jonathan only highlighted a minor alignement bug.. I'm inclined to treat my own testing as a QA run. |
14:26 | incoming.. present for you oleonard | |
14:26 | huginn | News from kohagit: Bug 23013: Compiled CSS <http://git.koha-community.org/[…]9ba051fbc2c9597c0> |
14:26 | News from kohagit: Bug 23013: Upgrade DataTables in the staff client <http://git.koha-community.org/[…]a37aca3bbcffc2468> | |
14:26 | inlibro joined #koha | |
14:26 | * ashimema | spent a few hours testing today on that one.. final check was to just make sure I was checking the most current incarnation. |
14:27 | oleonard | ashimema++ |
14:27 | * oleonard | braces himself for terrible consequences |
14:29 | is naturally pessimistic | |
14:29 | ashimema | me too.. but also happier for it to be pushed now and any issue caught earlyish in the cycle ;) |
14:30 | I wouldn't be at all surprised if something fails on this test run ;) | |
14:30 | lkely a minor selector change or something will knock out a selenium test.. there's where I'm hedging my bets | |
14:38 | laurence joined #koha | |
14:59 | koha-jenkins | Project Koha_Master_D9 build #855: UNSTABLE in 30 min: https://jenkins.koha-community[…]ha_Master_D9/855/ |
15:01 | laurence left #koha | |
15:09 | JesseM joined #koha | |
15:10 | koha-jenkins | Project Koha_Master_U18 build #340: SUCCESS in 40 min: https://jenkins.koha-community[…]a_Master_U18/340/ |
15:11 | Project Koha_Master_D8 build #366: STILL UNSTABLE in 43 min: https://jenkins.koha-community[…]ha_Master_D8/366/ | |
15:17 | wizzyrea | if anybody wants a pretty easy sign off |
15:17 | bug 16111 | |
15:17 | huginn | Bug http://bugs.koha-community.org[…]_bug.cgi?id=16111 normal, P5 - low, ---, jonathan.druart, Needs Signoff , RSS feed for OPAC search results has wrong content type |
15:17 | wizzyrea | well that bug description doesn't really get at the issue, it's that "RSS feeds are pretty well broken" |
15:17 | for search results | |
15:19 | oleonard | How so? |
15:20 | Broken from a validation point of view? | |
15:27 | inlibro joined #koha | |
15:28 | wizzyrea | broken as in feed readers won't parse them |
15:28 | i.e. useless | |
15:29 | oleonard | Huh. I have a couple of subscriptions with our 18.11.x system and it works. |
15:30 | wizzyrea: What feed reader did you test with? | |
15:32 | wizzyrea | the one that is in firefox, where you can subscribe with a bookmark |
15:33 | that's interesting that yours work though | |
15:33 | oleonard | Yeah I assume different systems have different levels of forgiveness? |
15:33 | wizzyrea | must be |
15:42 | * oleonard | hates that Firefox dropped native support for RSS |
15:45 | koha-jenkins | Yippee, build fixed! |
15:45 | wahanui | Congratulations! |
15:45 | koha-jenkins | Project Koha_Master_D9 build #856: FIXED in 29 min: https://jenkins.koha-community[…]ha_Master_D9/856/ |
15:51 | Mandersoon joined #koha | |
15:52 | oleonard | wizzyrea++ |
16:02 | Are some people *not* getting updatedatabase errors from Bug 14570 and if so how is our data different? | |
16:02 | huginn | Bug http://bugs.koha-community.org[…]_bug.cgi?id=14570 enhancement, P5 - low, ---, kyle, Pushed to master , Make it possible to add multiple guarantors to a record |
16:03 | oleonard | I'm happy to mess with the data in my test system if it means a working test system. I just don't want to start from scratch. |
16:13 | * oleonard | manually adds the table without the foreign key constraints |
16:21 | khall joined #koha | |
16:22 | koha-jenkins | Project Koha_Master_D8 build #367: STILL UNSTABLE in 43 min: https://jenkins.koha-community[…]ha_Master_D8/367/ |
16:27 | inlibro joined #koha | |
16:30 | andreashm joined #koha | |
17:20 | cait joined #koha | |
17:24 | * ashimema | doesn't get the errors |
17:26 | ashimema | this is update, not fresh install right oleonard? |
17:26 | oleonard | Right |
17:27 | ashimema | It works fine for me from a pretty well populated DB starting at 18.12.00 db update |
17:27 | inlibro joined #koha | |
17:28 | ashimema | do yo have sql_strict_modes turned on? |
17:28 | * ashimema | does but hasn't checked without |
17:28 | tries now | |
17:28 | oleonard | I don't know where that is turned on or off |
17:29 | ashimema | koha-conf |
17:30 | I don't think it'll be what andreasm had.. we're using integers | |
17:30 | hmm.. still can't get it to fail | |
17:32 | oleonard | I don't see any reference to sql_strict_mode in koha-conf |
17:32 | ashimema | lol.. why did your paste come from mtompset |
17:33 | you have to add it if you want to turn it on | |
17:33 | so.. you have it disabled.. that's the default | |
17:33 | oleonard | I have no idea why my paste said mtompset! I noticed that too. Accidental input history selection? |
17:35 | ashimema | could you try |
17:35 | `select * | |
17:35 | from information_schema.table_constraints | |
17:35 | where constraint_schema = 'YOUR_DB'` | |
17:35 | lol.. perhaps | |
17:35 | and paste the result? | |
17:35 | * ashimema | sent a long message: < https://matrix.org/_matrix/med[…]ZditDoRxEJgfArLDo > |
17:41 | pastebot | "oleonard" at 127.0.0.1 pasted "ashimema:" (264 lines) at http://paste.koha-community.org/8740 |
17:42 | ashimema | well.. |
17:42 | there's the issue | |
17:43 | you already have constraints setup with those names | |
17:43 | `| r_guarantee | | |
17:43 | | r_guarantor |` | |
17:43 | I wonder how you have those. | |
17:43 | did you test the patches before they were pushed? | |
17:43 | wonder if you somehow got them then | |
17:44 | though.. we should probably be idempotent on that front.. | |
17:44 | oleonard | poor db/testing hygiene probably |
17:44 | ashimema | just gotta put the youngest to bed.. but I'll have a quick look at improving the update |
17:44 | to get going quicker you could just drop those two contraints by name | |
17:44 | then the update should run fine | |
17:45 | oleonard | thanks so much! |
17:52 | ashimema | I mess up my Dev dB so frequently that I'm in the habbit of backing up super often and restoring super often too |
18:00 | cait | ashimema++ |
18:12 | * cait | waves |
18:27 | inlibro joined #koha | |
18:36 | chris_n` joined #koha | |
18:47 | lisettelatah joined #koha | |
19:08 | khall joined #koha | |
19:19 | andreashm joined #koha | |
19:27 | inlibro joined #koha | |
19:39 | cait | qa people around? |
19:45 | paul_p joined #koha | |
19:46 | andreashm joined #koha | |
19:47 | * magnuse | waves |
19:49 | magnuse | so when a file is "-rw-r--r-- 1 <instance>-koha <instance>-koha" but 'sudo koha-shell -c "cat file.txt" <instance>' fails with "Permission denied" - what am i not getting? |
19:56 | khall joined #koha | |
20:06 | cait | um |
20:14 | magnuse | never mind, i worked around it |
20:22 | cait | ok |
20:22 | magnuse++ | |
20:25 | khall joined #koha | |
20:27 | inlibro joined #koha | |
20:38 | davidnind left #koha | |
20:48 | alexbuckley joined #koha | |
21:03 | kathryn joined #koha | |
21:28 | inlibro joined #koha | |
21:54 | lukeG1 joined #koha | |
22:28 | inlibro joined #koha | |
23:28 | inlibro joined #koha | |
23:45 | papa joined #koha |
← Previous day | Today | Next day → | Search | Index