Re: [Koha] item display

2014-07-22 Thread Jerwyn Fernandez
Sam, In KOHA Administration\System preferences\Administration Under *Login Option IndepedantBranches* you can enable staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries by selecting *(prevent). *Through this once a patron or librarian l

[Koha] How to make researchable only records with phisical items?

2014-07-22 Thread jops
Hi everyone, I'm a koha newbie and this is my installation http://koha.magma.im I have imported some marc records but I would like to set researchable only the records that have at least one item. For example I'd like to search only records like this http://koha.magma.im/cgi-bin/koha/opac-detail.p

Re: [Koha] How to make researchable only records with phisical items?

2014-07-22 Thread Ian Bays
One way would be to set up a search group of all libraries and when you search you limit by that group. Because the library is an item characteristic it will not find any bib records that have no items. Good luck. Ian On 22/07/2014 16:08, jops wrote: Hi everyone, I'm a koha newbie and this

Re: [Koha] How to make researchable only records with phisical items?

2014-07-22 Thread ramirouvia .
Another way would be to set up Opac Suppression: http://manual.koha-community.org/3.8/en/administration.html (1.4.1.6. OpacSuppression) http://projects.palaso.org/projects/koha/wiki/Configure This way you have to manually select which records won't index. Regards, Ramiro 2014-07-22 12:19 GMT-03

[Koha] Report help

2014-07-22 Thread Elaine Bradtke
One of my colleagues was asking if I could give statistics on what we have from the 17th, 18th and first half of the 19th century. Preferably by year. So I guess I'm asking for a count by publication year. Any thoughts on the best way to approach this? -- Elaine Bradtke Data Wrangler VWML Engli

[Koha] OAI-PMH file information

2014-07-22 Thread Steve Sowder
I have defined an OAI Set and the program "build_oai_sets.pl" has been been executed. (It was not where the 3.16. manual said it would be.) Now, where is the OAI-PMH file? I suspect the site name is the same as the "setName" (or is it the "setSpec"?) as defined in the OAI set. What is the

Re: [Koha] OAI-PMH file information

2014-07-22 Thread Eric Lease Morgan
> What is the server address? > > The sets are defined at: > http://koha-intra.andrews.edu/cgi-bin/koha/admin/oai_sets.pl > > Is the server address "nearby"? I can answer this one, sort of. There is no file. Instead you are now able to issue sets of OAI "verbs" to your Koha installation and g

Re: [Koha] OAI-PMH file information

2014-07-22 Thread ramirouvia .
Maybe using: http://koha.andrews.edu/cgi-bin/koha/oai.pl?verb=Identify Though I can't get this to work on that server either, check if the preference: "OAI-PMH" is enabled in your instance. Ramiro Uviña 2014-07-22 17:24 GMT-03:00 Eric Lease Morgan : > > > What is the server address? > > > > T

Re: [Koha] OAI-PMH file information

2014-07-22 Thread Steve Sowder
I tried Ramiro's link and got an "OAI-PMH service not enabled". Which reminded me that I had turned on "OAI-PMH". I did that and now it responds to the link. I still need to snoop around but I think I am pointing in the right direction now. Thanks Steve On 7/22/2014 4:31 PM, ramirouvia .

[Koha] jquery : barcode triggers submit

2014-07-22 Thread Chad Roseburg
Our cataloging department liked the short-lived behavior in 3.14 where scanning barcodes would submit forms [ no one else did ]. I decided to try and reintroduce that for the cataloging module only -- testing using greasemonkey. Here's what I've got so far [ doesn't work ]: $('tag_952_subfield_p_9

Re: [Koha] Report help

2014-07-22 Thread Robin Sheat
Elaine Bradtke schreef op di 22-07-2014 om 17:35 [+0100]: > One of my colleagues was asking if I could give statistics on what we > have > from the 17th, 18th and first half of the 19th century. Preferably by > year. > When my Elasticsearch work is finished, this'll be just a matter of finding an

Re: [Koha] jquery : barcode triggers submit

2014-07-22 Thread Fridolin SOMERS
Hie, This behavior is added by the JS code : $("fieldset.rows input, fieldset.rows select").addClass("noEnterSubmit"); A better solution is to remove this class : $("tag_952_subfield_p_971027").removeClass("noEnterSubmit"); Le 22/07/2014 23:20, Chad Roseburg a écrit : Our cataloging depart