[Koha] [off-topic] Free Linux course

2014-07-30 Thread Robin Sheat
I've heard of quite a few people who would like to do more with Koha,
but get stuck due to unfamiliarity with Linux. The Linux Foundation is
doing a free course that starts in a few days time, called Intro to
Linux. Normally this course costs US$2,400.

It might be the bit of a jump you need to let you get more out of it.

A bit of a description:
http://lifehacker.com/learn-linux-with-this-free-edx-course-from-the-linux-fo-1612770920
Installing a Linux distribution on your computer:
https://training.linuxfoundation.org/images/pdfs/Preparing_Your_Computer_for_LFS101x.pdf
The course itself:
https://www.edx.org/course/linuxfoundationx/linuxfoundationx-lfs101x-introduction-1621#.U9hxUNZ1PFK

(note: there's also a US$250 option if you want an actual certificate
out of it for professional development reasons or whatever.)

-- 
Robin Sheat
Catalyst IT Ltd.
✆ +64 4 803 2204
GPG: 5FA7 4B49 1E4D CAA4 4C38  8505 77F5 B724 F871 3BDF

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


[Koha] Patron Statistical Records..

2014-07-30 Thread Jerwyn Fernandez
Good day!..

The idea is to generate a statistical record/report who visited the library
on a specific time and date.

Basically there is a RFID reader at the entrance of the library or a
barcode reader, before library patron enters the library it is a must for
them to scan their ID.

I have heard some library have done this, integrated with our KOHA system,
please instruct me how am I going to implement it to our library.

Thank you and best regards,


-- 
*BE AMAZING. BE SOUTHVILLE.*

Jerwyn G. Fernadez, RL
Basic Education Librarian
Southville International School and Colleges
Tel: 825-6374 loc.117/146

*Like ushttps://www.facebook.com/sisc.monarchs
https://www.facebook.com/sisc.monarchs*
*Follow ushttps://twitter.com/SISCMonarchs
https://twitter.com/SISCMonarchs*
* www.southville.edu.ph
http://www.southville.edu.ph/*
* https://www.youtube.com/watch?v=CEeXh3JyXRg
https://www.youtube.com/watch?v=CEeXh3JyXRg*
   *http://library.southville.edu.ph*
http://library.southville.edu.ph
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Subject: SIP2 AF field sent even if patron password is invalid

2014-07-30 Thread Kyle Hall
This isn't really the same issue, but I did leave a comment on your bug
report.

Kyle

