Re: [Koha] Access Koha without port number

2014-04-03 Thread Renvoize, Martin
IP based virtual hosts are a viable option, though of course that does mean
getting additional IP's for the server.

You may also want to try googling for NameVirtualHost and ServerName
directives. They should explain what you want. ;-)

Martin
On 2 Apr 2014 18:07, Doug Dearden dear...@sarsf.org wrote:

 Hello,

 Try pointing your browser at http://library.koha.shelf.books without any
 port number.  That should bring up the same page as with port number 80 .
  Port 80 is the default for http .

 For your staff client you can create a different IP address, then change
 your apache configuration file so it is only listening on that address and
 on the default port 80.  For instance, you might have something like:

 # OPAC
 VirtualHost 10.0.0.20:80
 ...

 # Intranet
 VirtualHost 10.0.0.21:80
 ...

 Substituting the correct IP addresses for your network in the above
 statements.

 You would also need to add entries to your ports.conf or similar file to
 reflect the changes.

 You then have to configure DNS settings to point the names to the
 different IP addresses.  For instance:
 opac.library.koha.shelf.books 10.0.0.20
 intranet.library.koha.shelf.books 10.0.0.21

 Restart apache, and you should be able to access the OPAC and staff client
 using the form http://opac.library.koha.shelf.books and
 http://intranet.library.koha.shelf.books

 Hope that helps.

 Doug

 -Original Message-
 From: Koha [mailto:koha-boun...@lists.katipo.co.nz] On Behalf Of Chrispin
 Simasiku Sitali
 Sent: Wednesday, April 02, 2014 10:22 AM
 To: koha-user
 Subject: [Koha] Access Koha without port number

 Greetings to all,

 I need help on how I can set up Koha without port number. Normally I access
 my Koha installation using: xxx.xxx.xxx.xxx:80 or
 library.koha.shelf.books:80 or :81 for staff client or opac

 I future I dont want to use port numbers after  ip addresses or fqdn

 Please help

 Sitali Chrispin Simasku



 --
 Charles Lwanga College of Education,
 P. O. Box 660193,
 Monze,
 ZAMBIA.

 Mobile: +26 0979 869471
 +26 0966 869471
 SKYPE: Libsitali
 ___
 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] Adding authorities error

2014-04-03 Thread MJ Ray
fisclibrary wrote:
 Can’t call method “data” on an undefined value at
 […]/authorities/blinddetail-biblio-search.pl line 123

Check the apache error log which might reveal more detail about what
went on.

Hope that helps,
-- 
MJ Ray (slef), member of www.software.coop, a for-more-than-profit co-op
http://koha-community.org supporter, web and library systems developer.
In My Opinion Only: see http://mjr.towers.org.uk/email.html
Available for hire (including development) at http://www.software.coop/
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Remove checked out status from marc records

2014-04-03 Thread Vimal Kumar V.
Dear Friends,
I exported marc from one Koha 3.10 system and imported in a newly installed
Koha 3.12 machine.
Some books status says that its still on loan. No transactions made in new
Koha.
I think checked out status in old Koha available with marc record.
How can I remove that status in bulk mode?
Please see the screenshot from the below link,
https://drive.google.com/file/d/0B6E3iEzJp74uSUhnSVZ6WXJGbUE/edit?usp=sharing

Regards,
-- 
Vimal Kumar V.
Technical Assistant
Mahatma Gandhi University Library
Kottayam, Kerala- 686 560
Web: http://www.vimalkumar.info
Blog: http://linuxhalwa.blogspot.com http://kohageek.blogspot.in
http://moovandan.blogspot.in
---
I forget what I was taught. I only remember what I have learnt
-Patrick White
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Framework Question

2014-04-03 Thread Nicole Engard
If I delete a framework that is being used what will happen if I go to
edit one of those bib records? Will it just use Default?

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


Re: [Koha] Access Koha without port number

2014-04-03 Thread Chrispin Simasiku Sitali
Thanks will try that option


