Re: [Koha-devel] Pre-RFC on new discrete calendar

2016-07-21 Thread Tomas Cohen Arazi
I'm all for speed improvements. But: - A clear backwards-compatible upgrade path needs to be set and written. - I think (because of the speed improvement) that you are realying more on the DB features, this needs to be discussed if it can cause trouble. - The less you change the API, the easier is

Re: [Koha-devel] log file of activities for admin of koha in the library

2016-07-21 Thread rania azad mohammed
Oh that's great, I will do the necessary modification then I will posted back for the benifit of everyone, or you can added in the sql report Will be back to you soon Thanks again On Thursday, 21 July 2016, Michael Hafen wrote: > Ok, for the Guided Reports the SQL

Re: [Koha-devel] Pre-RFC on new discrete calendar

2016-07-21 Thread Philippe Blouin
On 07/21/2016 02:23 PM, Tomas Cohen Arazi wrote: I'm all for speed improvements. But: - A clear backwards-compatible upgrade path needs to be set and written. Our curent script takes the content of the "old" tables to create the new one. Past and future. Is that what you mean? More so, I've

Re: [Koha-devel] 16909 breaks member add

2016-07-21 Thread Marc Véron
Hi Blou, See Bug 16941 - Can not add new patron in staff client (Status Critical, PQA) Marc Am 21.07.2016 um 15:59 schrieb Philippe Blouin: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16909 It's been pushed to master, but seemingly is the cause of not being able to add new

Re: [Koha-devel] 'Refine your search' is missing

2016-07-21 Thread Luciana Coca
I solved the problem. Thanks Tomas for your help! I just changed the use_zebra_facets value in /etc/koha/koha-conf.xml 2016-07-18 12:13 GMT-03:00 Luciana Coca : > Hello everyone! > > I'm using Koha 3.22 on Debian 7.8. > > In Koha old versions there was an option

[Koha-devel] Benchmarks for QA tools

2016-07-21 Thread Jonathan Druart
Hi devs, During the last dev meeting [1] we discussed about the ability to add some benchmarks to the QA tools. I have written a prove of concept and push it to a branch [2]. I'd like to get feedbacks as I don't like how it works actually: 1/ It adds calls to C4 and Koha methods from the QA

[Koha-devel] Koha namespace architecture - calls for discussions

2016-07-21 Thread Jonathan Druart
Hi devs (me again), During the last dev meeting, we discussed about the naming of a new module in our Koha namespace. The conclusion was to ask the ML in order to get more ideas (as there was not a lot of attendees...). I'd like to take this opportunity to bring other architecture problems I

Re: [Koha-devel] Koha namespace architecture - calls for discussions

2016-07-21 Thread Tomas Cohen Arazi
El jue., 21 jul. 2016 a las 8:20, Jonathan Druart (< jonathan.dru...@bugs.koha-community.org>) escribió: > Hi devs (me again), > > During the last dev meeting, we discussed about the naming of a new > module in our Koha namespace. The conclusion was to ask the ML in > order to get more ideas (as

Re: [Koha-devel] Koha namespace architecture - calls for discussions

2016-07-21 Thread Marcel de Rooy
> 1/ Import stuffs modules > But we could imagine a generic Koha::Exporter|Importer modules with specific > Koha::Object[s?]::Export|Import modules. Sounds good to me: If Patron export needs some additional functionality, add Koha::Patron::Export on top of Koha::Exporter. > 2/ Move

Re: [Koha-devel] 16909 breaks member add

2016-07-21 Thread Philippe Blouin
Ha, very nice! Already passed QA. Thanks a lot, Marc!! Philippe Blouin, Responsable du développement informatique Tél. : (888) 604-2627 philippe.blo...@inlibro.com inLibro | pour esprit libre | www.inLibro.com On 07/21/2016 11:15

Re: [Koha-devel] log file of activities for admin of koha in the library

2016-07-21 Thread Tomas Cohen Arazi
This patches will improve it and are worth testing do they get pushed :-) https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16829 El mié., 20 jul. 2016 13:48, Michael Hafen escribió: > The action_logs table in the database could hold that information if you >

Re: [Koha-devel] log file of activities for admin of koha in the library

2016-07-21 Thread Michael Hafen
I don't think those patches will effect Rania's request for reports. Though adding the interface column will be a nice feature. On Jul 21, 2016 9:55 AM, "Tomas Cohen Arazi" wrote: > This patches will improve it and are worth testing do they get pushed :-) > >

[Koha-devel] Pre-RFC on new discrete calendar

2016-07-21 Thread Philippe Blouin
Hi! I'm throwing a line here, and I'd just like to get a feel for the value of offering some work to the community. Mind you, the work is "big" so honest responses could save us lot of wasted hours. We've developed a parallel calendar table to specify each individual day if it's opened or

Re: [Koha-devel] log file of activities for admin of koha in the library

2016-07-21 Thread Michael Hafen
Ok, for the Guided Reports the SQL will be something like: SELECT al.timestamp AS DateAndTime,b.surname,b.firstname,module,action FROM action_logs AS al LEFT JOIN borrowers AS b ON user = b.borrowernumber WHERE user <> 0 AND al.timestamp BETWEEN <> AND <> ORDER BY