http://www.kylehall.info
ByWater Solutions ( http://bywatersolutions.com )
Meadville Public Library ( http://www.meadvillelibrary.org )
Crawford County Federated Library System ( http://www.ccfls.org )
Mill Run Technology Solutions ( http://millruntech.com )


On Tue, Jul 29, 2014 at 6:56 PM, BRANNON, CHRISTOPHER 
cbran...@cdalibrary.org wrote:

 I have an interesting SIP2 implementation issue. When authenticating
 through SIP2, if a valid patron id is passed in, but an *invalid* password
 is passed in, Koha's SIP2 server send back the AF ( screen message ) field
 even though the credentials are invalid. If a patron owes any fees, the
 server will send back the amount owed in an AF field.

 For instance, Overdrive will display this AF field even with an invalid
 password. Freegal does not ( but it may not display any AF field ). At
 least one SIP2 machine we tested against will also display the AF field
 when an invalid password is submitted.

 Is this a Koha issue, or a client side issue? The SIP2 protocol
 specification does not indicate that AF fields should be removed in the
 event of an invalid password. My guess is that some SIP2 server
 implementations may send back Invalid password messages which may be
 useful.

 Kyle

 Kyle, I filed a bug back in April related to this issue.  It hasn't been
 touched yet.

 http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12126

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

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


[Koha] OAI datasets

2014-07-30 Thread Steve Sowder

This is what I know.

I have read again the info at
http://www.openarchives.org/OAI/openarchivesprotocol.html#Set

It now makes more sense to me.

OAI databases are created with the full records of the database.
In our case that is about 190,000 records.

SetSpecs are subsets of the database (for Selective Harvesting).

Any record can be in zero or more SetSpecs.

In Koha, when an OAI set is defined that new SetSpec will appear in the 
ListSets.

(i.e. http://koha.andrews.edu/cgi-bin/koha/oai.pl?verb=ListSets)
without rerunning the program build_oai-set.pl.
At least, it appears after overnight.

However, there are still no records (should be 70,000) in either of the 
SetSpecs.

Which is what I don't understand.

The mapping follows the instructions given in the documentation.

So, questions:
Is mapping only available to certain MARC tags?
Indexed tags only?

For those of you that have SetSpecs with records please send me examples 
of your set mapping.



Thanks



Steve
sow...@andrews.edu



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


Re: [Koha] Report help

2014-07-30 Thread Elaine Bradtke
 I rewrote the report to make it user friendly to my colleagues who aren't
familiar with Roman numerals. . . little tweaks like this I can do. It's
the syntax and commands that I don't know how to use properly that's the
real problem.

SELECT
CASE SUBSTR(ExtractValue(m.marcxml,'//controlfield[@tag=008]'),8,2)
WHEN '15' THEN '16th'
WHEN '16' THEN '17th'
WHEN '17' THEN '18th'
WHEN '18' THEN '19th'
WHEN '19' THEN '20th'
WHEN '20' THEN '21st'
  ElSE 'Unknown' END
   AS Century, count(DISTINCT biblionumber) AS bibs FROM biblioitems m
GROUP BY century


On Tue, Jul 29, 2014 at 12:08 PM, BWS Johnson abesottedphoe...@yahoo.com
wrote:

 Salve!

 Way late response since I can't check my personal email at work.


 Ahrgh
 not enough sleep last night
 1900s=20th century. .
 

 Even if it's by Century, the initial ones had


   WHEN '18' THEN 'XVIII'
   WHEN '17' THEN 'XVII'

 So either way, it's flubbed, since that ought be XIX and XVIII
 respectively.


 Cheers,
 Brooke




-- 
Elaine Bradtke
Data Wrangler
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)
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] KohaCon14 Info?

2014-07-30 Thread Paul Poulain

Le 29/07/2014 14:57, Tomas Cohen Arazi a écrit :

Nicole,

(thanks for asking nicole)


Unfortunately there's no group rate at a hotel. People are finding hotels
on their own. I'll try to add info to the conference site today.
If anyone already has book/choosen an hotel, what about sharing on a 
wiki page, so we could all be close (or even in the same hotel).
TOMAS : is it possible to book short term appartments in Argentina ? 
(not speaking of something like airbnb, but in France there are 
companies like residhome.com or appartcity.com)


The conference itself will be held here: http://bit.ly/kohacon14-conference
The hackfest will take place in the university campus, specifically here:
http://bit.ly/kohacon14-hackfest

I'd suggest you book in a hotel near the conference site, or between it and
the campus. They are pretty close anyway (20 min walk, or 4 min taxi).

Please register to attend the conference, as we might need to change
location depending on the atendees (in such a situation, the conference
would take place in the campus too).

Thanks
To+


On Mon, Jul 28, 2014 at 10:17 AM, Nicole Engard neng...@gmail.com wrote:


Hi all,

Checking in on this. Mainly to see if there is a group rate at a hotel or
if we just find a nearby hotel?

Thanks in advance!
Nicole



On Sun, Jul 13, 2014 at 9:34 AM, Nicole Engard neng...@gmail.com wrote:


Hello folks,

I'm wondering if there is any more info about KohaCon14 available. I know
the dates and the location, but I'm wondering about the hotels
specifically. Will we have a group rate anywhere? Or are people just
finding hotels on their own?

Also is there anything we should know about coming in to Cordoba? Tips

for

getting around or from the airport to the hotels/conference location?

The wiki page: http://wiki.koha-community.org/wiki/KohaCon14 and the
website: http://koha-community.org/kohacon/kohacon14/ are a bit sparse

on

info.

Thanks!
Nicole


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








--
Paul Poulain - Associé-gérant
Tel : (33) 4 91 81 35 08
http://www.biblibre.com
Logiciels Libres pour les bibliothèques et les centres de documentation
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Koha 3.16.2: open external link in a separate window

2014-07-30 Thread MJ Ray
On 28 July 2014 11:22:12 CEST, sebastian.kr...@tuz-eisenach.de 
sebastian.kr...@tuz-eisenach.de wrote:
Is there a possibility to open a external weblink in a biblioitem in a
separate
browser tab?


Right click (or long click or whatever) and pick open in new window.

You can probably force it with scripts, but allowing users to control their 
browsers is cooler.
-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Comment Needed: Renewing of Lost items

2014-07-30 Thread DeMuth, Jennifer
Hi, 

We have seen this happen here in Roseville. I think preventing the ability to 
renew a lost item would be great, I know we would love that here, but maybe a 
system preference would be best for those who would like to still renew them. 

Thanks,

Jen DeMuth
Library Specialist 
Technology  Support Services
City of Roseville
225 Taylor St. 
Roseville, CA 95678
916-774-5238 desk
916-773-5594 fax
www.roseville.ca.us/library




-Original Message-
From: Koha [mailto:koha-boun...@lists.katipo.co.nz] On Behalf Of Kyle Hall
Sent: Monday, July 28, 2014 10:36 PM
To: Koha
Subject: [Koha] Comment Needed: Renewing of Lost items

Attention Librarians!

We need some input for dealing with Bug 9805 - Lost items are un-lost if 
returned, but not if renewed.

http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9805

The issue is that renewing a lost item does not mark it as found. I filed a 
patch to correct the issue, but there are concerns about patrons being able to 
'un-lose' items by renewing from the OPAC.

We have two proposed solutions solutions:
1) Prevent the renewing of lost items
2) Make renewing a lost item marking it as found controlled by a system 
preference

I submitted a patch for the latter solution, but after some thought I and some 
other developers think the former solution would be best. What do you all think?

Kyle

http://www.kylehall.info
ByWater Solutions ( http://bywatersolutions.com ) Meadville Public Library ( 
http://www.meadvillelibrary.org ) Crawford County Federated Library System ( 
http://www.ccfls.org ) Mill Run Technology Solutions ( http://millruntech.com ) 
___
Koha mailing list  http://koha-community.org Koha@lists.katipo.co.nz 
http://lists.katipo.co.nz/mailman/listinfo/koha
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Cataloging button missing from home page

2014-07-30 Thread Elaine Bradtke
We'll need more information to help.
What system are you using?  (version of Koha, and server) You'll find that
under About Koha if that button hasn't vanished too.

Cataloging is one of the buttons on the default home page.  Has someone
been customizing your displays?  You may need to talk to them about
restoring it.

E


On Tue, Jul 29, 2014 at 5:47 AM, Peter Cortinas pcorti...@me.com wrote:

 We are trying to configure for our public school and the Cataloging button
 is not available on the home page. Does anybody know how we would go about
 adding this?

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




-- 
Elaine Bradtke
Data Wrangler
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)
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Comment Needed: Renewing of Lost items

2014-07-30 Thread Katrin Fischer
+1 for 1) from me as well.

