How can I change the default tags displayed at the module of adding biblio? I would like to include tag 050 Library of Congress Call Number into the add bibilo, how can I do that? --------------------------------- Yahoo! DSL Something to write home about. Just $16.99/mo. or less
Standard fields containing LCC call numbers, such as MARC 21 050 may be hidden from view. They can be unhidden by choosing manage in tab setting for the relevant subfields in the Koha MARC framework editor accessible from System Administration : Biblio Framework (MARC Structure). Go to field 050. Select edit subfields from the right side of the row, which appears as a folder icon in some templates. Select edit subfields again from the bottom of the next page. Change the manage in tab setting from for the needed subfields 'ignore' to a particular editor tab number. Tab '0' may be a good choice for 050. Select save changes from the bottom of the page. Thomas D Quoting Carol Ku <carolcool01@yahoo.com> :
---------------- Beginning of the original message ------------------
How can I change the default tags displayed at the module of adding biblio? I would like to include tag 050 Library of Congress Call Number into the add bibilo, how can I do that?
--------------------------------- Yahoo! DSL Something to write home about. Just $16.99/mo. or less<br><center><hr></center>_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
------------------- End of the original message ---------------------
--------------------------------------------- Protect your mails from viruses thanks to Alinto Premium services http://www.alinto.com
Thanks for the prompt response. However, there seems to be a bug or something about editing the subfield. I sent a message several weeks ago about the error, it says something like web server error. A programmer said he can duplicate the problem for Windows version of Koha, that's all I hear from them. I hope this can be fixed in the next release of version 3. Otherwise, this put us in quite a handicapped position. Thanks. Thomas D <koha@alinto.com> wrote: Standard fields containing LCC call numbers, such as MARC 21 050 may be hidden from view. They can be unhidden by choosing manage in tab setting for the relevant subfields in the Koha MARC framework editor accessible from System Administration : Biblio Framework (MARC Structure). Go to field 050. Select edit subfields from the right side of the row, which appears as a folder icon in some templates. Select edit subfields again from the bottom of the next page. Change the manage in tab setting from for the needed subfields 'ignore' to a particular editor tab number. Tab '0' may be a good choice for 050. Select save changes from the bottom of the page. Thomas D Quoting Carol Ku :
---------------- Beginning of the original message ------------------
How can I change the default tags displayed at the module of adding biblio? I would like to include tag 050 Library of Congress Call Number into the add bibilo, how can I do that?
--------------------------------- Yahoo! DSL Something to write home about. Just $16.99/mo. or less
--------------------------------- _______________________________________________
Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
------------------- End of the original message ---------------------
--------------------------------------------- Protect your mails from viruses thanks to Alinto Premium services http://www.alinto.com --------------------------------- Yahoo! Personals Single? There's someone we'd like you to meet. Lots of someones, actually. Yahoo! Personals
Carol Ku wrote:
Thanks for the prompt response. However, there seems to be a bug or something about editing the subfield. I sent a message several weeks ago about the error, it says something like web server error. A programmer said he can duplicate the problem for Windows version of Koha, that's all I hear from them.
Hi Carol, It was Rob who duplicated the problem, he packages Koha for windows. Unfortunately none of the programmers (that I know of) use windows, so we havent worked on it.
I hope this can be fixed in the next release of version 3. Otherwise, this put us in quite a handicapped position. Thanks.
Im sure it will be, but to make sure you should bug report it at http://bugs.koha.org Chris -- Chris Cormack Katipo Communications Programmer www.katipo.co.nz 027 4500 789
Quoting Chris Cormack <chris@katipo.co.nz> :
---------------- Beginning of the original message ------------------
Carol Ku wrote:
Thanks for the prompt response. However, there seems to be a bug or something about editing the subfield. I sent a message several weeks ago about the error, it says something like web server error. A programmer said he can duplicate the problem for Windows version of Koha, that's all I hear from them.
Hi Carol,
It was Rob who duplicated the problem, he packages Koha for windows. Unfortunately none of the programmers (that I know of) use windows, so we havent worked on it.
I hope this can be fixed in the next release of version 3. Otherwise, this put us in quite a handicapped position. Thanks.
Im sure it will be, but to make sure you should bug report it at http://bugs.koha.org
Chris -- Chris Cormack Katipo Communications Programmer www.katipo.co.nz 027 4500 789 _______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
------------------- End of the original message ---------------------
--------------------------------------------- Protect your mails from viruses thanks to Alinto Premium services http://www.alinto.com
[Message included this time.] Assuming that your biblioframework is still the default one. The following two SQL statements should set 050 to visible if you log into your Koha database in MySQL. UPDATE marc_subfield_structure SET hidden = "0" WHERE tagfield = "050" AND tagsubfield = "a"; UPDATE marc_subfield_structure SET hidden = "0" WHERE tagfield = "050" AND tagsubfield = "b"; I have no clue about the Windows specific bug that would prevent the Koha web form from operating correctly. Thomas D Quoting Chris Cormack <chris@katipo.co.nz> :
---------------- Beginning of the original message ------------------
Carol Ku wrote:
Thanks for the prompt response. However, there seems to be a bug or something about editing the subfield. I sent a message several weeks ago about the error, it says something like web server error. A programmer said he can duplicate the problem for Windows version of Koha, that's all I hear from them.
Hi Carol,
It was Rob who duplicated the problem, he packages Koha for windows. Unfortunately none of the programmers (that I know of) use windows, so we havent worked on it.
I hope this can be fixed in the next release of version 3. Otherwise, this put us in quite a handicapped position. Thanks.
Im sure it will be, but to make sure you should bug report it at http://bugs.koha.org
Chris -- Chris Cormack Katipo Communications Programmer www.katipo.co.nz 027 4500 789 _______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
------------------- End of the original message ---------------------
--------------------------------------------- Protect your mails from viruses thanks to Alinto Premium services http://www.alinto.com
Thomas D a écrit :
[Message included this time.]
Assuming that your biblioframework is still the default one. The following two SQL statements should set 050 to visible if you log into your Koha database in MySQL.
UPDATE marc_subfield_structure SET hidden = "0" WHERE tagfield = "050" AND tagsubfield = "a"; UPDATE marc_subfield_structure SET hidden = "0" WHERE tagfield = "050" AND tagsubfield = "b";
I have no clue about the Windows specific bug that would prevent the Koha web form from operating correctly.
Thomas, sorry to come up like a devil in a box. But I think you have forgotten to set Tab to a value that would be between 0 and 9, 10 beeing the items tab. So your query should be UPDATE marc_subfield_structure SET hidden = "0", tab='0' WHERE tagfield = "050" AND tagsubfield = "a"; note the tab='0', to make it displayed on first tab both in addbiblio.pl and MARCdetail.pl (if the field exists. I don't have any Koha installed on Windows at the moment, so I can't reproduce the bug. But I will soon have to do this, and the bug will be inquired. -- Henri-Damien LAURENT
Henri-Damien Laurent has pointed out that I answered too quickly without attending to what I should have remembered. The tab where the subfield may be edited in the editor is set by marc_subfield_structure.tab . Mere visibility is controlled by marc_subfield_structure.hidden . In my haste, I had incorrectly inferred and implied a less flexible combined function for .marc_subfield_structure.hidden that it does not have. Sorry for any confusion. At least the values that I supplied for the SQL statements were valid values as I had taken the time to confirm from my own installation.. The complete two SQL statements.should be as follows. UPDATE marc_subfield_structure SET hidden = "0", tab = "0" WHERE tagfield = "050" AND tagsubfield = "a"; UPDATE marc_subfield_structure SET hidden = "0", tab = "0" WHERE tagfield = "050" AND tagsubfield = "b"; Thomas D Quoting Thomas D <koha@alinto.com> :
---------------- Beginning of the original message ------------------
[Message included this time.]
Assuming that your biblioframework is still the default one. The following two SQL statements should set 050 to visible if you log into your Koha database in MySQL.
UPDATE marc_subfield_structure SET hidden = "0" WHERE tagfield = "050" AND tagsubfield = "a"; UPDATE marc_subfield_structure SET hidden = "0" WHERE tagfield = "050" AND tagsubfield = "b";
I have no clue about the Windows specific bug that would prevent the Koha web form from operating correctly.
Thomas D
Quoting Chris Cormack <chris@katipo.co.nz> :
---------------- Beginning of the original message
Carol Ku wrote:
Thanks for the prompt response. However, there seems to
be
a bug or
something about editing the subfield. I sent a message several weeks ago about the error, it says something like web server error. A programmer said he can duplicate the problem for Windows version of Koha, that's all I hear from them.
Hi Carol,
It was Rob who duplicated the problem, he packages Koha for windows. Unfortunately none of the programmers (that I know of) use windows, so we havent worked on it.
I hope this can be fixed in the next release of version 3.
Otherwise,
this put us in quite a handicapped position. Thanks.
Im sure it will be, but to make sure you should bug report it at http://bugs.koha.org
Chris -- Chris Cormack Katipo Communications Programmer www.katipo.co.nz 027 4500 789 _______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
------------------- End of the original message
--------------------------------------------- Protect your mails from viruses thanks to Alinto Premium services http://www.alinto.com _______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
------------------- End of the original message ---------------------
--------------------------------------------- Protect your mails from viruses thanks to Alinto Premium services http://www.alinto.com
participants (4)
-
Carol Ku -
Chris Cormack -
Henri-Damien LAURENT -
Thomas D