Re: [Koha] Adding menu links in navbar

2018-07-16 Thread drojup
Hi Katrin,

Thank you for your reply.

I understand this downside. Your suggestion with the jQuery snippet is much
appreciated.

Thank you.



--
Sent from: http://koha.1045719.n5.nabble.com/Koha-general-f3047918.html
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] 18.05.01 up gradation login access denied

2018-07-16 Thread Arshad Iqbal
Thanks Mark Alexander and others for prompt response

On Mon, Jul 16, 2018 at 10:30 PM Mark Alexander  wrote:

> Excerpts from Arshad Iqbal's message of 2018-07-16 17:59:22 +0500:
> > I have upgraded koha version 16.05 to 18.05.01. After  upgraded i am
> trying
> > to login with master username and password but access denied to login
> error
> > facing.
>
> This is described in the release notes for 18.05:
>
> https://koha-community.org/koha-18-05-released/
>
> Quote:
>
> It is no longer possible to use the database user (defined in
> koha-conf.xml) to login into Koha.  You should first create a
> superlibrarian patron and use it for logging in.
> See the script misc/devel/create_superlibrarian.pl
>
> Also see this bug:
>
> https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20489
> ___
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> https://lists.katipo.co.nz/mailman/listinfo/koha
>


-- 


*Muhammad Arshad Iqbal*
Assistant Librarian at Academic Directorate,
National University of Science and Technology (NUST) Islamabad.
Phone number:051-90851371
Cell no.+923444900809
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Adding menu links in navbar

2018-07-16 Thread Katrin Fischer

Hi,

as Michael pointed out changing the templates has the downside that your 
changes will get lost when updating Koha. Another way to achieve what 
you want to do is using a jQuery snippet in the OpacUserJs system 
preference.


For general instructions the wiki has a lot of examples:
https://wiki.koha-community.org/wiki/JQuery_Library

For example this would add an additional entry to the navigation below 
the search box:


$(document).ready(function(){$("#moresearches a").last().after('class="pipe"> | Link text'); });


Hope this helps,

Katrin



___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] 18.05.01 up gradation login access denied

2018-07-16 Thread Mark Alexander
Excerpts from Arshad Iqbal's message of 2018-07-16 17:59:22 +0500:
> I have upgraded koha version 16.05 to 18.05.01. After  upgraded i am trying
> to login with master username and password but access denied to login error
> facing.

This is described in the release notes for 18.05:

https://koha-community.org/koha-18-05-released/

Quote:

It is no longer possible to use the database user (defined in
koha-conf.xml) to login into Koha.  You should first create a
superlibrarian patron and use it for logging in.
See the script misc/devel/create_superlibrarian.pl

Also see this bug:

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20489
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Drawing Software - Floor Mapping Library's Collections

2018-07-16 Thread jeff haskell
 Hi,

 I'm new to the list and grateful to be here.

 I'm interested in drawing software so patrons and new staff,
 volunteers and student interns can find materials on shelves easily
 and quickly.

 Ex. one set of shelves to the far left of the circulation desk would
 be labeled Fiction. Then the next set of shelves named Mystery in the
 shelves bay to the right of the Fiction shelves bay and then to the
 right of that the shelves Bay for Supernatural.

 This would be a floor plan so a patron could walk around the library
 and look at this floor plan map and know where Fiction is - where
 Mystery is, Biography, etc. for every collection throughout the
 library.

 If I sat with an illustrator they could probably draw it all up in
 about 20-30 minutes and I would just scan what they drew and have a
 map (crude compared to a 3D) but enough so a patron could find items.

 But, is there any *free* easy to learn / easy to use software which
could accomplish that?

 Thank you!

J.
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Report help needed