Katrin

Am 29.07.2014 um 08:44 schrieb Marc Véron:
 +1 for solution 1: Prevent the renewing of lost items
 
 Marc
 
 
 Am 28.07.2014 16:28, schrieb Kyle Hall:
 Attention Librarians!

 We need some input for dealing with Bug 9805 - Lost items are un-lost if
 returned, but not if renewed.

 http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9805

 The issue is that renewing a lost item does not mark it as found. I filed a
 patch to correct the issue, but there are concerns about patrons being able
 to 'un-lose' items by renewing from the OPAC.

 We have two proposed solutions solutions:
 1) Prevent the renewing of lost items
 2) Make renewing a lost item marking it as found controlled by a system
 preference

 I submitted a patch for the latter solution, but after some thought I and
 some other developers think the former solution would be best. What do you
 all think?

 Kyle

 http://www.kylehall.info
 ByWater Solutions ( http://bywatersolutions.com )
 Meadville Public Library ( http://www.meadvillelibrary.org )
 Crawford County Federated Library System ( http://www.ccfls.org )
 Mill Run Technology Solutions ( http://millruntech.com )
 ___
 Koha mailing list  http://koha-community.org
 Koha@lists.katipo.co.nz
 http://lists.katipo.co.nz/mailman/listinfo/koha

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

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


Re: [Koha] cross-links in analytics

2014-07-30 Thread Elaine Bradtke
Perhaps I misunderstood the question.
Our 773 links (from child /constituent part record to parent/host work in
the OPAC
The 774 links don't (from parent/host to child/constituent part) do not
work in the OPAC, (or staff interface). In fact, they won't even display,
even with the subfield settings set to display in OPAC and staff interface.

In our case, this doesn't matter too much because the link from constituent
part to host is more important - at least for our users.  The host record
gives information on location and availability, etc. and has a 520 field to
list all the constituent parts. But it would be nice if the 774 fields
worked as they should.


On Tue, Jul 29, 2014 at 4:30 AM, Giuseppe Angilella 
giuseppe.angile...@ct.infn.it wrote:

 Dear Elaine,

 thank you very much for your kind feedback.


 On Tue, 29 Jul 2014, Elaine Bradtke wrote:

  We  manually input our 774 fields.


 That's ok, but does it result in cross-links to the constituent parts in
 the host item's OPAC?

 Many thanks!

 Giuseppe.




-- 
Elaine Bradtke
Data Wrangler
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)
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] KohaCon14 Info?

2014-07-30 Thread Chris Cormack
* Paul Poulain (paul.poul...@biblibre.com) wrote:
 Le 29/07/2014 14:57, Tomas Cohen Arazi a écrit :
 Nicole,
 (thanks for asking nicole)
 
 Unfortunately there's no group rate at a hotel. People are finding hotels
 on their own. I'll try to add info to the conference site today.
 If anyone already has book/choosen an hotel, what about sharing on a wiki
 page, so we could all be close (or even in the same hotel).
 TOMAS : is it possible to book short term appartments in Argentina ? (not
 speaking of something like airbnb, but in France there are companies like
 residhome.com or appartcity.com)
Hi Paul

People could add to this page maybe

http://wiki.koha-community.org/wiki/Who_is_arriving_when


Chris
-- 
Chris Cormack
Catalyst IT Ltd.
+64 4 803 2238
PO Box 11-053, Manners St, Wellington 6142, New Zealand
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] KohaCon14 Info?

2014-07-30 Thread Tomas Cohen Arazi
On Wed, Jul 30, 2014 at 1:49 PM, Paul Poulain paul.poul...@biblibre.com
wrote:

 Le 29/07/2014 14:57, Tomas Cohen Arazi a écrit :

 Nicole,

 (thanks for asking nicole)


  Unfortunately there's no group rate at a hotel. People are finding hotels
 on their own. I'll try to add info to the conference site today.

 If anyone already has book/choosen an hotel, what about sharing on a wiki
 page, so we could all be close (or even in the same hotel).


That'd be great. Chris already started this for the arrival/departure
dates/times:

http://wiki.koha-community.org/wiki/Who_is_arriving_when


 TOMAS : is it possible to book short term appartments in Argentina ? (not
 speaking of something like airbnb, but in France there are companies like
 residhome.com or appartcity.com)


I only know there's airbnb.

But i'll ask tomorrow.





 The conference itself will be held here: http://bit.ly/kohacon14-
 conference
 The hackfest will take place in the university campus, specifically here:
 http://bit.ly/kohacon14-hackfest

 I'd suggest you book in a hotel near the conference site, or between it
 and
 the campus. They are pretty close anyway (20 min walk, or 4 min taxi).

 Please register to attend the conference, as we might need to change
 location depending on the atendees (in such a situation, the conference
 would take place in the campus too).

 Thanks
 To+


 On Mon, Jul 28, 2014 at 10:17 AM, Nicole Engard neng...@gmail.com
 wrote:

  Hi all,

 Checking in on this. Mainly to see if there is a group rate at a hotel or
 if we just find a nearby hotel?

 Thanks in advance!
 Nicole



 On Sun, Jul 13, 2014 at 9:34 AM, Nicole Engard neng...@gmail.com
 wrote:

  Hello folks,

 I'm wondering if there is any more info about KohaCon14 available. I
 know
 the dates and the location, but I'm wondering about the hotels
 specifically. Will we have a group rate anywhere? Or are people just
 finding hotels on their own?

 Also is there anything we should know about coming in to Cordoba? Tips

 for

 getting around or from the airport to the hotels/conference location?

 The wiki page: http://wiki.koha-community.org/wiki/KohaCon14 and the
 website: http://koha-community.org/kohacon/kohacon14/ are a bit sparse

 on

 info.

 Thanks!
 Nicole

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






 --
 Paul Poulain - Associé-gérant
 Tel : (33) 4 91 81 35 08
 http://www.biblibre.com
 Logiciels Libres pour les bibliothèques et les centres de documentation

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




-- 
Tomás Cohen Arazi
Prosecretaría de Informática
Universidad Nacional de Córdoba
✆ +54 351 5353750 ext 13168
GPG: B76C 6E7C 2D80 551A C765  E225 0A27 2EA1 B2F3 C15F
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Bibframe

2014-07-30 Thread Elaine Bradtke
This is being touted as a replacement for MARC
Something to keep our eyes on because it could have a major impact on Koha.
http://www.loc.gov/bibframe/


-- 
Elaine Bradtke
Data Wrangler
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)
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Koha 3.16.2: open external link in a separate window

2014-07-30 Thread Tomas Cohen Arazi
On Mon, Jul 28, 2014 at 6:22 AM, sebastian.kr...@tuz-eisenach.de 
sebastian.kr...@tuz-eisenach.de wrote:

 Hello Koha,

 I life in Germany and use Koha 3.16.2 in my private home. I have to link
 some
 additional informations from a wiki in the biblioitems. In this case I use
 the
 field URL, but the weblink in this field opens (in OPAC and Admin) in
 the same
 browser tab.


What do u mean by field URL? Are you talking about MARC21's 856$u?


Is there a possibility to open a external weblink in a biblioitem in a
 separate
 browser tab?


If that was the case you could add this to intranetuserjs and opacuserjs

$('#results_summary online_resources  a').attr(target,_blank);

-- 
Tomás Cohen Arazi
Prosecretaría de Informática
Universidad Nacional de Córdoba
✆ +54 351 5353750 ext 13168
GPG: B76C 6E7C 2D80 551A C765  E225 0A27 2EA1 B2F3 C15F
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] [Koha-devel] SIP2 AF field sent even if patron password is invalid