On 3 April 2014 08:16, Renvoize, Martin martin.renvo...@ptfs-europe.comwrote:

 IP based virtual hosts are a viable option, though of course that does mean
 getting additional IP's for the server.

 You may also want to try googling for NameVirtualHost and ServerName
 directives. They should explain what you want. ;-)

 Martin
 On 2 Apr 2014 18:07, Doug Dearden dear...@sarsf.org wrote:

  Hello,
 
  Try pointing your browser at http://library.koha.shelf.books without any
  port number.  That should bring up the same page as with port number 80 .
   Port 80 is the default for http .
 
  For your staff client you can create a different IP address, then change
  your apache configuration file so it is only listening on that address
 and
  on the default port 80.  For instance, you might have something like:
 
  # OPAC
  VirtualHost 10.0.0.20:80
  ...
 
  # Intranet
  VirtualHost 10.0.0.21:80
  ...
 
  Substituting the correct IP addresses for your network in the above
  statements.
 
  You would also need to add entries to your ports.conf or similar file to
  reflect the changes.
 
  You then have to configure DNS settings to point the names to the
  different IP addresses.  For instance:
  opac.library.koha.shelf.books 10.0.0.20
  intranet.library.koha.shelf.books 10.0.0.21
 
  Restart apache, and you should be able to access the OPAC and staff
 client
  using the form http://opac.library.koha.shelf.books and
  http://intranet.library.koha.shelf.books
 
  Hope that helps.
 
  Doug
 
  -Original Message-
  From: Koha [mailto:koha-boun...@lists.katipo.co.nz] On Behalf Of
 Chrispin
  Simasiku Sitali
  Sent: Wednesday, April 02, 2014 10:22 AM
  To: koha-user
  Subject: [Koha] Access Koha without port number
 
  Greetings to all,
 
  I need help on how I can set up Koha without port number. Normally I
 access
  my Koha installation using: xxx.xxx.xxx.xxx:80 or
  library.koha.shelf.books:80 or :81 for staff client or opac
 
  I future I dont want to use port numbers after  ip addresses or fqdn
 
  Please help
 
  Sitali Chrispin Simasku
 
 
 
  --
  Charles Lwanga College of Education,
  P. O. Box 660193,
  Monze,
  ZAMBIA.
 
  Mobile: +26 0979 869471
  +26 0966 869471
  SKYPE: Libsitali
  ___
  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




-- 
Charles Lwanga College of Education,
P. O. Box 660193,
Monze,
ZAMBIA.

Mobile: +26 0979 869471
+26 0966 869471
SKYPE: Libsitali
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Remove checked out status from marc records

2014-04-03 Thread Vinod Kumar Mishra
Dear Vimal,

I think it is picking from koha 952 field so pls remove that sub-field with the 
help of marc edit which is responsible for that. It may be from other field 
also pls check and confirm me.

On Thu, 03 Apr 2014 19:06:30 +0530  wrote
Dear Friends,

I exported marc from one Koha 3.10 system and imported in a newly installed

Koha 3.12 machine.

Some books status says that its still on loan. No transactions made in new

Koha.

I think checked out status in old Koha available with marc record.

How can I remove that status in bulk mode?

Please see the screenshot from the below link,

https://drive.google.com/file/d/0B6E3iEzJp74uSUhnSVZ6WXJGbUE/edit?usp=sharing



Regards,

-- 

Vimal Kumar V.

Technical Assistant

Mahatma Gandhi University Library

Kottayam, Kerala- 686 560

Web: http://www.vimalkumar.info

Blog: http://linuxhalwa.blogspot.com http://kohageek.blogspot.in

http://moovandan.blogspot.in

---

I forget what I was taught. I only remember what I have learnt

-Patrick White

___

Koha mailing list http://koha-community.org

Koha@lists.katipo.co.nz

http://lists.katipo.co.nz/mailman/listinfo/koha



With regards,
Vinod Kumar Mishra,
Assistant Librarian,
(Library In-Charge)
Biju Patnaik Central Library,
NIT Rourkela,
Mob:91+9439420860
91+6612462103 (O)
email: vinod_librar...@rediffmail.com
 : mishrav...@gmail.com
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Remove checked out status from marc records

2014-04-03 Thread Katelyn Browne
952$q is the due date, and 952$s is the date last checked out--those are
the subfields I would clear. (Disclaimer: I have not tried this and don't
know for sure what will happen!)

--Katelyn.

Katelyn Browne
Middle/High School Librarian
Capital City Public Charter School
100 Peabody Street NW
Washington, DC 20011
(202) 387-0309 x1745
kbro...@ccpcs.org
http://www.ccpcs.org/library/