2018-07-16 Thread Elaine Bradtke
Yes, that did the trick!  Thanks
This is the revised report:
SELECT DISTINCT biblionumber, heading FROM (
 SELECT biblionumber, ExtractValue(metadata,
'//datafield[@tag="100"]/subfield[@code="a"]') AS heading
 FROM biblio_metadata
 WHERE
  length(ExtractValue(metadata,
'//datafield[@tag="100"]/subfield[@code="a"]')) != 0 AND
  length(ExtractValue(metadata,
'//datafield[@tag="100"]/subfield[@code="9"]')) = 0
UNION
 SELECT biblionumber, ExtractValue(metadata,
'//datafield[@tag="110"]/subfield[@code="a"]') AS heading
 FROM biblio_metadata
 WHERE
  length(ExtractValue(metadata,
'//datafield[@tag="110"]/subfield[@code="a"]')) != 0 AND
  length(ExtractValue(metadata,
'//datafield[@tag="110"]/subfield[@code="9"]')) = 0
UNION
 SELECT biblionumber, ExtractValue(metadata,
'//datafield[@tag="111"]/subfield[@code="a"]') AS heading
 FROM biblio_metadata
 WHERE
  length(ExtractValue(metadata,
'//datafield[@tag="111"]/subfield[@code="a"]')) != 0 AND
  length(ExtractValue(metadata,
'//datafield[@tag="111"]/subfield[@code="9"]')) = 0
UNION
 SELECT biblionumber, ExtractValue(metadata,
'//datafield[@tag="130"]/subfield[@code="a"]') AS heading
 FROM biblio_metadata
 WHERE
  length(ExtractValue(metadata,
'//datafield[@tag="130"]/subfield[@code="a"]')) != 0 AND
  length(ExtractValue(metadata,
'//datafield[@tag="130"]/subfield[@code="9"]')) = 0
) AS heads
ORDER BY heading

Elaine Bradtke
VWML
English Folk Dance and Song Society | http://www.efdss.org
Cecil Sharp House, 2 Regent's Park Road, London NW1 7AY
Tel+44 (0) 20 7485 2206 (This number is for the English Folk Dance and
Song Society in London, England. If you wish to phone me personally, send
an e-mail first. I work off site)
--
Registered Company No. 297142
Charity Registered in England and Wales No. 305999
---
"Writing about music is like dancing about architecture"
--Elvis Costello (Musician magazine No. 60 (October 1983), p. 52)

On Fri, Jul 13, 2018 at 11:53 AM, Paul Hoffman  wrote:

> On Fri, Jul 13, 2018 at 10:06:56AM -0700, Elaine Bradtke wrote:
> > This report finds Authors not linked to authorities.  But it only lists
> > their names (some of them are quite prolific, and sometimes it's only one
> > biblio that needs checking).
> > How can I make the following give the biblio number as well as the name?
> >
> > SELECT DISTINCT heading FROM (
> >  SELECT ExtractValue(metadata,
> > '//datafield[@tag="100"]/subfield[@code="a"]') AS heading
> >  FROM biblio_metadata
> >  WHERE
> >   length(ExtractValue(metadata,
> > '//datafield[@tag="100"]/subfield[@code="a"]')) != 0 AND
> >   length(ExtractValue(metadata,
> > '//datafield[@tag="100"]/subfield[@code="9"]')) = 0
> > UNION
> > [...]
>
> I assume that you can just add biblionumber to the output everywhere
> that a heading appears, something like this (untested!):
>
> SELECT DISTINCT biblionumber, heading FROM (
> SELECT biblionumber, ExtractValue(metadata, 
> '//datafield[@tag="100"]/subfield[@code="a"]')
> AS heading
> FROM   biblio_metadata
> WHERE  length(ExtractValue(metadata, 
> '//datafield[@tag="100"]/subfield[@code="a"]'))
> != 0
> ANDlength(ExtractValue(metadata, 
> '//datafield[@tag="100"]/subfield[@code="9"]'))
> = 0
> UNION
> [...]
>
> Paul.
>
> --
> Paul Hoffman 
> Software Manager
> Fenway Libraries Online
> c/o Wentworth Institute of Technology
> 550 Huntington Ave.
> Boston, MA 02115
> (617) 442-2384 (FLO main number)
> ___
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> https://lists.katipo.co.nz/mailman/listinfo/koha
>
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Fwd: [Koha-devel] Sparql and koha opac (wikidata and bnf to try things)

2018-07-16 Thread Claire Hernandez


Hello,

I sent this mail to koha-devel and I would like to know if you think 
"something" about that :)


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21074 
(screenshots inside)



Regards,
Claire.

 Message transféré 
Sujet : [Koha-devel] Sparql and koha opac (wikidata and bnf to try 
things)
Date :  Fri, 13 Jul 2018 16:09:41 +0200
De :Claire Hernandez 
Pour :  koha-de...@lists.koha-community.org




Hi,

I wanted to try and learn about semantic web and sparql. So I give it a 
try in a opac-detail view. This patch is just a poc and really not for 
production. I wanted to know if this type of work is relevant to you. I 
know in community previous work was done but maybe you can share where 
you are now with linked data ?


Just 2 words about the dev :
    * Simple syspref called "Explore", 3 possibilities: nothing, Bnf 
(national library in france) and Wikidata

    * Some datas are fetched, I suppose I have an ark in my biblio
    * I display "simple information", there is no complicated query
Possibles "next" :
  * Not one source (bnf or wikidata), but cross fetch between sources 
(ex: bnf + wikidata + europeana + geonames + whatever ;)
  * Having a "local triple store" or not doing real time to have 
information display quicker
  * More complicated queries to display timeline for date or exploring 
period, exploring "notable work" or "author collaborated with" etc.
The dev is probably not as clean as you wish, and I prefer to share 
something to talk about - even not perfect - than nothing. I plan to 
write a blog post about what I learn. Tell me if you are interested, it 
could encourage me to do it :p


Claire.
___
Koha-devel mailing list
koha-de...@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] 18.05.01 up gradation login access denied