2014-07-30 Thread Katrin Fischer
Am 29.07.2014 um 17:55 schrieb Galen Charlton:
 That leaves open the question about what to do with other fields,
 particularly in the patron information response.  My feeling is that
 we should be conservative: if a patron password is sent via patron
 status or patron information requests, and it's wrong, no information
 about the patron should be returned.  There may need to be a
 configuration option controlling this behavior.

+1

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


[Koha] Fines not charged

2014-07-30 Thread Riley Childs
For some reason fines aren't being charged, all the settings are configured 
(finescharge in system settings, the cron is running, circ settings are 
configured). I can't figure it out, any suggestions?


Riley Childs
Junior
IT Admin and Librarian
web: rileychilds.net
email: rchi...@cucawarriors.com
office: +1 (704) 537-0331 x101
cell: +1 (704) 497-2086
Check Our our new library catalog: catalog.cucawarriors.com
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Installation of Koha, DSpace and CMS in the same server

2014-07-30 Thread DP Tripathi
Dear All,

Now a days most of the queries are regarding installation of Koha, DSpace
and CMS in the same server.

Please download the PDF (link is given below) file which contains the
detail about installation of Koha, DSpace 4.1 and CMS (Joomla/WordPress) in
the same server.

http://library.nitrkl.ac.in/kohadspacejoomla.pdf