On Thu, Apr 3, 2014 at 11:45 AM, Vinod Kumar Mishra 
vinod_librar...@rediffmail.com wrote:

 Dear Vimal,

 I think it is picking from koha 952 field so pls remove that sub-field
 with the help of marc edit which is responsible for that. It may be from
 other field also pls check and confirm me.

 On Thu, 03 Apr 2014 19:06:30 +0530  wrote
 Dear Friends,

 I exported marc from one Koha 3.10 system and imported in a newly installed

 Koha 3.12 machine.

 Some books status says that its still on loan. No transactions made in new

 Koha.

 I think checked out status in old Koha available with marc record.

 How can I remove that status in bulk mode?

 Please see the screenshot from the below link,


 https://drive.google.com/file/d/0B6E3iEzJp74uSUhnSVZ6WXJGbUE/edit?usp=sharing



 Regards,

 --

 Vimal Kumar V.

 Technical Assistant

 Mahatma Gandhi University Library

 Kottayam, Kerala- 686 560

 Web: http://www.vimalkumar.info

 Blog: http://linuxhalwa.blogspot.com http://kohageek.blogspot.in

 http://moovandan.blogspot.in

 ---

 I forget what I was taught. I only remember what I have learnt

 -Patrick White

 ___

 Koha mailing list http://koha-community.org

 Koha@lists.katipo.co.nz

 http://lists.katipo.co.nz/mailman/listinfo/koha



 With regards,
 Vinod Kumar Mishra,
 Assistant Librarian,
 (Library In-Charge)
 Biju Patnaik Central Library,
 NIT Rourkela,
 Mob:91+9439420860
 91+6612462103 (O)
 email: vinod_librar...@rediffmail.com
  : mishrav...@gmail.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] Remove checked out status from marc records

2014-04-03 Thread Steven Nickerson
As Robin stated to me yesterday regarding my other query, checked out status 
comes from two locations (issues table and items.onloan field).   So if I 
understand what you're asking, in order to remove all availability status I 
think you'd need to run the following two statements in MySQL:
update items set onloan=NULL;
delete from issues;

Of course, make a backup first :-)   Hope this helps!
Steve

-Original Message-
From: Vimal Kumar V. [mailto:vimal0...@gmail.com] 
Sent: Thursday, April 03, 2014 9:36 AM
To: koha@lists.katipo.co.nz
Subject: [Koha] Remove checked out status from marc records

Dear Friends,
I exported marc from one Koha 3.10 system and imported in a newly installed 
Koha 3.12 machine.
Some books status says that its still on loan. No transactions made in new Koha.
I think checked out status in old Koha available with marc record.
How can I remove that status in bulk mode?
Please see the screenshot from the below link, 
https://drive.google.com/file/d/0B6E3iEzJp74uSUhnSVZ6WXJGbUE/edit?usp=sharing

Regards,
--
Vimal Kumar V.
Technical Assistant
Mahatma Gandhi University Library
Kottayam, Kerala- 686 560
Web: http://www.vimalkumar.info
Blog: http://linuxhalwa.blogspot.com http://kohageek.blogspot.in 
http://moovandan.blogspot.in
---
I forget what I was taught. I only remember what I have learnt
-Patrick White


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


Re: [Koha] ATHENA to KOHA Migration.