2018-07-16 Thread Indranil Das Gupta
Pls read the release notes from 18.05 to understand the changed process.

-Indranil

On Mon 16 Jul, 2018, 6:30 PM Arshad Iqbal,  wrote:

> Hi,
>
> I have upgraded koha version 16.05 to 18.05.01. After  upgraded i am trying
> to login with master username and password but access denied to login error
> facing.
> Regards,
>
> --
>
>
> *Muhammad Arshad Iqbal*
> Assistant Librarian at Academic Directorate,
> National University of Science and Technology (NUST) Islamabad.
> Phone number:051-90851371
> Cell no.+923444900809
> ___
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> https://lists.katipo.co.nz/mailman/listinfo/koha
>
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] 18.05.01 up gradation login access denied

2018-07-16 Thread Arshad Iqbal
Hi,

I have upgraded koha version 16.05 to 18.05.01. After  upgraded i am trying
to login with master username and password but access denied to login error
facing.
Regards,

-- 


*Muhammad Arshad Iqbal*
Assistant Librarian at Academic Directorate,
National University of Science and Technology (NUST) Islamabad.
Phone number:051-90851371
Cell no.+923444900809
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Indicators in authorities when cataloguing a book record

2018-07-16 Thread Jonathan Druart
This behaviour has been added by
  commit 0ea53c745632e3b45bcad2d2238e4b126a323231
  Bug 14769: (Follow-up) Let blinddetail look at indicator values
If the indicators are not controlled, blinddetail should not overwrite
what the user already entered. Very strictly seen, we could say that it
is outside the scope. But it is strongly related.

It sounds like it's an expected change.


On Mon, 16 Jul 2018 at 09:50 Jonathan Druart <
jonathan.dru...@bugs.koha-community.org> wrote:

> Actually you can type, but the field is filled with a space and has a max
> length of 1.
> To edit it you should remove the space then enter the indicator you want.
> Bug?
>
> On Mon, 16 Jul 2018 at 06:01 drojup  wrote:
>
>> Hi,
>>
>> I am using version 18.05
>>
>> Steps that reproduce the issue.
>>
>> 1) Start cataloguing a bibliographic record (default framework).
>>
>> 2) In field 100 I search for an authority and then selecting it.
>>
>> 3) The 100 field has the authority that I selected but I can't type
>> anything
>> in indicators field (in order to add an indicator that I may have forgot).
>>
>> Regards,
>>
>>
>>
>> --
>> Sent from: http://koha.1045719.n5.nabble.com/Koha-general-f3047918.html
>> ___
>> Koha mailing list  http://koha-community.org
>> Koha@lists.katipo.co.nz
>> https://lists.katipo.co.nz/mailman/listinfo/koha
>>
>
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Indicators in authorities when cataloguing a book record