Hope this will be useful to all.

Thanks with kind regards,

-- 
*
D. P. Tripathi
Assistant Librarian
Biju Patnaik Central Library
NIT Rourkela
Odisha - 769008
www.librarianguide.in
**
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] cross-links in analytics

2014-07-30 Thread Giuseppe Angilella

Dear Elaine,

I think I figured out.

I've explicitly found out that Currently Koha doesn't support 774 fields 
for display. See: http://wiki.koha-community.org/wiki/Analytics


However, it should amount to changing the XSLT stylesheet for displaying 
OPAC details. This is defined in Koha system's preference variable: 
OPACXSLTResultsDisplay, which is normally set to default.


I gather that Koha uses

/usr/share/koha/opac/htdocs/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl

as its default XSL stylesheet for displaying OPAC details of a record 
(Normal view). I could indeed locate the section in that file dealing 
with a 773 MARC datafield, if present, and it shouldn't be too difficult 
to clone that section for 774 datafields.


This would only solve the display part of the cross-links issue, as the 
easy procedure to add analytics (773 datafield) to a constituent item 
would not automatically add analytics (774 datafield) to the corresponding 
host item. That should be presently done manually, as you said.


Many thanks and best regards,

Giuseppe.

On Wed, 30 Jul 2014, Elaine Bradtke wrote:


Perhaps I misunderstood the question.Our 773 links (from child /constituent
part record to parent/host work in the OPAC
The 774 links don't (from parent/host to child/constituent part) do not work
in the OPAC, (or staff interface). In fact, they won't even display, even
with the subfield settings set to display in OPAC and staff interface.

In our case, this doesn't matter too much because the link from constituent
part to host is more important - at least for our users.  The host record
gives information on location and availability, etc. and has a 520 field to
list all the constituent parts. But it would be nice if the 774 fields
worked as they should.


On Tue, Jul 29, 2014 at 4:30 AM, Giuseppe Angilella
giuseppe.angile...@ct.infn.it wrote:
  Dear Elaine,

  thank you very much for your kind feedback.

  On Tue, 29 Jul 2014, Elaine Bradtke wrote:

We  manually input our 774 fields. 


That's ok, but does it result in cross-links to the constituent parts
in the host item's OPAC?

Many thanks!

Giuseppe.




--
Elaine Bradtke
Data Wrangler
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)



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