2014-04-03 Thread Steven Nickerson
Hi Jerwyn.
Although the link I find in a Google search is now broken
(http://contribs.koha.org/extension_view.php?eid=15) there is/was a Perl
script already written that converts the MARC records exported from Athena
into ones that you can simply import into Koha, without having to manipulate
them in MarcEdit.  The script is named athenamarc2koha.pl and did the
852-952 conversion for you.   Maybe someone else can comment on a location
that you can get the athenamarc2koha.pl script from, and if not I can
probably find a copy of it from similar migrations I've done in the past.

Steve
--
Date: Sun, 30 Mar 2014 18:15:08 -0700
From: Jerwyn Fernandez jerwyn_fernan...@southville.edu.ph
To: Bob Birchall b...@calyx.net.au
Cc: koha list koha@lists.katipo.co.nz
Subject: Re: [Koha] ATHENA to KOHA Migration.
Message-ID:
caoxu5lyhj6ul+bfmkyaduwvmvnyhessqyutgptukjxxt6pb...@mail.gmail.com
Content-Type: text/plain; charset=iso-8859-1

Hi Bob,

I'll be attaching the files again.

*Any way if you still can't view the attached files I'll be pasting here
the data.*

*This are the data that I exported in ATHENA:*

=LDR  00485nam  2200145 a 4500
=005  20110303132525.0
=008  100603s19uuxx00eng\d
=020  \\$a81-7301--211-3
=100  \\$aMadaan, Anil
=245  \\$aLearn about computers part 1.
=260  \\$aNew Delhi, India :$bDreamland Pub,$c1997.
=300  \\$a80
=440  \\$aDreamland's Learn About Computers
=650  \\$aComputer.
=852  \\$p0001$kM$h004$iM26$m1997$bMunich Library Main
Collection$6Books$924950.00Php$7Lib. Fund$820100603$zAGL

=LDR  00451nam  2200121 a 4500
=005  20101103145955.0
=008  100524s19uuxx00eng\d
=100  \\$aBryant-Mole, Karen
=245  \\$aI'm happy.
=260  \\$c1998.
=650  \\$aHappy$xJuvenile literature
=852  \\$p0025$kM$h155.4$iB84$m1998$bMunich Library Main
Collection$6Books$7Sch. Fund$820100524$zjmls
=852  \\$p3250$kM$h155.4$iB84$m1998$bMunich Library Main
Collection$6Books$7Sch. Fund$820101103$zjmls

=LDR  00407nam  2200121 a 4500
=005  20110303132719.0
=008  100520s19uuxx00eng\d
=100  \\$aBenito, Patricia Pe
=245  \\$aLearning basic programming :$bFor elementary schools.
=260  \\$bPhoenix,$c1994.
=650  \\$aProgramming
=650  \\$aComputer
=852  \\$bMunich Library Main
Collection$h005.1$iB43$m1994$p0007$zjmls$6Books$7Sch. Fund$820100520$kM

And this are the data when I edited in through MARCedit tool:

=LDR  00485nam  2200145 a 4500
=005  20110303132525.0
=008  100603s19uuxx00eng\d
=020  \\$a81-7301--211-3
=050  \\$aM 004$bM26 1997
=100  \\$aMadaan, Anil
=245  \\$aLearn about computers part 1.
=260  \\$aNew Delhi, India :$aDreamland Pub,$c1997.
=300  \\$a80
=440  \\$aDreamland's Learn About Computers
=541  \\$eE0001
=650  \\$aComputer.
=952  \\$pE0001$aMU$yBK$g24950.00Php$eLib. Fund$d20100603$xAGL$oM 004 M26
1997$bMU

=LDR  00451nam  2200121 a 4500
=005  20101103145955.0
=008  100524s19uuxx00eng\d
=050  \\$aM 155.4$bB84 1998 B84 1998
=050  \\$aM 155.4$bB84 1998 B84 1998
=100  \\$aBryant-Mole, Karen
=245  \\$aI'm happy.
=260  \\$c1998.
=541  \\$eE0025
=541  \\$eE3250
=650  \\$aHappy$xJuvenile literature
=952  \\$pE0025$aMU$yBK$eSch. Fund$d20100524$xjmls$oM 155.4 B84 1998 M
155.4 B84 1998$bMU
=952  \\$pE3250$aMU$yBK$eSch. Fund$d20101103$xjmls$oM 155.4 B84 1998 M
155.4 B84 1998$bMU

=LDR  00407nam  2200121 a 4500
=005  20110303132719.0
=008  100520s19uuxx00eng\d
=050  \\$a005.1 M$bB43 1994
=100  \\$aBenito, Patricia Pe
=245  \\$aLearning basic programming :$aFor elementary schools.
=260  \\$aPhoenix,$c1994.
=541  \\$eE0007
=650  \\$aProgramming
=650  \\$aComputer
=952  \\$aMU$pE0007$xjmls$yBK$eSch. Fund$d20100520$o005.1 B43 1994 M$bMU

**note that I just selected 3 records due to we have thousands of records.*

Take a look of the data that I edited; as you can see there is no problem
in the 1st record. However on the 2nd and 3rd record there are problems in
callnumbers take a look with the filed of 050$b and 952$o you will see the
problem.

Thanks,

- Jerwyn


On Sat, Mar 29, 2014 at 5:35 PM, Bob Birchall b...@calyx.net.au wrote:

 Hi Jerwyn,
 The list does not support attachments.  Describe the problem verbally or
 provide a click-able link.

 Regarding your original problem, using regular expressions to construct
 your 952$o is probably the best way to proceed.  At least, it is what we
 do.  The alternative is to import the data and manipulate the other
 sub-fields into 952$o afterwards, probably with a small script you would
 develop.

 Best wishes,
 Bob Birchall
 Calyx



 On 29/03/14 23:13, Jerwyn Fernandez wrote:

 Hi Vikram,

 I wonder why you can't still see the attached files.

 Thank you for your respond, please see attached files.

 Please let me know if you still can't view the files.

 Regards,

 - Jerwyn


 On Sat, Mar 29, 2014 at 1:23 PM, vikram zadgaonkar 
 vikramczadgaon...@gmail.com wrote:

  Hi,
 No attachment in your mail .
 In which format do you get data out 

Re: [Koha] ATHENA to KOHA Migration.

2014-04-03 Thread Liz Rea
Hi Steve (and Jerwyn),

You might have a look through
https://gitorious.org/koha-migration-toolbox and see if there are any
tools there that will help.

Cheers,
Liz Rea


On 04/04/14 05:56, Steven Nickerson wrote:
 Hi Jerwyn.
 Although the link I find in a Google search is now broken
 (http://contribs.koha.org/extension_view.php?eid=15) there is/was a Perl
 script already written that converts the MARC records exported from Athena
 into ones that you can simply import into Koha, without having to manipulate
 them in MarcEdit.  The script is named athenamarc2koha.pl and did the
 852-952 conversion for you.   Maybe someone else can comment on a location
 that you can get the athenamarc2koha.pl script from, and if not I can
 probably find a copy of it from similar migrations I've done in the past.

 Steve
 --
 Date: Sun, 30 Mar 2014 18:15:08 -0700
 From: Jerwyn Fernandez jerwyn_fernan...@southville.edu.ph
 To: Bob Birchall b...@calyx.net.au
 Cc: koha list koha@lists.katipo.co.nz
 Subject: Re: [Koha] ATHENA to KOHA Migration.
 Message-ID:
   caoxu5lyhj6ul+bfmkyaduwvmvnyhessqyutgptukjxxt6pb...@mail.gmail.com
 Content-Type: text/plain; charset=iso-8859-1

 Hi Bob,

 I'll be attaching the files again.

 *Any way if you still can't view the attached files I'll be pasting here
 the data.*

 *This are the data that I exported in ATHENA:*

 =LDR  00485nam  2200145 a 4500
 =005  20110303132525.0
 =008  100603s19uuxx00eng\d
 =020  \\$a81-7301--211-3
 =100  \\$aMadaan, Anil
 =245  \\$aLearn about computers part 1.
 =260  \\$aNew Delhi, India :$bDreamland Pub,$c1997.
 =300  \\$a80
 =440  \\$aDreamland's Learn About Computers
 =650  \\$aComputer.
 =852  \\$p0001$kM$h004$iM26$m1997$bMunich Library Main
 Collection$6Books$924950.00Php$7Lib. Fund$820100603$zAGL

 =LDR  00451nam  2200121 a 4500
 =005  20101103145955.0
 =008  100524s19uuxx00eng\d
 =100  \\$aBryant-Mole, Karen
 =245  \\$aI'm happy.
 =260  \\$c1998.
 =650  \\$aHappy$xJuvenile literature
 =852  \\$p0025$kM$h155.4$iB84$m1998$bMunich Library Main
 Collection$6Books$7Sch. Fund$820100524$zjmls
 =852  \\$p3250$kM$h155.4$iB84$m1998$bMunich Library Main
 Collection$6Books$7Sch. Fund$820101103$zjmls

 =LDR  00407nam  2200121 a 4500
 =005  20110303132719.0
 =008  100520s19uuxx00eng\d
 =100  \\$aBenito, Patricia Pe
 =245  \\$aLearning basic programming :$bFor elementary schools.
 =260  \\$bPhoenix,$c1994.
 =650  \\$aProgramming
 =650  \\$aComputer
 =852  \\$bMunich Library Main
 Collection$h005.1$iB43$m1994$p0007$zjmls$6Books$7Sch. Fund$820100520$kM

 And this are the data when I edited in through MARCedit tool:

 =LDR  00485nam  2200145 a 4500
 =005  20110303132525.0
 =008  100603s19uuxx00eng\d
 =020  \\$a81-7301--211-3
 =050  \\$aM 004$bM26 1997
 =100  \\$aMadaan, Anil
 =245  \\$aLearn about computers part 1.
 =260  \\$aNew Delhi, India :$aDreamland Pub,$c1997.
 =300  \\$a80
 =440  \\$aDreamland's Learn About Computers
 =541  \\$eE0001
 =650  \\$aComputer.
 =952  \\$pE0001$aMU$yBK$g24950.00Php$eLib. Fund$d20100603$xAGL$oM 004 M26
 1997$bMU

 =LDR  00451nam  2200121 a 4500
 =005  20101103145955.0
 =008  100524s19uuxx00eng\d
 =050  \\$aM 155.4$bB84 1998 B84 1998
 =050  \\$aM 155.4$bB84 1998 B84 1998
 =100  \\$aBryant-Mole, Karen
 =245  \\$aI'm happy.
 =260  \\$c1998.
 =541  \\$eE0025
 =541  \\$eE3250
 =650  \\$aHappy$xJuvenile literature
 =952  \\$pE0025$aMU$yBK$eSch. Fund$d20100524$xjmls$oM 155.4 B84 1998 M
 155.4 B84 1998$bMU
 =952  \\$pE3250$aMU$yBK$eSch. Fund$d20101103$xjmls$oM 155.4 B84 1998 M
 155.4 B84 1998$bMU

 =LDR  00407nam  2200121 a 4500
 =005  20110303132719.0
 =008  100520s19uuxx00eng\d
 =050  \\$a005.1 M$bB43 1994
 =100  \\$aBenito, Patricia Pe
 =245  \\$aLearning basic programming :$aFor elementary schools.
 =260  \\$aPhoenix,$c1994.
 =541  \\$eE0007
 =650  \\$aProgramming
 =650  \\$aComputer
 =952  \\$aMU$pE0007$xjmls$yBK$eSch. Fund$d20100520$o005.1 B43 1994 M$bMU

 **note that I just selected 3 records due to we have thousands of records.*

 Take a look of the data that I edited; as you can see there is no problem
 in the 1st record. However on the 2nd and 3rd record there are problems in
 callnumbers take a look with the filed of 050$b and 952$o you will see the
 problem.

 Thanks,

 - Jerwyn


 On Sat, Mar 29, 2014 at 5:35 PM, Bob Birchall b...@calyx.net.au wrote:

 Hi Jerwyn,
 The list does not support attachments.  Describe the problem verbally or
 provide a click-able link.

 Regarding your original problem, using regular expressions to construct
 your 952$o is probably the best way to proceed.  At least, it is what we
 do.  The alternative is to import the data and manipulate the other
 sub-fields into 952$o afterwards, probably with a small script you would
 develop.

 Best wishes,
 Bob Birchall
 Calyx



 On 29/03/14 23:13, Jerwyn Fernandez wrote:

 Hi Vikram,

 I wonder why you can't still see 

[Koha] UNIMARC - Linking Authority 280 heading field with the Bibliographic 675 field

2014-04-03 Thread Bacamarte JN
Ref: Koha 3.14.05 on Ubuntu OS 12.04 LTS Packages into VirtualBox



Hi,

By making changes in the 280 heading field to create an UDC authority type,
the filling process of the bibliographic field 675, subfield a, is
automatic, as can be seen in the images attached. But, unlike the other types
of authority, the data of the subfield 3, i.e., the corresponding authority
record number is missed. Without this identifier, nobody can retrieve
bibliographic records by searching UDC authority headers, although the UDC
notations can be seen in ISBD format, not in normal view.

I presume there is a script somewhere linking fields 280-608 that can be
changed to correct this fault. Can anyone confirm if my assumption is this
true and, if so, give me detailed instructions, i.e., step by step please
(I'm just a librarian) on how to fix this?

And finally, how to change to TEXT the data type of the subfield c of the
field 280, since some UDC notations have huge callouts?

Many thanks in advance!

Bacamarte (bacamarte...@gmail.com)



Authority

ORIGINAL

tagfield

tagsubfield

liblibrarian

*280*



*Heading - Form, Genre or Physical Characteristics*

280

7

Script of Cataloguing and Script of the Base Heading

280

8

Language of Cataloguing and Language of the Base Heading

280

a

Entry Element

280

j

Form Subdivision

280

x

Topical Subdivision

280

y

Geographical Subdivision

280

z

Chronological Subdivision

MY ADAPTATION

*280*



*Heading - UDC*

280

a

UDC Number, Single or Beginning of a Range

280

b

UDC Number, End of a Range

280

c

Explanatory Terms* (data type should be TEXT* )

280

v

UDC Edition

280

z

Language of Edition



Bibliographic

ORIGINAL

tagfield

tagsubfield

liblibrarian

*608*



*Form, Genre of Phyisical Characteristics Heading*

608

2

System Code

608

3

Authority Record Number

608

5

Institution to Which Field Applies

608

a

Entry Element

608

x

Topical Subdivision

608

y

Geographical Subdivision

608

z

Chronological Subdivision

PART OF MY ADAPTATION

*675*



*Universal Decimal Classification (UDC)*

675

3

Authority Record Number

675

a

UDC Number, Single or Beginning of a Range

675

b

UDC Number, End of a Range

675

c

Explanatory Terms

675

v

UDC Edition

675

z

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


Re: [Koha] Framework Question

2014-04-03 Thread Robin Sheat
Nicole Engard schreef op do 03-04-2014 om 09:46 [-0500]:
 If I delete a framework that is being used what will happen if I go to
 edit one of those bib records? Will it just use Default?

I would expect this:

  * Cataloguer opens bib record for editing, selects framework X
  * Edit page populates according to the framework
  * You modify framework X
  * Cataloguer saves record
  * Record saves in accordance with the updated framework, using the
data from the non-updated framework.

It probably wouldn't cause any issues, but if you deleted a field, that
info would most likely vanish. If a field is made mandatory, it might
reject the save in a confusing way (I'm not sure if mandatoryness is
enforced outside of the web interface, and if it is, what it does on
failure.)

For the most part, it'd be very similar to updating a framework, opening
an old record, hitting save.

Note that I haven't tested this nor read that code recently, but it's
what makes sense in my head :)

-- 
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


Re: [Koha] Framework Question

2014-04-03 Thread Paul A

At 10:39 AM 4/4/2014 +1300, Robin Sheat wrote:

Nicole Engard schreef op do 03-04-2014 om 09:46 [-0500]:
 If I delete a framework that is being used what will happen if I go to
 edit one of those bib records? Will it just use Default?

[snip]

If a field is made mandatory, it might
reject the save in a confusing way (I'm not sure if mandatoryness is
enforced outside of the web interface, and if it is, what it does on
failure.)


[Koha 3.8.5] I can confirm that it only appears to have an influence when 
re-saving a biblio. We made 300$3 mandatory for 'books' (but not default) 
and all the biblios in the default framework (some marc-edit imports and 
other mistakes) work perfectly except the missing value is highlighted 
in yellow on re-save.


Minor point on the side: the yellow highlight works well for 'biblios' 
but fails for 'items' despite a pop-up asking for the yellow value to be 
entered.  Anyone else noticed/fixed this?


Best -- Paul

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


Re: [Koha] Remove checked out status from marc records

2014-04-03 Thread Vimal Kumar V.
Dear Friends,
The problem solved by applying following commads as mentioned by Steve,

use koha_library;
update items set onloan=NULL;
delete from issues;

Thank you Vinod and Katelyn and Steve.
Regards,

-- 
Vimal Kumar V.
Technical Assistant
Mahatma Gandhi University Library
Kottayam, Kerala- 686 560
Web: http://www.vimalkumar.info
Blog: http://linuxhalwa.blogspot.com http://kohageek.blogspot.in
http://moovandan.blogspot.in
---
I forget what I was taught. I only remember what I have learnt
-Patrick White
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
http://lists.katipo.co.nz/mailman/listinfo/koha