2018-07-16 Thread Jonathan Druart
Actually you can type, but the field is filled with a space and has a max
length of 1.
To edit it you should remove the space then enter the indicator you want.
Bug?

On Mon, 16 Jul 2018 at 06:01 drojup  wrote:

> Hi,
>
> I am using version 18.05
>
> Steps that reproduce the issue.
>
> 1) Start cataloguing a bibliographic record (default framework).
>
> 2) In field 100 I search for an authority and then selecting it.
>
> 3) The 100 field has the authority that I selected but I can't type
> anything
> in indicators field (in order to add an indicator that I may have forgot).
>
> Regards,
>
>
>
> --
> Sent from: http://koha.1045719.n5.nabble.com/Koha-general-f3047918.html
> ___
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> https://lists.katipo.co.nz/mailman/listinfo/koha
>
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Adding menu links in navbar

2018-07-16 Thread Michael Kuhn

Hi drojup

> Is there any way to add links in navbar (next to cart, lists)?
...
> I would like to add the links in opac, but I can't find how to do it.

As far as I know there is no Koha system preference to do that.

However to change stuff in the black header area of the Koha OPAC you 
will need to change file "masthead.inc" in the file system for every 
available language:


$ LANGUAGE=en
$ vi 
/usr/share/koha/opac/htdocs/opac-tmpl/bootstrap/$LANGUAGE/includes/masthead.inc


Be aware, such changes might be overwritten when you're updating Koha.

Hope this helps.

Best wishes: Michael
--
Geschäftsführer · Diplombibliothekar BBS, Informatiker eidg. Fachausweis
Admin Kuhn GmbH · Pappelstrasse 20 · 4123 Allschwil · Schweiz
T 0041 (0)61 261 55 61 · E m...@adminkuhn.ch · W www.adminkuhn.ch
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Indicators in authorities when cataloguing a book record

2018-07-16 Thread drojup
Hi,

I am using version 18.05

Steps that reproduce the issue.

1) Start cataloguing a bibliographic record (default framework).

2) In field 100 I search for an authority and then selecting it.

3) The 100 field has the authority that I selected but I can't type anything
in indicators field (in order to add an indicator that I may have forgot).

Regards,



--
Sent from: http://koha.1045719.n5.nabble.com/Koha-general-f3047918.html
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Adding menu links in navbar

2018-07-16 Thread Indranil Das Gupta
Pls look up OpacNav* and OpacHeader system preferences from the user manual.

-indranil

On Mon 16 Jul, 2018, 2:26 PM drojup,  wrote:

> Hi,
>
> I would like to add the links in opac, but I can't find how to do it.
>
> Regards,
>
>
>
> --
> Sent from: http://koha.1045719.n5.nabble.com/Koha-general-f3047918.html
> ___
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> https://lists.katipo.co.nz/mailman/listinfo/koha
>
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Adding menu links in navbar

2018-07-16 Thread drojup
Hi,

I would like to add the links in opac, but I can't find how to do it.

Regards,



--
Sent from: http://koha.1045719.n5.nabble.com/Koha-general-f3047918.html
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Adding menu links in navbar

2018-07-16 Thread Josef Moravec
Hi,

there is IntranetNav system preference, where you can write in some html to
add to navbar.

Josef

ne 15. 7. 2018 v 15:35 odesílatel drojup  napsal:

> Hi,
>
> Is there any way to add links in navbar (next to cart, lists)?
>
> Thank you
>
>
>
> --
> Sent from: http://koha.1045719.n5.nabble.com/Koha-general-f3047918.html
> ___
> Koha mailing list  http://koha-community.org
> Koha@lists.katipo.co.nz
> https://lists.katipo.co.nz/mailman/listinfo/koha
>
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha