Catmandu-Breaker-0.141000755000765000024 013444134453 14730 5ustar00hochstenstaff000000000000README100644000765000024 1630313444134453 15714 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141NAME Catmandu::Breaker - Package that exports data in a Breaker format SYNOPSIS # From the command line # Using the default breaker $ catmandu convert JSON to Breaker < data.json # Break a OAI-PMH harvest $ catmandu convert OAI --url http://biblio.ugent.be/oai to Breaker # Using a MARC breaker $ catmandu convert MARC to Breaker --handler marc < data.mrc # Using an XML breaker plus create a list of unique record fields $ catmandu convert XML --path book to Breaker --handler xml --fields data.fields < t/book.xml > data.breaker # Find the usage statistics of fields in the XML file above $ catmandu breaker data.breaker # Use the list of unique fields in the report $ catmandu breaker --fields data.fields data.breaker # verbose output $ catmandu breaker -v data.breaker # The breaker commands needs to know the unique fields in the dataset to build statistics. # By default it will scan the whole file for fields. This can be a very # time consuming process. With --maxscan one can limit the number of lines # in the breaker file that can be scanned for unique fields $ catmandu breaker -v --maxscan 1000000 data.breaker # Alternatively the fields option can be used to specify the unique fields $ catmandu breaker -v --fields 245a,022a data.breaker $ cat data.breaker | cut -f 2 | sort -u > data.fields $ catmandu breaker -v --fields data.fields data.breaker # Export statistics as CSV. See L for supported formats. $ catmandu breaker --as CSV data.breaker DESCRIPTION Inspired by the article "Metadata Analysis at the Command-Line" by Mark Phillips in http://journal.code4lib.org/articles/7818 this exporter breaks metadata records into the Breaker format which can be analyzed further by command line tools. BREAKER FORMAT When breaking a input using 'catmandu convert {format} to Breaker' each metadata fields gets transformed into a 'breaker' format: ... For the default JSON breaker the input format is broken down into JSON-like Paths. E.g. when give this YAML input: --- name: John colors: - black - yellow - red institution: name: Acme years: - 1949 - 1950 - 1951 - 1952 the breaker command 'catmandu convert YAML to Breaker < file.yml' will generate: 1 colors[] black 1 colors[] yellow 1 colors[] red 1 institution.name Acme 1 institution.years[] 1949 1 institution.years[] 1950 1 institution.years[] 1951 1 institution.years[] 1952 1 name John The first column is a counter for each record (or the content of the _id field when present). The second column provides a JSON path to the data (with the array-paths translated to []). The third column is the field value. One can use this output in combination with Unix tools like grep, sort, cut, etc to inspect the breaker output: $ catmandu convert YAML to Breaker < file.yml | grep 'institution.years' Some input formats, like MARC, the JSON-path format doesn't provide much information which fields are present in the MARC because field names are part of the data. It is then possible to use a special handler to create a more verbose breaker output. For instance, without a special handler: $ catmandu convert MARC to Breaker < t/camel.usmarc fol05731351 record[][] LDR fol05731351 record[][] _ fol05731351 record[][] 00755cam 22002414a 4500 fol05731351 record[][] 001 fol05731351 record[][] _ fol05731351 record[][] fol05731351 fol05731351 record[][] 082 fol05731351 record[][] 0 fol05731351 record[][] 0 fol05731351 record[][] a With the special marc handler: $ catmandu convert MARC to Breaker --handler marc < t/camel.usmarc fol05731351 LDR 00755cam 22002414a 4500 fol05731351 001 fol05731351 fol05731351 003 IMchF fol05731351 005 20000613133448.0 fol05731351 008 000107s2000 nyua 001 0 eng fol05731351 010a 00020737 fol05731351 020a 0471383147 (paper/cd-rom : alk. paper) fol05731351 040a DLC fol05731351 040c DLC fol05731351 040d DLC For the Catmandu::PICA tools a pica handler is available. For the Catmandu::MAB2 tools a mab handler is available. For the Catmandu::XML tools an xml handler is available: $ catmandu convert XML --path book to Breaker --handler xml < t/book.xml BREAKER STATISTICS Statistical information can be calculated from a breaker output using the 'catmandu breaker' command: $ catmandu convert MARC to Breaker --handler marc < t/camel.usmarc > data.breaker $ catmandu breaker data.breaker | name | count | zeros | zeros% | min | max | mean | median | mode | variance | stdev | uniq%| entropy | |------|-------|-------|--------|-----|-----|------|--------|--------|----------|-------|------|---------| | 001 | 10 | 0 | 0.0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 100 | 3.3/3.3 | | 003 | 10 | 0 | 0.0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 10 | 0.0/3.3 | | 005 | 10 | 0 | 0.0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 100 | 3.3/3.3 | | 008 | 10 | 0 | 0.0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 100 | 3.3/3.3 | | 010a | 10 | 0 | 0.0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 100 | 3.3/3.3 | | 020a | 9 | 1 | 10.0 | 0 | 1 | 0.9 | 1 | 1 | 0.09 | 0.3 | 90 | 3.3/3.3 | | 040a | 10 | 0 | 0.0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 10 | 0.0/3.3 | | 040c | 10 | 0 | 0.0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 10 | 0.0/3.3 | | 040d | 5 | 5 | 50.0 | 0 | 1 | 0.5 | 0.5 | [0, 1] | 0.25 | 0.5 | 10 | 1.0/3.3 | The output table provides statistical information on the usage of fields in the original format. We see that the 001 field was counted 10 times in the data set, but the 040d value is only present 5 times. The 020a is empty in 10% (zeros%) of the records. The 001 has very unique values (entropy is maximum), but all 040c fields contain the same information (entropy is minimum). See Catmandu::Exporter::Stat for more information about the statistical fields and supported output formats. MODULES * Catmandu::Exporter::Breaker * Catmandu::Cmd::breaker SEE ALSO Catmandu, Catmandu::MARC, Catmandu::XML, Catmandu::Stat AUTHOR Patrick Hochstenbach, CONTRIBUTORS Jakob Voss, nichtich at cpan.org Johann Rolschewski, jorol at cpan.org Changes100644000765000024 170213444134453 16304 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141Revision history for Catmandu-Breaker 0.141 2019-03-19 10:40:52 CET - Fixing null values bug 0.14 2018-09-03 13:42:04 CEST - Adding support for --as FORMAT output formats (jorol) 0.13 2018-09-03 11:31:40 CEST - Adding MAB2 support (jorol) 0.12 2018-04-03 09:23:48 CEST - Fixing bug in --fields option 0.11 2018-02-08 10:14:32 CET - Adding PICA breaker (Jakob Voss) - Adding more tests 0.10 2016-06-30 15:03:48 CEST - Adding verbose option - Adding the maxscan option to limit preprocessing - Adding the fields option to specify which fields to use in the report - Adding a fields option to the Exporter to save the unique fields in a file 0.03 2016-06-16 09:07:37 CEST - Fixed bugs in the statistical format - Breaker for MARC breaks on every MARC-subfield - Deleted OAI-DC breaker - More POD 0.02 2016-06-15 16:21:56 CEST - Adding the breaker command line tool 0.01 2016-06-15 14:59:07 CEST - initial release LICENSE100644000765000024 4370513444134453 16047 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141This software is copyright (c) 2019 by Patrick Hochstenbach. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. Terms of the Perl programming language system itself a) the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version, or b) the "Artistic License" --- The GNU General Public License, Version 1, February 1989 --- This software is Copyright (c) 2019 by Patrick Hochstenbach. This is free software, licensed under: The GNU General Public License, Version 1, February 1989 GNU GENERAL PUBLIC LICENSE Version 1, February 1989 Copyright (C) 1989 Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The license agreements of most software companies try to keep users at the mercy of those companies. By contrast, our General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. The General Public License applies to the Free Software Foundation's software and to any other program whose authors commit to using it. You can use it for your programs, too. When we speak of free software, we are referring to freedom, not price. Specifically, the General Public License is designed to make sure that you have the freedom to give away or sell copies of free software, that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of a such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must tell them their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any work containing the Program or a portion of it, either verbatim or with modifications. Each licensee is addressed as "you". 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this General Public License and to the absence of any warranty; and give any other recipients of the Program a copy of this General Public License along with the Program. You may charge a fee for the physical act of transferring a copy. 2. You may modify your copy or copies of the Program or any portion of it, and copy and distribute such modifications under the terms of Paragraph 1 above, provided that you also do the following: a) cause the modified files to carry prominent notices stating that you changed the files and the date of any change; and b) cause the whole of any work that you distribute or publish, that in whole or in part contains the Program or any part thereof, either with or without modifications, to be licensed at no charge to all third parties under the terms of this General Public License (except that you may choose to grant warranty protection to some or all third parties, at your option). c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the simplest and most usual way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this General Public License. d) You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. Mere aggregation of another independent work with the Program (or its derivative) on a volume of a storage or distribution medium does not bring the other work under the scope of these terms. 3. You may copy and distribute the Program (or a portion or derivative of it, under Paragraph 2) in object code or executable form under the terms of Paragraphs 1 and 2 above provided that you also do one of the following: a) accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Paragraphs 1 and 2 above; or, b) accompany it with a written offer, valid for at least three years, to give any third party free (except for a nominal charge for the cost of distribution) a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Paragraphs 1 and 2 above; or, c) accompany it with the information you received as to where the corresponding source code may be obtained. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form alone.) Source code for a work means the preferred form of the work for making modifications to it. For an executable file, complete source code means all the source code for all modules it contains; but, as a special exception, it need not include source code for modules which are standard libraries that accompany the operating system on which the executable file runs, or for standard header files or definitions files that accompany that operating system. 4. You may not copy, modify, sublicense, distribute or transfer the Program except as expressly provided under this General Public License. Any attempt otherwise to copy, modify, sublicense, distribute or transfer the Program is void, and will automatically terminate your rights to use the Program under this License. However, parties who have received copies, or rights to use copies, from you under this General Public License will not have their licenses terminated so long as such parties remain in full compliance. 5. By copying, distributing or modifying the Program (or any work based on the Program) you indicate your acceptance of this license to do so, and all its terms and conditions. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. 7. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of the license which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the license, you may choose any version ever published by the Free Software Foundation. 8. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS Appendix: How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to humanity, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19xx name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (a program to direct compilers to make passes at assemblers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice That's all there is to it! --- The Artistic License 1.0 --- This software is Copyright (c) 2019 by Patrick Hochstenbach. This is free software, licensed under: The Artistic License 1.0 The Artistic License Preamble The intent of this document is to state the conditions under which a Package may be copied, such that the Copyright Holder maintains some semblance of artistic control over the development of the package, while giving the users of the package the right to use and distribute the Package in a more-or-less customary fashion, plus the right to make reasonable modifications. Definitions: - "Package" refers to the collection of files distributed by the Copyright Holder, and derivatives of that collection of files created through textual modification. - "Standard Version" refers to such a Package if it has not been modified, or has been modified in accordance with the wishes of the Copyright Holder. - "Copyright Holder" is whoever is named in the copyright or copyrights for the package. - "You" is you, if you're thinking about copying or distributing this Package. - "Reasonable copying fee" is whatever you can justify on the basis of media cost, duplication charges, time of people involved, and so on. (You will not be required to justify it to the Copyright Holder, but only to the computing community at large as a market that must bear the fee.) - "Freely Available" means that no fee is charged for the item itself, though there may be fees involved in handling the item. It also means that recipients of the item may redistribute it under the same conditions they received it. 1. You may make and give away verbatim copies of the source form of the Standard Version of this Package without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. 2. You may apply bug fixes, portability fixes and other modifications derived from the Public Domain or from the Copyright Holder. A Package modified in such a way shall still be considered the Standard Version. 3. You may otherwise modify your copy of this Package in any way, provided that you insert a prominent notice in each changed file stating how and when you changed that file, and provided that you do at least ONE of the following: a) place your modifications in the Public Domain or otherwise make them Freely Available, such as by posting said modifications to Usenet or an equivalent medium, or placing the modifications on a major archive site such as ftp.uu.net, or by allowing the Copyright Holder to include your modifications in the Standard Version of the Package. b) use the modified Package only within your corporation or organization. c) rename any non-standard executables so the names do not conflict with standard executables, which must also be provided, and provide a separate manual page for each non-standard executable that clearly documents how it differs from the Standard Version. d) make other distribution arrangements with the Copyright Holder. 4. You may distribute the programs of this Package in object code or executable form, provided that you do at least ONE of the following: a) distribute a Standard Version of the executables and library files, together with instructions (in the manual page or equivalent) on where to get the Standard Version. b) accompany the distribution with the machine-readable source of the Package with your modifications. c) accompany any non-standard executables with their corresponding Standard Version executables, giving the non-standard executables non-standard names, and clearly documenting the differences in manual pages (or equivalent), together with instructions on where to get the Standard Version. d) make other distribution arrangements with the Copyright Holder. 5. You may charge a reasonable copying fee for any distribution of this Package. You may charge any fee you choose for support of this Package. You may not charge a fee for this Package itself. However, you may distribute this Package in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution provided that you do not advertise this Package as a product of your own. 6. The scripts and library files supplied as input to or produced as output from the programs of this Package do not automatically fall under the copyright of this Package, but belong to whomever generated them, and may be sold commercially, and may be aggregated with this Package. 7. C or perl subroutines supplied by you and linked into this Package shall not be considered part of this Package. 8. The name of the Copyright Holder may not be used to endorse or promote products derived from this software without specific prior written permission. 9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. The End cpanfile100644000765000024 46713444134453 16504 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141requires 'perl', 'v5.10.1'; on 'test', sub { requires 'Test::Simple', '1.001003'; requires 'Test::More', '1.001003'; requires 'Test::Exception','0.32'; }; requires 'Catmandu', '>=0.9'; requires 'Catmandu::Stat', '0.10'; requires 'Path::Tiny', '0'; requires 'Moo', '0'; requires 'namespace::clean', '0'; dist.ini100644000765000024 4213444134453 16411 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141name = Catmandu-Breaker [@Milla] Build.PL100644000765000024 26513444134453 16270 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141# This Build.PL for Catmandu-Breaker was generated by Dist::Zilla::Plugin::ModuleBuildTiny 0.015. use strict; use warnings; use v5.10.1; use Module::Build::Tiny 0.034; Build_PL(); META.yml100644000765000024 227513444134453 16270 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141--- abstract: 'Package that exports data in a Breaker format' author: - 'Patrick Hochstenbach, C<< >>' build_requires: Test::Exception: '0.32' Test::More: '1.001003' Test::Simple: '1.001003' configure_requires: Module::Build::Tiny: '0.034' dynamic_config: 0 generated_by: 'Dist::Milla version v1.0.17, Dist::Zilla version 6.008, CPAN::Meta::Converter version 2.150005' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html version: '1.4' name: Catmandu-Breaker no_index: directory: - eg - examples - inc - share - t - xt requires: Catmandu: '0.9' Catmandu::Stat: '0.10' Moo: '0' Path::Tiny: '0' namespace::clean: '0' perl: v5.10.1 resources: bugtracker: https://github.com/LibreCat/Catmandu-Breaker/issues homepage: https://github.com/LibreCat/Catmandu-Breaker repository: https://github.com/LibreCat/Catmandu-Breaker.git version: '0.141' x_contributors: - 'Jakob Voss ' - 'Johann Rolschewski ' - 'Mohammad S Anwar ' - 'Patrick Hochstenbach ' x_serialization_backend: 'YAML::Tiny version 1.69' MANIFEST100644000765000024 161013444134453 16140 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141# This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.008. Build.PL Changes LICENSE MANIFEST META.json META.yml README cpanfile dist.ini lib/Catmandu/Breaker.pm lib/Catmandu/Cmd/breaker.pm lib/Catmandu/Exporter/Breaker.pm lib/Catmandu/Exporter/Breaker/Parser/json.pm lib/Catmandu/Exporter/Breaker/Parser/mab.pm lib/Catmandu/Exporter/Breaker/Parser/marc.pm lib/Catmandu/Exporter/Breaker/Parser/pica.pm lib/Catmandu/Exporter/Breaker/Parser/xml.pm t/Catmandu-Breaker.t t/Catmandu-Cmd-breaker.t t/Catmandu-Exporter-Breaker-Parser-json.t t/Catmandu-Exporter-Breaker-Parser-mab.t t/Catmandu-Exporter-Breaker-Parser-marc.t t/Catmandu-Exporter-Breaker-Parser-pica.t t/Catmandu-Exporter-Breaker-Parser-xml.t t/Catmandu-Exporter-Breaker.t t/author-pod-syntax.t t/book.xml t/camel.usmarc t/data.breaker t/data.fields t/data.tags t/mab.json t/marcxml.json t/oai_dc.json t/pica.json t/test.yaml META.json100644000765000024 403213444134453 16431 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141{ "abstract" : "Package that exports data in a Breaker format", "author" : [ "Patrick Hochstenbach, C<< >>" ], "dynamic_config" : 0, "generated_by" : "Dist::Milla version v1.0.17, Dist::Zilla version 6.008, CPAN::Meta::Converter version 2.150005", "license" : [ "perl_5" ], "meta-spec" : { "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", "version" : 2 }, "name" : "Catmandu-Breaker", "no_index" : { "directory" : [ "eg", "examples", "inc", "share", "t", "xt" ] }, "prereqs" : { "configure" : { "requires" : { "Module::Build::Tiny" : "0.034" } }, "develop" : { "requires" : { "Dist::Milla" : "v1.0.17", "Test::Pod" : "1.41" } }, "runtime" : { "requires" : { "Catmandu" : "0.9", "Catmandu::Stat" : "0.10", "Moo" : "0", "Path::Tiny" : "0", "namespace::clean" : "0", "perl" : "v5.10.1" } }, "test" : { "requires" : { "Test::Exception" : "0.32", "Test::More" : "1.001003", "Test::Simple" : "1.001003" } } }, "release_status" : "stable", "resources" : { "bugtracker" : { "web" : "https://github.com/LibreCat/Catmandu-Breaker/issues" }, "homepage" : "https://github.com/LibreCat/Catmandu-Breaker", "repository" : { "type" : "git", "url" : "https://github.com/LibreCat/Catmandu-Breaker.git", "web" : "https://github.com/LibreCat/Catmandu-Breaker" } }, "version" : "0.141", "x_contributors" : [ "Jakob Voss ", "Johann Rolschewski ", "Mohammad S Anwar ", "Patrick Hochstenbach " ], "x_serialization_backend" : "Cpanel::JSON::XS version 4.01" } t000755000765000024 013444134453 15114 5ustar00hochstenstaff000000000000Catmandu-Breaker-0.141book.xml100644000765000024 1051513444134453 16752 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/t Gambardella, Matthew XML Developer's Guide Computer 44.95 2000-10-01 An in-depth look at creating applications with XML. Ralls, Kim Midnight Rain Fantasy 5.95 2000-12-16 A former architect battles corporate zombies, an evil sorceress, and her own childhood to become queen of the world. Corets, Eva Maeve Ascendant Fantasy 5.95 2000-11-17 After the collapse of a nanotechnology society in England, the young survivors lay the foundation for a new society. Corets, Eva Oberon's Legacy Fantasy 5.95 2001-03-10 In post-apocalypse England, the mysterious agent known only as Oberon helps to create a new life for the inhabitants of London. Sequel to Maeve Ascendant. Corets, Eva The Sundered Grail Fantasy 5.95 2001-09-10 The two daughters of Maeve, half-sisters, battle one another for control of England. Sequel to Oberon's Legacy. Randall, Cynthia Lover Birds Romance 4.95 2000-09-02 When Carla meets Paul at an ornithology conference, tempers fly as feathers get ruffled. Thurman, Paula Splish Splash Romance 4.95 2000-11-02 A deep sea diver finds true love twenty thousand leagues beneath the sea. Knorr, Stefan Creepy Crawlies Horror 4.95 2000-12-06 An anthology of horror stories about roaches, centipedes, scorpions and other insects. Kress, Peter Paradox Lost Science Fiction 6.95 2000-11-02 After an inadvertant trip through a Heisenberg Uncertainty Device, James Salway discovers the problems of being quantum. O'Brien, Tim Microsoft .NET: The Programming Bible Computer 36.95 2000-12-09 Microsoft's .NET initiative is explored in detail in this deep programmer's reference. O'Brien, Tim MSXML3: A Comprehensive Guide Computer 36.95 2000-12-01 The Microsoft MSXML3 parser is covered in detail, with attention to XML DOM interfaces, XSLT processing, SAX and more. Galos, Mike Visual Studio 7: A Comprehensive Guide Computer 49.95 2001-04-16 Microsoft Visual Studio 7 is explored in depth, looking at how Visual Basic, Visual C++, C#, and ASP+ are integrated into a comprehensive development environment. mab.json100644000765000024 2035613444134453 16734 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/t[{"_id":"5-x","record":[["LDR","","_","00892nM2.01200024 h"],["001"," ","_","5-x"],["002","a","_","19991118"],["003"," ","_","20090911214751"],["004"," ","_","20110211"],["025","a","_","010000011"],["025","o","_","183277955"],["025","z","_","5-x"],["026"," ","_","ZDB5-x"],["030"," ","_","b|1dcz|z|||37"],["036","a","_","XA-DE"],["037","b","_","ger"],["050"," ","_","a|a|||||||||||"],["052"," ","_","p||||||z|||||||"],["070"," ","_","9001"],["070","a","_","DNB"],["070","b","_","9999"],["200","b","_","Deutschland / Bundesminister f╔ur Gesamtdeutsche Fragen"],["202","a","_","2028926-1"],["331"," ","_","A bis Z"],["335"," ","_","ein Taschen- u. Nachschlagebuch ╔uber d. anderen Teil Deutschlands"],["359"," ","_","hrsg. vom Bundesministerium f╔ur Gesamtdeutsche Fragen. Red. G╔unter Fischbach"],["405"," ","_","Aufl. 11.1969"],["410"," ","_","Bonn"],["412"," ","_","Dt. Bundes-Verl."],["425","b","_","1969"],["425","c","_","1969"],["531","z","_","874-6 Vorg. --->ÂSBZ von A bis Z"],["533","z","_","130385-5 Forts. --->ÂDDR-Handbuch"],["537"," ","_","F/BAC*090383."],["700"," ","_","|050ÂZDB"],["700"," ","_","|940ÂZDB"],["700","z","_","|100"],["700","z","_","|335"],["902","g","_"," 4011890-3 Deutschland "],["902","s","_"," 4066724-8 W╔orterbuch"],["904","a","_","DE-600ÂDE-600"],["907","g","_"," 4011890-3 Deutschland "],["907","f","_"," 1|W╔orterbuch"],["909","a","_","DE-600ÂDE-600"]]},{"_id":"7-3","record":[["LDR","","_","01184nM2.01200024 h"],["001"," ","_","7-3"],["002","a","_","19991118"],["003"," ","_","20100713165613"],["004"," ","_","20110211"],["016"," ","_","550147969ÂDNB"],["025","a","_","01000002X"],["025","o","_","224540449"],["025","z","_","7-3"],["026"," ","_","ZDB7-3"],["030"," ","_","b|1dcz|z|||37"],["036","a","_","XA-DDDEÂXA-DE"],["037","b","_","ger"],["050"," ","_","a|a|||||||||||"],["052"," ","_","p||||||zz||||||"],["070"," ","_","9001"],["070","a","_","DNB"],["070","b","_","9999"],["073"," ","_","12,2"],["076"," ","_","||b|||"],["200","b","_","Staatliches Museum f╔ur Tierkunde "],["202","a","_","35521-5"],["331"," ","_","Faunistische Abhandlungen"],["359"," ","_","Publ.: Museum f╔ur Tierkunde Dresden, Staatliche Naturhistorische Sammlungen Dresden"],["376"," ","_","FAUN ABH (DRES)"],["376","b","_","SMTFB"],["405"," ","_","1.1963/66 - 26.2008; damit Ersch. eingest."],["406","a","j","1963/66","k","2008"],["410"," ","_","Dresden"],["412"," ","_","Museum f╔ur Tierkunde"],["418"," ","a","Leipzig","g","Geest & Portig","h","anfangs"],["425","b","_","1963"],["425","c","_","2008"],["435"," ","_","24 cm"],["523"," ","_","Ersch. unregelm╔a¹ig"],["527","z","_","2233959-0 Online-Ausg. --->ÂFaunistische Abhandlungen"],["531","z","_","6068-9 Vorg. --->ÂStaatliches Museum f╔ur Tierkunde : Abhandlungen und Berichte aus dem Staatlichen Museum f╔ur Tierkunde in Dresden"],["537"," ","_","84!(22-02-08)"],["542","a","_","ISSN 0070-7252"],["542","a","_","ISSN 0375-2135"],["545","a","a","ISSN 0070-7252"],["574"," ","_","08,B23,0382"],["700"," ","_","|590ÂDNB"],["700"," ","_","|YÂDNB"],["700"," ","_","|590ÂZDB"],["700","z","_","|730"],["710","a","_","Zoologie"],["902","c","_"," 4219481-7 Dresden"],["902"," ","_","31 4219481-7 Museum f╔ur Tierkunde Dresden"],["902","f","_"," 1|Zeitschrift"],["904","a","_","DE-600ÂDE-600"]]},{"record":[["LDR","","_","01527nM2.01200024 h"],["001"," ","_","9-7"],["002","a","_","19991118"],["003"," ","_","20110111105737"],["004"," ","_","20110211"],["016"," ","_","550196447ÂDNB"],["025","a","_","010000038"],["025","o","_","643914482"],["025","z","_","9-7"],["026"," ","_","ZDB9-7"],["030"," ","_","b|1dcz|z|||37"],["036","a","_","XA-DDDEÂXA-DE"],["037","b","_","ger"],["050"," ","_","a|a|||||||||||"],["052"," ","_","p||||||zz||||||"],["070"," ","_","9001"],["070","a","_","DNB"],["070","b","_","9001"],["073"," ","_","12,2"],["076"," ","_","||b|||"],["200","b","_","Staatliches Museum f╔ur Tierkunde "],["202","a","_","35521-5"],["331"," ","_","Malakologische Abhandlungen"],["359"," ","_","Staatliches Museum f╔ur Tierkunde Dresden"],["370","a","_","Malakologische Abhandlungen aus dem Staatlichen Museum f╔ur Tierkunde Dresden"],["376"," ","_","MALAKOL ABH (DRES)"],["376"," ","_","Malakol. Abh."],["376","b","_","SMTMB"],["405"," ","_","1.1964/67 - 24.2006"],["406","a","j","1964/67","k","2006"],["410"," ","_","Dresden"],["412"," ","_","Museum f╔ur Tierkunde"],["418"," ","a","Leipzig","g","Geest & Porting","h","anfangs"],["425","b","_","1964"],["425","c","_","2006"],["435"," ","_","24 cm"],["507"," ","_","Nebent. ab 13.1988: Malakologische Abhandlungen aus dem Staatlichen Museum f╔ur Tierkunde Dresden"],["509"," ","_","Hrsg. anfangs: W. G╔otz"],["523"," ","_","Ersch. unregelm╔a¹ig"],["531","z","_","6068-9 Vorg. --->ÂStaatliches Museum f╔ur Tierkunde : Abhandlungen und Berichte aus dem Staatlichen Museum f╔ur Tierkunde in Dresden"],["533","z","_","2280187-X Forts. --->ÂMollusca"],["537"," ","_","14!IIA!(07-05-07)C!(06-08-07)"],["542","a","_","ISSN 0070-7260"],["542","z","_","brosch. : M 19.50 (Einzelbd.)"],["545","a","a","ISSN 0070-7260 = Malakologische Abhandlungen"],["574"," ","_","97,B12,0347"],["700"," ","_","|590ÂDNB"],["700"," ","_","|590ÂZDB"],["700","z","_","|730"],["710","a","_","Weichtiere"],["902","c","_"," 4219481-7 Dresden"],["902"," ","_","31 4219481-7 Museum f╔ur Tierkunde Dresden"],["902","f","_"," 1|Zeitschrift"],["904","a","_","DE-600ÂDE-600"],["907","g","_"," 4051176-5 Sachsen"],["907","s","_"," 4060087-7 Tiere"],["907","s","_"," 4352566-0 Weichtierkunde"],["907","f","_"," 1|Zeitschrift"],["909","a","_","DE-600ÂDE-600"]],"_id":"9-7"},{"_id":"10-3","record":[["LDR","","_","00671nM2.01200024 h"],["001"," ","_","10-3"],["002","a","_","19991118"],["003"," ","_","20070627061749"],["004"," ","_","20110211"],["025","a","_","010000046"],["025","o","_","183215696"],["025","z","_","10-3"],["026"," ","_","ZDB10-3"],["030"," ","_","b|1dcz|z|||35"],["036","a","_","XA-IT"],["050"," ","_","a|a|||||||||||"],["052"," ","_","pbi||||z|||||||"],["070"," ","_","9001"],["070","a","_","DNB"],["070","b","_","0012"],["310"," ","_","Bibliografia polarografica / 1"],["331"," ","_","Bibliografia polarografica"],["359"," ","_","Consiglio Nazionale delle Ricerche, Centro di Studio per la Polarografia"],["360"," ","_","P. 1, Elenco dei lavori e indice degli autori"],["405"," ","_","[1/3.]1922/49(1949); 4.1922/51(1951) - 15.1922/62(1964)"],["410"," ","_","Spoleto"],["425","b","_","1949"],["425","c","_","1964"],["530","z","_","205482-6 Beil. zu --->ÂêLaë ricerca scientifica"],["533","z","_","3564-6 Forts. --->ÂBibliografia polarografica / 1 2"],["537"," ","_","C*240386"],["700"," ","_","|540ÂZDB"],["700","z","_","|740"]]},{"record":[["LDR","","_","00886nM2.01200024 h"],["001"," ","_","12-7"],["002","a","_","19991118"],["003"," ","_","20100309015012"],["004"," ","_","20110211"],["025","a","_","010000054"],["025","o","_","263588241"],["025","z","_","12-7"],["026"," ","_","ZDB12-7"],["030"," ","_","b|1dcz|z|||27"],["036","a","_","XA-DE"],["037","b","_","ger"],["050"," ","_","a|a|||||||||||"],["052"," ","_","p||||||zz||||||"],["070"," ","_","9001"],["070","a","_","DNB"],["070","b","_","9999"],["200"," ","_","Osram-Gesellschaft "],["202","a","_","35536-7"],["331"," ","_","Technisch-wissenschaftliche Abhandlungen der Osram-Gesellschaft"],["359"," ","_","hrsg. unter Mitw. ... von Wilfried Meyer"],["376"," ","_","Tech.-Wiss. Abh. Osram-Ges."],["376","b","_","TAOGA"],["405"," ","_","5.1943; 6.1953 - 11.1973; 12.1986; damit Ersch. eingest."],["410"," ","_","Berlin ; G╔ottingen ; Heidelberg"],["412"," ","_","Springer"],["425","b","_","1943"],["425","c","_","1986"],["531","z","_","502428-6 Vorg. --->ÂOsram-Konzern : Technisch-wissenschaftliche Abhandlungen aus dem Osram-Konzern"],["537"," ","_","C*25!6!(l╔auft wieder)Kopie188!"],["542","a","_","ISSN 0078-6799"],["542","a","_","ISSN 0371-5264"],["700"," ","_","|600ÂZDB"],["700","z","_","|900"],["902","s","_"," 4035633-4 Lichttechnik"],["902","s","_"," 4067488-5 Zeitschrift"],["904","a","_","DE-600ÂDE-600"]],"_id":"12-7"}] data.tags100644000765000024 45513444134453 17031 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/t001 005 008 022a 035a 040a 050a 080a 082a 210a 245a 245b 246a 260a 260b 260c 490a 500a 525a 561a 580a 610a 610v 610z 650a 650v 650x 710a 8529 852a 852b 852c 852d 852j 852x 852z 920a LDR Z301 Z302 Z303 Z305 Z306 Z308 Z309 Z30F Z30L Z30P Z30a Z30b Z30c Z30d Z30f Z30h Z30i Z30j Z30k Z30l Z30m Z30p Z30x pica.json100644000765000024 5747713444134453 17127 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/t[{"_id":"658700774","record":[["001@","","0","703"],["001A","","0","2045:10-03-11"],["001B","","0","2045:09-04-13","t","18:26:39.000"],["001D","","0","2045:14-05-11"],["001U","","0","utf8"],["001X","","0","0","x","","y",""],["002@","","0","Oax"],["003@","","0","658700774"],["004A","","0","3642036805"],["004J","","0","3642036813","A","9783642036811","f","160.45 €"],["006X","","c","CIANDO","0","43423"],["007G","","c","GBV","0","658700774"],["008E","","a","ZDB-22-CAN"],["009@","","a","CIANDO","b","eBook"],["009P","05","S","1","a","http://ebooks.ciando.com/book/index.cfm/bok_id/43423","n","CIANDO","q","application/pdf","v","10-03-11","3","34","A","CIANDO"],["009Q","","S","1","y","C","a","http://www.ciando.com/img/books/big/3642036813_k.jpg","n","CIANDO","q","image/jpeg","3","93","A","Ciando"],["009Q","","S","1","y","C","a","http://www.ciando.com/img/books/3642036813_k.jpg","n","CIANDO","q","image/jpeg","3","93","A","Ciando"],["009Q","","S","0","y","Inhaltsverzeichnis","0","pdf","a","http://www.gbv.de/dms/bowker/toc/9783642036804.pdf","m","DE-601","n","Bowker","q","pdf/application","v","2011-12-23","3","04","A","GBV","B","2"],["009Q","","S","1","y","C","a","http://www.ciando.com/img/books/width167/3642036813_k.jpg","n","CIANDO","q","image/jpeg","3","93","A","Ciando"],["009Q","","S","1","y","C","a","http://www.ciando.com/pictures/bib/3642036813bib_t_1.jpg","n","CIANDO","q","image/jpeg","3","93","A","Ciando"],["010@","","a","eng"],["011@","","a","2010"],["013@","","0","o3"],["016D","","0","cr"],["016H","","0","Elektronische Ressource"],["020F","","a","The agricultural world has changed significantly during the last years. The excessive use of heavy machinery, waste disposal, the use of agrochemicals and new soil cultivation means led to severe problems, which agricultural engineers have to cope with in order to prevent soil from permanent irreversible damage.This Soil Biology volume will update readers on several cutting-edge aspects of sustainable soil engineering including topics such as: soil compaction, soil density increases, soil disturbance and soil fragmentation, soil tillage machineries and optimization of tillage tools, soil traffic and traction, effects of heavy agricultural machines, the use of robotics in agriculture and controlled traffic farming, mechanical weed control, the characterization of soil variability and the recycling of compost and biosolids in agricultural soils."],["021A","","a","Soil Engineering. (Soil Biology, Vol 20)"],["028A","","d","Athanasios P.","a","Dedousis"],["028B","01","d","Thomas","a","Bartzanas"],["032@","","a","1. Aufl."],["033A","","p","[s.l.]","n","Springer-Verlag"],["034D","","a","Online Ressource (5007 KB, 300 S.)"],["044Z","","b","ciando","a","Politik Umweltpolitik"]]},{"record":[["001@","","0","703"],["001A","","0","2045:10-03-11"],["001B","","0","1999:22-11-12","t","06:31:01.000"],["001D","","0","2045:14-05-11"],["001U","","0","utf8"],["001X","","0","0"],["002@","","0","Oax"],["003@","","0","65869538X"],["004A","","0","3642050751"],["004J","","0","364205076X","A","9783642050763","f","160.45 €"],["006X","","c","CIANDO","0","42632"],["007G","","c","GBV","0","65869538X"],["008E","","a","ZDB-22-CAN"],["009@","","a","CIANDO","b","eBook"],["009P","05","S","1","a","http://ebooks.ciando.com/book/index.cfm/bok_id/42632","n","CIANDO","q","application/pdf","v","10-03-11","3","34","A","CIANDO"],["009Q","","S","1","y","C","a","http://www.ciando.com/img/books/364205076X_k.jpg","n","CIANDO","q","image/jpeg","3","93","A","Ciando"],["009Q","","S","1","y","C","a","http://www.ciando.com/img/books/big/364205076X_k.jpg","n","CIANDO","q","image/jpeg","3","93","A","Ciando"],["009Q","","S","1","y","C","a","http://www.ciando.com/img/books/width167/364205076X_k.jpg","n","CIANDO","q","image/jpeg","3","93","A","Ciando"],["009Q","","S","1","y","C","a","http://www.ciando.com/pictures/bib/364205076Xbib_t_1_38234.jpg","n","CIANDO","q","image/jpeg","3","93","A","Ciando"],["010@","","a","eng"],["011@","","a","2010"],["013@","","0","o3"],["016D","","0","cr"],["016H","","0","Elektronische Ressource"],["020F","","a","The relationships between soils, microbes and humans are of crucial relevance in the tropics, where plant stress and microbial activity are exacerbated. This volume of Soil Biology presents the living component of tropical soils, showing how it is shaped by environmental conditions and emphasizing its dramatic impact on human survival and well-being. Following an introduction to the specificities of tropical soils and of their microbial communities, the biological aspects of soil management are examined, dealing with land use change, conservation and slash-and-burn agriculture, the restoration of hot deserts, agroforestry and paddy rice cultivation. As they are of particular relevance for tropical agriculture, symbioses of plants and microbes are thoroughly covered, as are the biodegradation of pesticides and health risks associated with wastewater irrigation. Lastly, traditional soil knowledge is discussed as a key to our sustainable presence in this world."],["021A","","a","Soil Biology and Agriculture in the Tropics, Vol 21"],["028A","","d","Patrice","a","Dion"],["032@","","a","1. Aufl."],["033A","","p","[s.l.]","n","Springer-Verlag"],["034D","","a","Online Ressource (3383 KB, 330 S.)"],["044Z","","b","ciando","a","Politik Umweltpolitik"]],"_id":"65869538X"},{"_id":"632395907","record":[["001@","","0","21,65,69,100-101,120,252,285,703"],["001A","","0","2031:09-08-10"],["001B","","0","2045:20-03-13","t","16:42:24.000"],["001D","","0","2031:09-08-10"],["001U","","0","utf8"],["001X","","0","0"],["002@","","0","Oaxkf"],["003@","","0","632395907"],["003O","","a","OCoLC","0","725096358","v","2012-12-31"],["004A","","A","9783642050763"],["004P","","S","p","A","9783642050756"],["004V","","0","10.1007/978-3-642-05076-3"],["006X","","c","EBRARY","0","ebr10365173"],["006X","","c","OCoLC","0","647876668"],["006X","","c","SPEB","0","9783642050763"],["006X","","c","SCHWEITZER","0","EBL993313"],["007G","","c","GBV","0","632395907"],["008E","","a","ZDB-2-SBL","b","2010"],["008E","","a","ZDB-38-EBR"],["008E","","a","ZDB-89-EBL"],["009@","","b","Verlagsdaten - Springer"],["009@","","b","Verlagsdaten - Springer - neu"],["009P","04","a","http://site.ebrary.com/lib/massmann/Doc?id=10365173","3","34","m","Ebrary","n","X"],["009P","05","a","http://site.ebrary.com/lib/alltitles/docDetail.action?docID=10365173"],["009P","05","a","http://dx.doi.org/10.1007/978-3-642-05076-3","4","ZZ","A","Springer"],["009P","05","a","http://www.gbv.eblib.com/patron/FullRecord.aspx?p=993313","3","34"],["010@","","a","eng"],["011@","","a","2010"],["011B","","a","2010"],["016H","","0","Elektronische Ressource"],["019@","","a","XA-DE"],["020F","","a","The relationships between soils, microbes and humans are of crucial relevance in the tropics, where plant stress and microbial activity are exacerbated. This volume of Soil Biology presents the living component of tropical soils, showing how it is shaped by environmental conditions and emphasizing its dramatic impact on human survival and well-being. Following an introduction to the specificities of tropical soils and of their microbial communities, the biological aspects of soil management are examined, dealing with land use change, conservation and slash-and-burn agriculture, the restoration"],["020G","","a"," ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; Chapter 1: Soils of the Tropics; Introduction; Factors of Soil FormationSoilformation; Climate;"],["021A","","a","Soil Biology and Agriculture in the Tropics","h","edited by Patrice Dion"],["028A","","d","Patrice","a","Dion"],["032C","","a","[Online-Ausg.]"],["033A","","p","Berlin, Heidelberg","n","Springer-Verlag Berlin Heidelberg"],["034D","","a","Online-Ressource"],["034M","","a","v.: digital"],["036E","","a","@Soil Biology","l","21"],["036L","","a","Springer eBook Collection","e","Biomedical and Life Sciences"],["037A","","a","Includes bibliographical references and index"],["037G","","a","Electronic reproduction; Available via World Wide Web"],["039D","","c","Print version","a","Soil Biology and Agriculture in the Tropics"],["044A","","N","650","S","s","a","Life sciences"],["044A","","N","650","S","s","a","Agriculture"],["044A","","N","650","S","s","a","Soil conservation"],["044A","","N","650","S","s","a","Microbiology"],["044A","","N","650","S","s","a","Endangered ecosystems"],["044A","","N","650","S","s","a","Sustainable development"],["044G","","S","s","a","Agriculture"],["044G","","S","s","a","Life Sciences"],["044G","","S","s","a","Life sciences"],["044G","","S","s","a","Soil conservation"],["044K","","S","g","9","104483709","M","Tgv1","a","Tropen","0","gnd/4060997-2"],["044K","","S","s","9","10625295X","M","Tsv1","a","Landwirtschaft","0","gnd/4034402-2"],["044K","","S","s","9","106373862","M","Tsv1","a","Bodenbiologie","0","gnd/4007358-0"],["044K","","A","BSZ"],["044K","01","S","s","9","104122161","M","Tsv1","a","Tropenklima","0","gnd/4186302-1"],["044K","01","S","s","9","104269995","M","Tsv1","a","Ackerboden","0","gnd/4141296-5"],["044K","01","S","s","9","105586102","M","Tsv1","a","Bodenchemie","0","gnd/4146134-4"],["044K","01","S","s","9","106373862","M","Tsv1","a","Bodenbiologie","0","gnd/4007358-0"],["044K","01","S","s","9","148053297","M","Tsv1","a","Bodenökologie","0","gnd/4332816-7"],["044K","01","S","s","9","10625295X","M","Tsv1","a","Landwirtschaft","0","gnd/4034402-2"],["044K","01","A","BSZ"],["044K","02","S","g","9","104483709","M","Tgv1","a","Tropen","0","gnd/4060997-2"],["044K","02","S","s","9","106373889","M","Tsv1","a","Boden","0","gnd/4007348-8"],["044K","02","S","s","9","105586161","M","Tsv1","a","Bodenbakterien","0","gnd/4146126-5"],["044K","02","S","s","9","10432189X","M","Tsv1","a","Bodenfruchtbarkeit","0","gnd/4007369-5"],["044K","02","S","s","9","226303586","M","Tsv1","a","Bodenmikroorganismus","0","gnd/4448560-8"],["044K","02","S","s","9","106228749","M","Tsv1","a","Mikroorganismus","0","gnd/4039226-0"],["044K","02","A","BSZ"],["045A","","a","QH84.8"],["045F","","e","22/ger","a","631.460913","A","DE-101"],["045T","","a","ZC 14000","A","BSZ"],["101@","","a","21","c","PICA"],["201B","01","0","28-10-11","t","13:23:24.000"],["201D","01","0","28-10-11","b","6277","a","0046"],["201U","01","0","utf8"],["203@","01","0","1274487625"],["208@","01","a","28-10-11","b","zza"],["209O","01","a","ebook_2010_springer_sbl","x","00"],["209R","01","a","http://dx.doi.org/10.1007/978-3-642-05076-3"],["237A","01","a","Freie Nutzung im Campusnetz der Universitaet und der Hochschulen im Lande Bremen"],["101@","","a","65","c","PICA"],["201B","01","0","25-08-12","t","01:53:46.000"],["201D","01","0","25-08-12","b","add_esp","a","1999"],["201U","01","0","utf8"],["203@","01","0","1217685464"],["208@","01","a","09-01-11","b","k3o"],["209A","01","a","ebook","x","03"],["209B","01","a","ZDB-2-SBL","x","79"],["209O","01","a","OLR-SEB-ZDB-2-SBL","x","00"],["209R","01","y","Volltextzugang Campus","a","http://dx.doi.org/10.1007/978-3-642-05076-3"],["237A","01","a","Vervielfältigungen (z.B. Kopien, Downloads) sind nur von einzelnen Kapiteln oder Seiten und nur zum eigenen wissenschaftlichen Gebrauch erlaubt. Keine Weitergabe an Dritte. Kein systematisches Downloaden durch Robots."],["101@","","a","69","c","PICA"],["201B","01","0","01-08-11","t","10:08:26.000"],["201D","01","0","01-08-11","b","add_esp","a","1999"],["201U","01","0","utf8"],["203@","01","0","1176166794"],["208@","01","a","12-08-10","b","z"],["209B","01","a","ZDB-2-SBL","x","79"],["209O","01","a","OLR-SEB-ZDB-2-SBL","x","00"],["209R","01","a","http://dx.doi.org/10.1007/978-3-642-05076-3"],["237A","01","a","Vervielfältigungen (z.B. Kopien, Downloads) sind nur von einzelnen Kapiteln oder Seiten und nur zum eigenen wissenschaftlichen Gebrauch erlaubt. Keine Weitergabe an Dritte. Kein systematisches Downloaden durch Robots."],["101@","","a","100","c","PICA"],["201B","01","0","01-08-11","t","16:48:00.000"],["201D","01","0","01-08-11","b","add_esp","a","1999"],["201U","01","0","utf8"],["203@","01","0","1176186655"],["208@","01","a","12-08-10","b","z"],["209B","01","a","ZDB-2-SBL","x","79"],["209O","01","a","OLR-SEB","x","00"],["209R","01","a","http://dx.doi.org/10.1007/978-3-642-05076-3"],["209R","01","S","0","y","für Uniangehörige: Zugang weltweit","a","http://han.med.uni-magdeburg.de/han/SPR-eBook-BiomedicalandLifeScience-einzeln/dx.doi.org/10.1007/978-3-642-05076-3"],["237A","01","a","Vervielfältigungen (z.B. Kopien, Downloads) sind nur von einzelnen Kapiteln oder Seiten und nur zum eigenen wissenschaftlichen Gebrauch erlaubt. Keine Weitergabe an Dritte. Kein systematisches Downloaden durch Robots."],["101@","","a","101","c","PICA"],["201B","01","0","01-08-11","t","22:30:54.000"],["201D","01","0","01-08-11","b","add_esp","a","1999"],["201U","01","0","utf8"],["203@","01","0","1176201743"],["208@","01","a","12-08-10","b","z"],["209B","01","a","ZDB-2-SBL","x","79"],["209O","01","a","OLR-SEB","x","00"],["209R","01","a","http://dx.doi.org/10.1007/978-3-642-05076-3"],["209R","01","S","0","y","für Uniangehörige: Zugang weltweit","a","http://han.med.uni-magdeburg.de/han/SPR-eBook-BiomedicalandLifeScience-einzeln/dx.doi.org/10.1007/978-3-642-05076-3"],["237A","01","a","Vervielfältigungen (z.B. Kopien, Downloads) sind nur von einzelnen Kapiteln oder Seiten und nur zum eigenen wissenschaftlichen Gebrauch erlaubt. Keine Weitergabe an Dritte. Kein systematisches Downloaden durch Robots."],["101@","","a","120","c","PICA"],["101B","","0","12-03-12","t","14:28:12.000"],["101D","","0","12-03-12","b","cbs_264","a","1999"],["101U","","0","utf8"],["145Z","99","a","ww"],["201B","01","0","02-08-11","t","12:29:58.000"],["201D","01","0","02-08-11","b","add_esp","a","1999"],["201U","01","0","utf8"],["203@","01","0","1176210106"],["208@","01","a","12-08-10","b","z"],["209B","01","a","ZDB-2-SBL","x","79"],["209C","01","a","YH 1694","x","00"],["209O","01","a","OLR-ESP","x","00"],["209R","01","a","http://dx.doi.org/10.1007/978-3-642-05076-3"],["237A","01","a","Campusweiter Zugriff (Universität Oldenburg). - Vervielfältigungen (z.B. Kopien, Downloads) sind nur von einzelnen Kapiteln oder Seiten und nur zum eigenen wissenschaftlichen Gebrauch erlaubt. Keine Weitergabe an Dritte. Kein systematisches Downloaden."],["101@","","a","252","c","PICA"],["201B","01","0","30-07-11","t","02:26:30.000"],["201D","01","0","30-07-11","b","add_esp","a","1999"],["201U","01","0","utf8"],["203@","01","0","1176110799"],["208@","01","a","12-08-10","b","zi110"],["209A","01","f","B12","x","00"],["209B","01","a","ZDB-2-SBL","x","79"],["209O","01","a","OLR-SEB","x","00"],["209R","01","a","http://dx.doi.org/10.1007/978-3-642-05076-3"],["237A","01","a","Vervielfältigungen (z.B. Kopien, Downloads) sind nur von einzelnen Kapiteln oder Seiten und nur zum eigenen wissenschaftlichen Gebrauch erlaubt. Keine Weitergabe an Dritte. Kein systematisches Downloaden durch Robots."],["101@","","a","285","c","PICA"],["201B","01","0","02-08-11","t","17:41:38.000"],["201D","01","0","02-08-11","b","add_esp","a","1999"],["201U","01","0","utf8"],["203@","01","0","1176217445"],["208@","01","a","12-08-10","b","z"],["209A","01","f","1960","d","s","x","00"],["209B","01","a","ZDB-2-SBL","x","79"],["209O","01","a","OLR-ESP","x","00"],["209R","01","y","E-books (Springer)","a","http://dx.doi.org/10.1007/978-3-642-05076-3"],["237A","01","a","Vervielfältigungen (z.B. Kopien, Downloads) sind nur von einzelnen Kapiteln oder Seiten und nur zum eigenen wissenschaftlichen Gebrauch erlaubt. Keine Weitergabe an Dritte. Kein systematisches Downloaden durch Robots."]]},{"_id":"614133955","record":[["001@","","0","20,22,24,62,65"],["001A","","0","2001:02-12-09"],["001B","","0","1999:14-01-13","t","19:55:48.000"],["001D","","0","0003:26-03-10"],["001U","","0","utf8"],["001X","","0","0"],["002@","","0","Aaua"],["003@","","0","614133955"],["004A","","A","9783642050756","g","GB.","f","ca. EUR 160.45","m","freier Pr.), ca. sfr 249.00 (freier Pr."],["004P","","S","o","A","978-3-642-05076-3"],["006A","","0"," 2010920235"],["006G","","0","998455768"],["006L","","c","DNB","0","998455768"],["006T","","0","09N501430"],["006X","","c","OCoLC","0","ocn462921767"],["006Y","","0","FGBA316629626"],["007D","","l","Best.-Nr.","0","12324408"],["007G","","c","DNB","0","998455768"],["010@","","a","eng"],["011@","","a","2010"],["019@","","a","XA-DE","a","XA-NL","a","XA-GB"],["021A","","a","Soil biology and agriculture in the tropics","h","Patrice Dion ed."],["028C","","d","Patrice","a","Dion"],["033A","","p","Heidelberg [u.a.]","n","Springer"],["034D","","a","XIII, 325 S."],["034I","","a","235 mm x 155 mm"],["034M","","a","Ill., graph. Darst."],["036E","","a","Soil Biology","l","21"],["036F","","x","2100","9","390966320","a","Soil biology","p","Berlin","n","Springer","n","2004-","0","21517551","l","21"],["041A","","S","g","9","104483709","M","Tgv1","a","Tropen","0","gnd/4060997-2"],["041A","01","S","s","9","10625295X","M","Tsv1","a","Landwirtschaft","0","gnd/4034402-2"],["041A","02","S","s","9","106373862","M","Tsv1","a","Bodenbiologie","0","gnd/4007358-0"],["044A","","N","650","S","s","a","Soil microbiology","z","Tropics"],["044A","","N","650","S","s","a","Soil management","z","Tropics"],["044A","","N","650","S","s","a","Agriculture","z","Tropics"],["044G","","S","a","a","Agriculture"],["044G","","S","a","a","Life sciences"],["044G","","S","a","a","Soil conservation"],["044K","","S","g","9","104483709","M","Tgv1","a","Tropen","0","gnd/4060997-2"],["044K","","S","s","9","10625295X","M","Tsv1","a","Landwirtschaft","0","gnd/4034402-2"],["044K","","S","s","9","106373862","M","Tsv1","a","Bodenbiologie","0","gnd/4007358-0"],["044K","","A","BVB"],["045A","","a","QR111"],["045F","","e","23","a","579/.1757","A","LOC"],["045G","","a","630","a","570"],["045H","","e","DDC22ger","a","631.460913","c","631.46","g","13","A","DDB"],["045Q","01","9","106408917","a","42.91","j","Terrestrische Ökologie"],["045Q","02","9","106409069","a","48.32","j","Bodenkunde","j","Bodenbewertung","X","Land- und Forstwirtschaft"],["045T","","a","ZC 14000","A","BSZ"],["045V","","a","13"],["045X","","b","NAL","a","QR111","A","LOC"],["045Y","","a","ggo"],["046M","","a","Literaturangaben"],["101@","","a","20","c","PICA"],["201B","01","0","04-05-10","t","09:21:00.000"],["201D","01","0","04-05-10","b","1026","a","0084"],["201U","01","0","utf8"],["203@","01","0","1107112451"],["208@","01","a","19-03-10","b","k"],["209A","01","f","LS2","a","GO P 607 (21)","x","00"],["209A","01","a","2899-7920","x","09"],["209G","01","a","84$028997920"],["101@","","a","22","c","PICA"],["201B","01","0","16-09-10","t","10:54:30.000"],["201D","01","0","16-09-10","b","6922","a","0018"],["201U","01","0","utf8"],["203@","01","0","1169941761"],["208@","01","a","16-09-10","b","zu"],["209A","01","f","SUB","a","A 2010/9138","d","u","x","00"],["209G","01","a","941490010"],["101@","","a","24","c","PICA"],["201B","01","0","23-10-10","t","01:37:19.000"],["201D","01","0","23-10-10","b","relkiel","a","0008"],["201U","01","0","utf8"],["203@","01","0","1163067784"],["208@","01","a","18-05-10","b","zz1"],["209A","01","b","8","f","10 agr 530","a","Bm 435","d","u","x","00"],["209B","01","a","acq","x","50"],["209G","01","a","8$0000361445"],["209O","01","a","va","x","00"],["220B","01","a","2010-06-24"],["245Z","01","9","057871930","a","agr 530","j","Bodenbiologie","x","50"],["245Z","01","9","057871884","a","agr 518","j","Böden weltweit","x","51"],["245Z","01","9","05787073X","a","agr 250.100","j","Tropen","j","Landwirtschaft und Ernährungswirtschaft","x","52"],["245Z","01","9","481854215","a","agr 250","j","Regionale Landwirtschaft und Ernährungswirtschaft in einzelnen Zonen","x","72"],["101@","","a","62","c","PICA"],["201B","01","0","15-12-11","t","09:34:26.000"],["201D","01","0","15-12-11","b","r62acq","a","1999"],["201U","01","0","utf8"],["203@","01","0","1161091157"],["208@","01","a","21-06-10","b","zbb1"],["209A","01","f","28/BB1","a","ZC 14000 S683-21","d","u","x","00"],["209C","01","a","2010.08108","x","00"],["209G","01","a","28$009646124"],["209O","01","a","ACQ","x","00"],["101@","","a","65","c","PICA"],["201B","01","0","26-03-10","t","14:19:28.000"],["201D","01","0","26-03-10","b","2575","a","0003/0004"],["201U","01","0","utf8"],["203@","01","0","1114907871"],["208@","01","a","26-03-10","b","ka004"],["209A","01","b","3","j","4","f","Ha 4","a","L 2010-502","d","u","x","00"],["209C","01","a","4/2010/00502","x","00"],["209G","01","a","3/4$000681431"]]},{"_id":"722265964","record":[["001@","","0","70"],["001A","","0","0089:27-08-12"],["001B","","0","0089:27-08-12","t","10:07:31.000"],["001D","","0","0089:27-08-12"],["001U","","0","utf8"],["001X","","0","0"],["002@","","0","Oax"],["003@","","0","722265964"],["004V","","0","10.1594/PANGAEA.786524"],["006Y","","0","10.1594/PANGAEA.786524"],["007G","","c","GBV","0","722265964"],["009P","03","S","1","0","html","a","http://dx.doi.org/10.1594/PANGAEA.786524"],["009P","03","S","1","0","html","g","urn:nbn:de:tib-10.1594/PANGAEA.7865244"],["010@","","a","eng"],["011@","","a","2009","n","2009-07-25"],["013@","","0","o3"],["013@","","0","d6"],["020F","","a","Although soil algae are among the main primary producers in most terrestrial ecosystems of continental Antarctica, there are very few quantitative studies on their relative proportion in the main algal groups and on how their distribution is affected by biotic and abiotic factors. Such knowledge is essential for understanding the functioning of Antarctic terrestrial ecosystems. We therefore analyzed biological soil crusts from northern Victoria Land to determine their pH, electrical conductivity (EC), water content (W), total and organic C (TC and TOC) and total N (TN) contents, and the presence and abundance of photosynthetic pigments. In particular, the latter were tested as proxies for biomass and coarse-resolution community structure. Soil samples were collected from five sites with known soil algal communities and the distribution of pigments was shown to reflect differences in the relative proportions of Chlorophyta, Cyanophyta and Bacillariophyta in these sites. Multivariate and univariate models strongly indicated that almost all soil variables (EC, W, TOC and TN) were important environmental correlates of pigment distribution. However, a significant amount of variation is independent of these soil variables and may be ascribed to local variability such as changes in microclimate at varying spatial and temporal scales. There are at least five possible sources of local variation: pigment preservation, temporal variations in water availability, temporal and spatial interactions among environmental and biological components, the local-scale patchiness of organism distribution, and biotic interactions."],["021A","","a","Floral and faunal characteristics and content of photosynthetic pigment in soils of northern Victoria Land, Antarctica, supplementary data to: Colacevich, Andrea; Caruso, Tancredi; Borghini, Francesca; Bargagli, Roberto (2009): Photosynthetic pigments in soils from northern Victoria Land (continental Antarctica) as proxies for soil algal community structure and function. Soil Biology & Biochemistry, 41(10), 2105-2114"],["028A","","a","Andrea@Colacevich"],["028B","01","a","Tancredi@Caruso"],["028B","02","a","Francesca@Borghini"],["028B","03","a","Roberto@Bargagli"],["033B","01","p","Bremen/Bremerhaven","n","PANGAEA - Data Publisher for Earth & Environmental Science"],["034D","","a"," 2 Datasets"],["037A","","a","This dataset is supplement to doi:10.1016/j.soilbio.2009.07.020"],["037H","","a","Format: application/zip"],["101@","","a","70","c","PICA"],["201B","01","0","27-08-12","t","10:07:31.000"],["201D","01","0","27-08-12","b","csf_mm_vzg","a","1999"],["201U","01","0","utf8"],["203@","01","0","1322376816"],["208@","01","a","22-08-12","b","z"],["209R","01","S","1","0","html","a","http://dx.doi.org/10.1594/PANGAEA.786524"],["237A","01","a","Primaerdaten"]]}] test.yaml100644000765000024 20313444134453 17072 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/t--- name: John colors: - black - yellow - red institution: name: Acme years: - 1949 - 1950 - 1951 - 1952 data.fields100644000765000024 14413444134453 17334 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/t001 005 008 022 035 040 050 080 082 210 245 246 260 490 500 525 561 580 610 650 710 852 920 LDR Z30 oai_dc.json100644000765000024 2023013444134453 17402 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/t{"_id":"oai:search.ugent.be:ser01:000179913","_setSpec":[],"date":["n.d."],"language":["ger"],"type":["text"],"_identifier":"oai:search.ugent.be:ser01:000179913","_datestamp":"1970-01-01T00:00:00Z","_about":[],"publisher":["Hannover : Schaper,"],"description":["Verderzetting van: Der Forst- und Holzwirt [ISSN 0015-7961]","Vanaf 2011 opgenomen in: AFZ. Der Wald [ISSN 1430-2713]"],"title":["Forst und Holz (1988)."],"_status":""} {"_status":"","publisher":["Bruxelles : Hayez,"],"creator":["Académie royale des sciences, des lettres et des beaux-arts de Belgique"],"_about":[],"title":["Bulletin de l'Académie royale des sciences, lettres et beaux-arts de Belgique. Classe des sciences."],"_identifier":"oai:search.ugent.be:ser01:000136149","type":["text"],"_datestamp":"1970-01-01T00:00:00Z","date":["n.d."],"_id":"oai:search.ugent.be:ser01:000136149","_setSpec":[],"language":["|||"]} {"language":["|||"],"date":["n.d."],"_setSpec":[],"_id":"oai:search.ugent.be:ser01:000225094","_datestamp":"1970-01-01T00:00:00Z","_identifier":"oai:search.ugent.be:ser01:000225094","type":["text"],"title":["IEEE transactions on signal processing."],"description":["Voortzetting van: IEEE transactions on acoustics, speech, and signal processing"],"publisher":["New York (N.Y.) : IEEE signal processing society,"],"_about":[],"_status":"","subject":["Engineering","Electronics","Digital Signal Processing"]} {"_status":"","title":["Archives de l'Institut Pasteur d'Algérie."],"_about":[],"publisher":["Alger : Institut Pasteur d'Algérie,"],"creator":["Institut Pasteur d'Algérie"],"_datestamp":"1970-01-01T00:00:00Z","type":["text"],"_identifier":"oai:search.ugent.be:ser01:000199843","language":["|||"],"_id":"oai:search.ugent.be:ser01:000199843","_setSpec":[],"date":["n.d."]} {"_identifier":"oai:search.ugent.be:ser01:000179955","type":["text"],"_datestamp":"1970-01-01T00:00:00Z","date":["n.d."],"_id":"oai:search.ugent.be:ser01:000179955","_setSpec":[],"language":["|||"],"_status":"","creator":["IDF Paris"],"publisher":["Paris : Institut pour le développement forestier,"],"_about":[],"title":["Forêt-loisirs et équipements de plain air."]} {"_datestamp":"1970-01-01T00:00:00Z","_identifier":"oai:search.ugent.be:ser01:000200140","type":["text"],"language":["|||"],"date":["n.d."],"_setSpec":[],"_id":"oai:search.ugent.be:ser01:000200140","_status":"","title":["Deutsche Texte des Mittelalters."],"publisher":["Berlin : Akademie Verlag,"],"_about":[]} {"title":["Abhandlungen und Berichte des Staatlichen Museums für Völkerkunde Dresden."],"publisher":["Berlin : Akademie Verlag,"],"creator":["Staatliches Museum für Völkerkunde Dresden"],"_about":[],"_status":"","language":["ger"],"date":["n.d."],"_setSpec":[],"_id":"oai:search.ugent.be:ser01:000180267","_datestamp":"1970-01-01T00:00:00Z","_identifier":"oai:search.ugent.be:ser01:000180267","type":["text"]} {"_status":"","publisher":["Straatsburg : Raad van Europa,"],"creator":["Europees parlement","Raad van Europa"],"_about":[],"title":["... Gezamenlijke bijeenkomst van de leden van de Raadgevende vergadering van de Raad van Europa en van de leden van het Europese parlement : woordelijk verslag van de beraadslagingen."],"description":["Voortgezet als: ... Gezamenlijke bijeenkomst van de leden van de Parlementaire vergadering van de Raad van Europa en van de leden van het Europese parlement: woordelijk verslag van de beraadslagingen"],"_identifier":"oai:search.ugent.be:ser01:000200399","type":["text"],"_datestamp":"1970-01-01T00:00:00Z","date":["n.d."],"_id":"oai:search.ugent.be:ser01:000200399","_setSpec":[],"language":["dut"]} {"_status":"","title":["AV-industrie."],"description":["Herkomst L52.DDK.VT.174 : Documentatiecentrum voor Dramatische Kunst"],"publisher":["Gent : MediaClip,"],"_about":[],"_datestamp":"1970-01-01T00:00:00Z","_identifier":"oai:search.ugent.be:ser01:000180638","type":["text"],"language":["dut"],"date":["n.d."],"_id":"oai:search.ugent.be:ser01:000180638","_setSpec":[]} {"publisher":["Wallingford : CAB international,"],"_about":[],"title":["Small animal abstracts."],"_status":"","date":["n.d."],"_setSpec":[],"_id":"oai:search.ugent.be:ser01:000180784","language":["|||"],"_identifier":"oai:search.ugent.be:ser01:000180784","type":["text"],"_datestamp":"1970-01-01T00:00:00Z"} {"_status":"","_about":[],"publisher":["Enschede : Stichting textielgeschiedenis,"],"creator":["Stichting Textielgeschiedenis"],"description":["Textielhistorische bijdragen is een vervolg op de jaarverslagen van de Stichting textielgeschiedenis over de jaren 1954-1985. Nummer 1(1960) is tevens jaarverslag over 1959."],"title":["Textielhistorische bijdragen."],"type":["text"],"_identifier":"oai:search.ugent.be:ser01:000200660","_datestamp":"1970-01-01T00:00:00Z","_id":"oai:search.ugent.be:ser01:000200660","_setSpec":[],"date":["n.d."],"language":["dut"]} {"title":["Diritto del commercio internazionale. Giurisprudenza commerciale."],"publisher":["Milano : Giuffrè,"],"_about":[],"_status":"","language":["ita"],"date":["n.d."],"_setSpec":[],"_id":"oai:search.ugent.be:ser01:000180904","_datestamp":"1970-01-01T00:00:00Z","_identifier":"oai:search.ugent.be:ser01:000180904","type":["text"]} {"language":["|||"],"date":["n.d."],"_setSpec":[],"_id":"oai:search.ugent.be:ser01:000180972","_datestamp":"1970-01-01T00:00:00Z","_identifier":"oai:search.ugent.be:ser01:000180972","type":["text"],"title":["Mitteilungsblatt der Bundesanstalt für Fleischforschung Kulmbach."],"creator":["Bundesanstalt für Fleischforschung Kulmbach"],"publisher":["Kulmbach : Bundesanstalt für Fleischforschung,"],"_about":[],"_status":""} {"_datestamp":"1970-01-01T00:00:00Z","type":["text"],"_identifier":"oai:search.ugent.be:ser01:000294227","language":["spa"],"_setSpec":[],"_id":"oai:search.ugent.be:ser01:000294227","date":["n.d."],"_status":"","subject":["Catholic Church","Philosophy","Theology"],"title":["Franciscanum : revista de las ciencias del espíritu."],"_about":[],"creator":["Universidad de San Buenaventura Bogota"],"publisher":["Santafé de Bogota : Universidad de San Buenaventura,"]} {"_about":[],"creator":["Agence internationale d'information pour la presse"],"publisher":["Bruxelles : Agence internationale d'information pour la presse,"],"title":["Europe."],"_status":"","_setSpec":[],"_id":"oai:search.ugent.be:ser01:000204095","date":["n.d."],"language":["|||"],"type":["text"],"_identifier":"oai:search.ugent.be:ser01:000204095","_datestamp":"1970-01-01T00:00:00Z"} {"_status":"","publisher":["Paris : Seuil,"],"_about":[],"title":["Annuaire philosophique."],"_identifier":"oai:search.ugent.be:ser01:000181120","type":["text"],"_datestamp":"1970-01-01T00:00:00Z","date":["n.d."],"_setSpec":[],"_id":"oai:search.ugent.be:ser01:000181120","language":["|||"]} {"_status":"","subject":["Information Technology","Computer Science (Hardware & Networks)","Data Storage and Data Mining","General and Others","Internet"],"title":["CD-ROM professional : the magazine of optical information media."],"description":["Bimonthly supplement","Voortgezet als: EMedia professional","Voortzetting van: The laserdisk professional: the magazine of optical information media"],"publisher":["Weston (Conn.) : Pemberton,"],"_about":[],"_datestamp":"1970-01-01T00:00:00Z","_identifier":"oai:search.ugent.be:ser01:000204646","type":["text"],"language":["|||"],"date":["n.d."],"_setSpec":[],"_id":"oai:search.ugent.be:ser01:000204646"} {"title":["Fish farming international."],"_about":[],"publisher":["London : AGB,"],"_status":"","language":["|||"],"_id":"oai:search.ugent.be:ser01:000181378","_setSpec":[],"date":["n.d."],"_datestamp":"1970-01-01T00:00:00Z","type":["text"],"_identifier":"oai:search.ugent.be:ser01:000181378"} {"type":["text"],"_identifier":"oai:search.ugent.be:ser01:000127106","_datestamp":"1970-01-01T00:00:00Z","_id":"oai:search.ugent.be:ser01:000127106","_setSpec":[],"date":["n.d."],"language":["|||"],"subject":["VETERINARY MEDICINE, periodicals"],"_status":"","_about":[],"publisher":["Stuttgart : Schattauer,"],"title":["Tierärztliche Praxis. Supplement."]} {"_status":"","title":["Look Japan."],"publisher":["Tokyo : Look Japan,"],"_about":[],"_datestamp":"1970-01-01T00:00:00Z","_identifier":"oai:search.ugent.be:ser01:000181567","type":["text"],"language":["eng"],"date":["n.d."],"_id":"oai:search.ugent.be:ser01:000181567","_setSpec":[]} camel.usmarc100644000765000024 1467713444134453 17610 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/t00755cam 22002414a 4500001001300000003000600013005001700019008004100036010001700077020004300094040001800137042000800155050002600163082001700189100003100206245005400237260004200291300007200333500003300405650003700438630002500475630001300500fol05731351 IMchF20000613133448.0000107s2000 nyua 001 0 eng  a 00020737  a0471383147 (paper/cd-rom : alk. paper) aDLCcDLCdDLC apcc00aQA76.73.P22bM33 200000a005.13/32211 aMartinsson, Tobias,d1976-10aActivePerl with ASP and ADO /cTobias Martinsson. aNew York :bJohn Wiley & Sons,c2000. axxi, 289 p. :bill. ;c23 cm. +e1 computer laser disc (4 3/4 in.) a"Wiley Computer Publishing." 0aPerl (Computer program language)00aActive server pages.00aActiveX.00647pam 2200241 a 4500001001300000003000600013005001700019008004100036010001700077020001500094040001800109042000800127050002600135082001500161100002600176245006700202260003800269263000900307300001100316650003700327650002500364700001600389fol05754809 IMchF20000601115601.0000203s2000 mau 001 0 eng  a 00022023  a1565926994 aDLCcDLCdDLC apcc00aQA76.73.P22bD47 200000a005.742211 aDescartes, Alligator.10aProgramming the Perl DBI /cAlligator Descartes and Tim Bunce. aCmabridge, MA :bO'Reilly,c2000. a1111 ap. cm. 0aPerl (Computer program language) 0aDatabase management.1 aBunce, Tim.00605cam 22002054a 4500001001300000003000600013005001700019008004100036010001700077040001800094042000800112050002700120082001700147100002100164245005500185260004500240300002600285504005100311650003700362fol05843555 IMchF20000525142739.0000318s1999 cau b 001 0 eng  a 00501349  aDLCcDLCdDLC apcc00aQA76.73.P22bB763 199900a005.13/32211 aBrown, Martin C.10aPerl :bprogrammer's reference /cMartin C. Brown. aBerkeley :bOsborne/McGraw-Hill,cc1999. axix, 380 p. ;c22 cm. aIncludes bibliographical references and index. 0aPerl (Computer program language)00579cam 22002054a 4500001001300000003000600013005001700019008004100036010001700077020001500094040001800109042000800127050002700135082001700162100002100179245005500200260004500255300003600300650003700336fol05843579 IMchF20000525142716.0000318s1999 caua 001 0 eng  a 00502116  a0072120002 aDLCcDLCdDLC apcc00aQA76.73.P22bB762 199900a005.13/32211 aBrown, Martin C.10aPerl :bthe complete reference /cMartin C. Brown. aBerkeley :bOsborne/McGraw-Hill,cc1999. axxxv, 1179 p. :bill. ;c24 cm. 0aPerl (Computer program language)00801nam 22002778a 4500001001300000003000600013005001700019008004100036010001700077020001500094040001300109042000800122050002600130082001800156100002000174245008800194250003200282260004100314263000900355300001100364650003700375650003600412650002600448700002500474700002400499fol05848297 IMchF20000524125727.0000518s2000 mau 001 0 eng  a 00041664  a1565924193 aDLCcDLC apcc00aQA76.73.P22bG84 200000a005.2/7622211 aGuelich, Scott.10aCGI programming with Perl /cScott Guelich, Shishir Gundavaram & Gunther Birznieks. a2nd ed., expanded & updated aCambridge, Mass. :bO'Reilly,c2000. a0006 ap. cm. 0aPerl (Computer program language) 0aCGI (Computer network protocol) 0aInternet programming.1 aGundavaram, Shishir.1 aBirznieks, Gunther.00665nam 22002298a 4500001001300000003000600013005001700019008004100036010001700077020001500094040001300109042000800122050002700130082001700157111005200174245008600226250001200312260004100324263000900365300001100374650005000385fol05865950 IMchF20000615103017.0000612s2000 mau 100 0 eng  a 00055759  a0596000138 aDLCcDLC apcc00aQA76.73.P22bP475 200000a005.13/32212 aPerl Conference 4.0d(2000 :cMonterey, Calif.)10aProceedings of the Perl Conference 4.0 :bJuly 17-20, 2000, Monterey, California. a1st ed. aCambridge, Mass. :bO'Reilly,c2000. a0006 ap. cm. 0aPerl (Computer program language)vCongresses.00579nam 22002178a 4500001001300000003000600013005001700019008004100036010001700077020001500094040001300109042000800122050002600130082001700156100002800173245006200201260004100263263000900304300001100313650003700324fol05865956 IMchF20000615102948.0000612s2000 mau 000 0 eng  a 00055770  a1565926099 aDLCcDLC apcc00aQA76.73.P22bB43 200000a005.13/32211 aBlank-Edelman, David N.10aPerl for system administration /cDavid N. Blank-Edelman. aCambridge, Mass. :bO'Reilly,c2000. a0006 ap. cm. 0aPerl (Computer program language)00661nam 22002538a 4500001001300000003000600013005001700019008004100036010001700077020001500094040001300109042000800122050002600130082001700156100001700173245006700190250001200257260004100269263000900310300001100319650003700330700002300367700001700390fol05865967 IMchF20000615102611.0000614s2000 mau 000 0 eng  a 00055799  a0596000278 aDLCcDLC apcc00aQA76.73.P22bW35 200000a005.13/32211 aWall, Larry.10aProgramming Perl /cLarry Wall, Tom Christiansen & Jon Orwant. a3rd ed. aCambridge, Mass. :bO'Reilly,c2000. a0007 ap. cm. 0aPerl (Computer program language)1 aChristiansen, Tom.1 aOrwant, Jon.00603cam 22002054a 4500001001300000003000600013005001700019008004100036010001700077020001500094040001800109042000800127050002600135082001700161100003200178245006000210260005700270300003300327650003700360fol05872355 IMchF20000706095105.0000315s1999 njua 001 0 eng  a 00500678  a013020868X aDLCcDLCdDLC apcc00aQA76.73.P22bL69 199900a005.13/32211 aLowe, Vincentq(Vincent D.)10aPerl programmer's interactive workbook /cVincent Lowe. aUpper Saddle River, NJ :bPrentice Hall PTP,cc1999. axx, 633 p. :bill. ;c23 cm. 0aPerl (Computer program language)00696nam 22002538a 4500001001300000003000600013005001700019008004100036010001700077020002800094040001300122042000800135050002600143082001700169100002600186245004400212260005100256263000900307300001100316500002000327650003700347650001700384650004100401fol05882032 IMchF20000707091904.0000630s2000 cau 001 0 eng  a 00058174  a0764547291 (alk. paper) aDLCcDLC apcc00aQA76.73.P22bF64 200000a005.13/32212 aFoster-Johnson, Eric.10aCross-platform Perl /cEric F. Johnson. aFoster City, CA :bIDG Books Worldwide,c2000. a0009 ap. cm. aIncludes index. 0aPerl (Computer program language) 0aWeb servers. 0aCross-platform software development.data.breaker100644000765000024 14402413444134453 17567 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/t000179913 LDR 00000nas a22 a 4500 000179913 001 000179913 000179913 005 20150903155726.0 000179913 008 980907nuuuuuuuuxx^^^^^^^^^^^^^^^^^^ger^^ 000179913 022a 0932-9315 000179913 035a c:lvd:1219061 000179913 040a BE-GnUNI 000179913 050a SD1 000179913 082a 634.9 000179913 082a 674 000179913 245a Forst und Holz (1988). 000179913 260a Hannover : 000179913 260b Schaper, 000179913 260c n.d. 000179913 580a Verderzetting van: Der Forst- und Holzwirt [ISSN 0015-7961] 000179913 580a Vanaf 2011 opgenomen in: AFZ. Der Wald [ISSN 1430-2713] 000179913 852x BW 000179913 852b LA04 000179913 852c A42 000179913 852j A42 000179913 852a #(1988) - 66(2011) 000179913 920a periodical 000136149 LDR 00000nas a22 a 4500 000136149 001 000136149 000136149 005 20150412120202.0 000136149 008 871222nuuuuuuuube^^^^^^^^^^^^^^^^^^|||^^ 000136149 035a c:lvd:273361 000136149 035a (ser01)BIB.P.005513 000136149 040a BE-GnUNI 000136149 245a Bulletin de l'Académie royale des sciences, lettres et beaux-arts de Belgique. Classe des sciences. 000136149 260a Bruxelles : 000136149 260b Hayez, 000136149 260c n.d. 000136149 710a Académie royale des sciences, des lettres et des beaux-arts de Belgique 000136149 852x UB 000136149 852b CA20 000136149 852c BIB 000136149 852j BIB.P.005513 000136149 852a #S.3: 7(1884) - 13(1887) 000136149 920a periodical 000136149 Z30l RUG01 000136149 Z30L RUG01 000136149 Z30m ISSUE 000136149 Z30x UB 000136149 Z301 CA20 000136149 Z302 BIB 000136149 Z303 BIB.P.005513 000136149 Z305 000000709704 000136149 Z308 20110317 000136149 Z30a 1919 000136149 Z30b ^ 000136149 Z30c ^ 000136149 Z30d ^ 000136149 Z30f 51 000136149 Z30F Consult in BIBS 000136149 Z30h (1919) 000136149 Z30i 20110317 000136149 Z30j 20110317 000136149 Z30k 20110317 000136149 Z30l RUG01 000136149 Z30L RUG01 000136149 Z30m ISSUE 000136149 Z30x UB 000136149 Z301 CA20 000136149 Z302 BIB 000136149 Z303 BIB.P.005513 000136149 Z305 000000709701 000136149 Z308 20110317 000136149 Z30a 1933 000136149 Z30b ^ 000136149 Z30c ^ 000136149 Z30d ^ 000136149 Z30f 51 000136149 Z30F Consult in BIBS 000136149 Z30h (1933) 000136149 Z30i 20110317 000136149 Z30j 20110317 000136149 Z30k 20110317 000225094 LDR 00000nas a22 a 4500 000225094 001 000225094 000225094 005 20150412142858.0 000225094 008 910125nuuuuuuuunyu^^^^^^^^^^^^^^^^^|||^^ 000225094 022a 1053-587X 000225094 035a c:lvd:1209939 000225094 035a (ser01)BIB.P.013308 000225094 040a BE-GnUNI 000225094 050a TK5981 000225094 082a 621.38 000225094 245a IEEE transactions on signal processing. 000225094 260a New York (N.Y.) : 000225094 260b IEEE signal processing society, 000225094 260c n.d. 000225094 580a Voortzetting van: IEEE transactions on acoustics, speech, and signal processing 000225094 650a Engineering 000225094 650a Electronics 000225094 650x Telecommunications Technology 000225094 650a Digital Signal Processing 000225094 852x EA 000225094 852b TW06 000225094 852c T56 000225094 852j T56 000225094 852a #39(1991) - 59(2011)3 000225094 852d BIB.P.013308 000225094 920a periodical 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-10 000225094 Z308 20060829 000225094 Z30a 2006 000225094 Z30b 54 000225094 Z30c 1 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.54:no.1(2006:Jan) 000225094 Z30i 20060101 000225094 Z30j 20060131 000225094 Z30k 20060829 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-100 000225094 Z308 20060829 000225094 Z30a 2006 000225094 Z30b 54 000225094 Z30c 10 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.54:no.10(2006:Oct) 000225094 Z30i 20061001 000225094 Z30j 20061031 000225094 Z30k 20061013 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-110 000225094 Z308 20060829 000225094 Z30a 2006 000225094 Z30b 54 000225094 Z30c 11 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.54:no.11(2006:Nov) 000225094 Z30i 20061101 000225094 Z30j 20061201 000225094 Z30k 20061107 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-120 000225094 Z308 20060829 000225094 Z30a 2006 000225094 Z30b 54 000225094 Z30c 12 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.54:no.12(2006:Dec) 000225094 Z30i 20061201 000225094 Z30j 20061231 000225094 Z30k 20061208 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-20 000225094 Z308 20060829 000225094 Z30a 2006 000225094 Z30b 54 000225094 Z30c 2 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.54:no.2(2006:Feb) 000225094 Z30i 20060201 000225094 Z30j 20060303 000225094 Z30k 20060829 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-30 000225094 Z308 20060829 000225094 Z30a 2006 000225094 Z30b 54 000225094 Z30c 3 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.54:no.3(2006:Mar) 000225094 Z30i 20060301 000225094 Z30j 20060331 000225094 Z30k 20060829 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-40 000225094 Z308 20060829 000225094 Z30a 2006 000225094 Z30b 54 000225094 Z30c 4 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.54:no.4(2006:Apr) 000225094 Z30i 20060401 000225094 Z30j 20060501 000225094 Z30k 20060829 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-50 000225094 Z308 20060829 000225094 Z30a 2006 000225094 Z30b 54 000225094 Z30c 5 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.54:no.5(2006:May) 000225094 Z30i 20060501 000225094 Z30j 20060531 000225094 Z30k 20060829 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-60 000225094 Z308 20060829 000225094 Z30a 2006 000225094 Z30b 54 000225094 Z30c 6 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.54:no.6(2006:Jun) 000225094 Z30i 20060601 000225094 Z30j 20060701 000225094 Z30k 20060829 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-70 000225094 Z308 20060829 000225094 Z30a 2006 000225094 Z30b 54 000225094 Z30c 7 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.54:no.7(2006:Jul) 000225094 Z30i 20060701 000225094 Z30j 20060731 000225094 Z30k 20060829 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-80 000225094 Z308 20060829 000225094 Z30a 2006 000225094 Z30b 54 000225094 Z30c 8 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.54:no.8(2006:Aug) 000225094 Z30i 20060801 000225094 Z30j 20060831 000225094 Z30k 20061218 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-90 000225094 Z308 20060829 000225094 Z30a 2006 000225094 Z30b 54 000225094 Z30c 9 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.54:no.9(2006:Sep) 000225094 Z30i 20060901 000225094 Z30j 20061001 000225094 Z30k 20060918 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-130 000225094 Z308 20061208 000225094 Z30a 2007 000225094 Z30b 55 000225094 Z30c 1 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.55:no.1(2007:Jan) 000225094 Z30i 20070101 000225094 Z30j 20070131 000225094 Z30k 20070109 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-220 000225094 Z308 20061208 000225094 Z30a 2007 000225094 Z30b 55 000225094 Z30c 10 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.55:no.10(2007:Oct) 000225094 Z30i 20071001 000225094 Z30j 20071031 000225094 Z30k 20071011 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-230 000225094 Z308 20061208 000225094 Z30a 2007 000225094 Z30b 55 000225094 Z30c 11 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.55:no.11(2007:Nov) 000225094 Z30i 20071101 000225094 Z30j 20071201 000225094 Z30k 20080229 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-240 000225094 Z308 20061208 000225094 Z30a 2007 000225094 Z30b 55 000225094 Z30c 12 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.55:no.12(2007:Dec) 000225094 Z30i 20071201 000225094 Z30j 20071231 000225094 Z30k 20071211 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-140 000225094 Z308 20061208 000225094 Z30a 2007 000225094 Z30b 55 000225094 Z30c 2 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.55:no.2(2007:Feb) 000225094 Z30i 20070201 000225094 Z30j 20070303 000225094 Z30k 20070212 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-150 000225094 Z308 20061208 000225094 Z30a 2007 000225094 Z30b 55 000225094 Z30c 3 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.55:no.3(2007:Mar) 000225094 Z30i 20070301 000225094 Z30j 20070331 000225094 Z30k 20070307 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-160 000225094 Z308 20061208 000225094 Z30a 2007 000225094 Z30b 55 000225094 Z30c 4 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.55:no.4(2007:Apr) 000225094 Z30i 20070401 000225094 Z30j 20070501 000225094 Z30k 20070404 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-170 000225094 Z308 20061208 000225094 Z30a 2007 000225094 Z30b 55 000225094 Z30c 5 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.55:no.5(2007:May) 000225094 Z30i 20070501 000225094 Z30j 20070531 000225094 Z30k 20070514 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-180 000225094 Z308 20061208 000225094 Z30a 2007 000225094 Z30b 55 000225094 Z30c 6 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.55:no.6(2007:Jun) 000225094 Z30i 20070601 000225094 Z30j 20070701 000225094 Z30k 20070607 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-190 000225094 Z308 20061208 000225094 Z30a 2007 000225094 Z30b 55 000225094 Z30c 7 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.55:no.7(2007:Jul) 000225094 Z30i 20070701 000225094 Z30j 20070731 000225094 Z30k 20070724 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-200 000225094 Z308 20061208 000225094 Z30a 2007 000225094 Z30b 55 000225094 Z30c 8 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.55:no.8(2007:Aug) 000225094 Z30i 20070801 000225094 Z30j 20070831 000225094 Z30k 20070820 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-210 000225094 Z308 20061208 000225094 Z30a 2007 000225094 Z30b 55 000225094 Z30c 9 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.55:no.9(2007:Sep) 000225094 Z30i 20070901 000225094 Z30j 20071001 000225094 Z30k 20070905 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-250 000225094 Z308 20071211 000225094 Z30a 2008 000225094 Z30b 56 000225094 Z30c 1 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.56:no.1(2008:Jan) 000225094 Z30i 20080101 000225094 Z30j 20080131 000225094 Z30k 20080114 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-340 000225094 Z308 20071211 000225094 Z30a 2008 000225094 Z30b 56 000225094 Z30c 10 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.56:no.10(2008:Oct) 000225094 Z30i 20081001 000225094 Z30j 20081031 000225094 Z30k 20081008 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-350 000225094 Z308 20071211 000225094 Z30a 2008 000225094 Z30b 56 000225094 Z30c 11 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.56:no.11(2008:Nov) 000225094 Z30i 20081101 000225094 Z30j 20081201 000225094 Z30k 20081112 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-360 000225094 Z308 20071211 000225094 Z30a 2008 000225094 Z30b 56 000225094 Z30c 12 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.56:no.12(2008:Dec) 000225094 Z30i 20081201 000225094 Z30j 20081231 000225094 Z30k 20090102 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-260 000225094 Z308 20071211 000225094 Z30a 2008 000225094 Z30b 56 000225094 Z30c 2 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.56:no.2(2008:Feb) 000225094 Z30i 20080201 000225094 Z30j 20080302 000225094 Z30k 20080206 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-270 000225094 Z308 20071211 000225094 Z30a 2008 000225094 Z30b 56 000225094 Z30c 3 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.56:no.3(2008:Mar) 000225094 Z30i 20080301 000225094 Z30j 20080331 000225094 Z30k 20080311 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-280 000225094 Z308 20071211 000225094 Z30a 2008 000225094 Z30b 56 000225094 Z30c 4 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.56:no.4(2008:Apr) 000225094 Z30i 20080401 000225094 Z30j 20080501 000225094 Z30k 20080422 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-290 000225094 Z308 20071211 000225094 Z30a 2008 000225094 Z30b 56 000225094 Z30c 5 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.56:no.5(2008:May) 000225094 Z30i 20080501 000225094 Z30j 20080531 000225094 Z30k 20080509 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-300 000225094 Z308 20071211 000225094 Z30a 2008 000225094 Z30b 56 000225094 Z30c 6 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.56:no.6(2008:Jun) 000225094 Z30i 20080601 000225094 Z30j 20080701 000225094 Z30k 20080605 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-310 000225094 Z308 20071211 000225094 Z30a 2008 000225094 Z30b 56 000225094 Z30c 7 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.56:no.7(2008:Jul) 000225094 Z30i 20080701 000225094 Z30j 20080731 000225094 Z30k 20080804 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-320 000225094 Z308 20071211 000225094 Z30a 2008 000225094 Z30b 56 000225094 Z30c 8 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.56:no.8(2008:Aug) 000225094 Z30i 20080801 000225094 Z30j 20080831 000225094 Z30k 20080806 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-330 000225094 Z308 20071211 000225094 Z30a 2008 000225094 Z30b 56 000225094 Z30c 9 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.56:no.9(2008:Sep) 000225094 Z30i 20080901 000225094 Z30j 20081001 000225094 Z30k 20080902 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-370 000225094 Z308 20090102 000225094 Z30a 2009 000225094 Z30b 57 000225094 Z30c 1 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.57:no.1(2009:Jan) 000225094 Z30i 20090101 000225094 Z30j 20090131 000225094 Z30k 20090325 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-460 000225094 Z308 20090102 000225094 Z30a 2009 000225094 Z30b 57 000225094 Z30c 10 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.57:no.10(2009:Oct) 000225094 Z30i 20091001 000225094 Z30j 20091031 000225094 Z30k 20091015 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-470 000225094 Z308 20090102 000225094 Z30a 2009 000225094 Z30b 57 000225094 Z30c 11 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.57:no.11(2009:Nov) 000225094 Z30i 20091101 000225094 Z30j 20091201 000225094 Z30k 20091105 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-480 000225094 Z308 20090102 000225094 Z30a 2009 000225094 Z30b 57 000225094 Z30c 12 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.57:no.12(2009:Dec) 000225094 Z30i 20091201 000225094 Z30j 20091231 000225094 Z30k 20100105 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-380 000225094 Z308 20090102 000225094 Z30a 2009 000225094 Z30b 57 000225094 Z30c 2 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30p CL 000225094 Z30P Claimed 000225094 Z30h v.57:no.2(2009:Feb) 000225094 Z30i 20090201 000225094 Z30j 20090303 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-390 000225094 Z308 20090102 000225094 Z30a 2009 000225094 Z30b 57 000225094 Z30c 3 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.57:no.3(2009:Mar) 000225094 Z30i 20090301 000225094 Z30j 20090331 000225094 Z30k 20090310 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-400 000225094 Z308 20090102 000225094 Z30a 2009 000225094 Z30b 57 000225094 Z30c 4 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.57:no.4(2009:Apr) 000225094 Z30i 20090401 000225094 Z30j 20090501 000225094 Z30k 20090403 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-410 000225094 Z308 20090102 000225094 Z30a 2009 000225094 Z30b 57 000225094 Z30c 5 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.57:no.5(2009:May) 000225094 Z30i 20090501 000225094 Z30j 20090531 000225094 Z30k 20090511 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-420 000225094 Z308 20090102 000225094 Z30a 2009 000225094 Z30b 57 000225094 Z30c 6 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.57:no.6(2009:Jun) 000225094 Z30i 20090601 000225094 Z30j 20090701 000225094 Z30k 20090612 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-430 000225094 Z308 20090102 000225094 Z30a 2009 000225094 Z30b 57 000225094 Z30c 7 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.57:no.7(2009:Jul) 000225094 Z30i 20090701 000225094 Z30j 20090731 000225094 Z30k 20090710 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-440 000225094 Z308 20090102 000225094 Z30a 2009 000225094 Z30b 57 000225094 Z30c 8 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.57:no.8(2009:Aug) 000225094 Z30i 20090801 000225094 Z30j 20090831 000225094 Z30k 20090818 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-450 000225094 Z308 20090102 000225094 Z30a 2009 000225094 Z30b 57 000225094 Z30c 9 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.57:no.9(2009:Sep) 000225094 Z30i 20090901 000225094 Z30j 20091001 000225094 Z30k 20090907 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-490 000225094 Z308 20100105 000225094 Z30a 2010 000225094 Z30b 58 000225094 Z30c 1 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.58:no.1(2010:Jan) 000225094 Z30i 20100101 000225094 Z30j 20100131 000225094 Z30k 20100115 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-580 000225094 Z308 20100105 000225094 Z30a 2010 000225094 Z30b 58 000225094 Z30c 10 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.58:no.10(2010:Oct) 000225094 Z30i 20101001 000225094 Z30j 20101031 000225094 Z30k 20101015 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-590 000225094 Z308 20100105 000225094 Z30a 2010 000225094 Z30b 58 000225094 Z30c 11 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.58:no.11(2010:Nov) 000225094 Z30i 20101101 000225094 Z30j 20101201 000225094 Z30k 20101129 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-600 000225094 Z308 20100105 000225094 Z30a 2010 000225094 Z30b 58 000225094 Z30c 12 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30p CL 000225094 Z30P Claimed 000225094 Z30h v.58:no.12(2010:Dec) 000225094 Z30i 20101201 000225094 Z30j 20101231 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-500 000225094 Z308 20100105 000225094 Z30a 2010 000225094 Z30b 58 000225094 Z30c 2 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.58:no.2(2010:Feb) 000225094 Z30i 20100201 000225094 Z30j 20100303 000225094 Z30k 20100216 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-510 000225094 Z308 20100105 000225094 Z30a 2010 000225094 Z30b 58 000225094 Z30c 3 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.58:no.3[pt.1](2010:Mar) 000225094 Z30i 20100301 000225094 Z30j 20100331 000225094 Z30k 20100329 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-610 000225094 Z308 20100329 000225094 Z30a 2010 000225094 Z30b 58 000225094 Z30c 3 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.58:no.3[pt.2](2010:Mar) 000225094 Z30i 20100301 000225094 Z30j 20100331 000225094 Z30k 20100329 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-520 000225094 Z308 20100105 000225094 Z30a 2010 000225094 Z30b 58 000225094 Z30c 4 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30p NA 000225094 Z30P Not arrived 000225094 Z30h v.58:no.4(2010:Apr) 000225094 Z30i 20100401 000225094 Z30j 20100501 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-530 000225094 Z308 20100105 000225094 Z30a 2010 000225094 Z30b 58 000225094 Z30c 5 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.58:no.5(2010:May) 000225094 Z30i 20100501 000225094 Z30j 20100531 000225094 Z30k 20100823 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-540 000225094 Z308 20100105 000225094 Z30a 2010 000225094 Z30b 58 000225094 Z30c 6 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.58:no.6(2010:Jun) 000225094 Z30i 20100601 000225094 Z30j 20100701 000225094 Z30k 20100706 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-550 000225094 Z308 20100105 000225094 Z30a 2010 000225094 Z30b 58 000225094 Z30c 7 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.58:no.7(2010:Jul) 000225094 Z30i 20100701 000225094 Z30j 20100731 000225094 Z30k 20100805 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-560 000225094 Z308 20100105 000225094 Z30a 2010 000225094 Z30b 58 000225094 Z30c 8 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.58:no.8(2010:Aug) 000225094 Z30i 20100801 000225094 Z30j 20100831 000225094 Z30k 20100823 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-570 000225094 Z308 20100105 000225094 Z30a 2010 000225094 Z30b 58 000225094 Z30c 9 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.58:no.9(2010:Sep) 000225094 Z30i 20100901 000225094 Z30j 20101001 000225094 Z30k 20100913 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-620 000225094 Z308 20101129 000225094 Z30a 2011 000225094 Z30b 59 000225094 Z30c 1 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.59:no.1(2011:Jan) 000225094 Z30i 20110101 000225094 Z30j 20110131 000225094 Z30k 20110202 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-630 000225094 Z308 20101129 000225094 Z30a 2011 000225094 Z30b 59 000225094 Z30c 2 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.59:no.2(2011:Feb) 000225094 Z30i 20110201 000225094 Z30j 20110303 000225094 Z30k 20110203 000225094 Z30l RUG01 000225094 Z30L RUG01 000225094 Z30m ISSUE 000225094 Z30x EA 000225094 Z301 TW06 000225094 Z302 T56 000225094 Z303 T56 000225094 Z309 BIB.P.013308 000225094 Z305 225994-640 000225094 Z308 20101129 000225094 Z30a 2011 000225094 Z30b 59 000225094 Z30c 3 000225094 Z30d ^ 000225094 Z30f 04 000225094 Z30F NO LOAN/open shelves 000225094 Z30h v.59:no.3(2011:Mar) 000225094 Z30i 20110301 000225094 Z30j 20110331 000225094 Z30k 20110311 000199843 LDR 00000nas a22 a 4500 000199843 001 000199843 000199843 005 20150412140827.0 000199843 008 900221nuuuuuuuuae^^^^^^^^^^^^^^^^^^|||^^ 000199843 022a 0020-2460 000199843 035a c:lvd:1193710 000199843 040a BE-GnUNI 000199843 082a 579.2 000199843 245a Archives de l'Institut Pasteur d'Algérie. 000199843 260a Alger : 000199843 260b Institut Pasteur d'Algérie, 000199843 260c n.d. 000199843 710a Institut Pasteur d'Algérie 000199843 852x UB 000199843 852b CA20 000199843 852c BIB 000199843 852j BIB.P.009596 000199843 852a #29(1951) - 39(1961)1 000199843 852z ONTBREEKT : 34(2) ; 36(2) ; 37(4) ; 38(1) 000199843 920a periodical 000179955 LDR 00000nas a22 a 4500 000179955 001 000179955 000179955 005 20150412125735.0 000179955 008 890616nuuuuuuuufr^^^^^^^^^^^^^^^^^^|||^^ 000179955 022a 0395-8507 000179955 035a c:lvd:1246961 000179955 040a BE-GnUNI 000179955 082a 799 000179955 082a 634.9 000179955 245a Forêt-loisirs et équipements de plain air. 000179955 260a Paris : 000179955 260b Institut pour le développement forestier, 000179955 260c n.d. 000179955 710a IDF Paris 000179955 852x BW 000179955 852b LA04 000179955 852c A42 000179955 852j A42 000179955 852a #(1969)13 - (1987) 000179955 852z ONTBREEKT: (1970)18; (1971)21; (1973)29-31; (1974)2; (1986) 000179955 920a periodical 000200140 LDR 00000nas a22 a 4500 000200140 001 000200140 000200140 005 20150403140230.0 000200140 008 980907nuuuuuuuuxx^^^^^^^^^^^^^^^^^^|||^^ 000200140 022a 0070-4334 000200140 035a c:lvd:1231261 000200140 040a BE-GnUNI 000200140 050a PT1375 000200140 082a 430 000200140 082a 830 000200140 245a Deutsche Texte des Mittelalters. 000200140 260a Berlin : 000200140 260b Akademie Verlag, 000200140 260c n.d. 000200140 852x UB 000200140 852b CA20 000200140 852c BIB 000200140 852j BIB.P.002256 000200140 852a #1(1904) - 76(1991) 000200140 852z ONTBREEKT : 20,47 000200140 920a periodical 000180267 LDR 00000nas a22 a 4500 000180267 001 000180267 000180267 005 20150403140149.0 000180267 008 890621nuuuuuuuuxx^^^^^^r^^^^^000^0^ger^d 000180267 022a 0070-7295 000180267 035a c:lvd:1246965 000180267 035a c:lvd:725003 000180267 035a (ser01)BIB.P.015211 000180267 040a BE-GnUNI 000180267 082a 708 000180267 210a Abh. Ber. Staatl. Mus. Völkerkd. Dresd. 000180267 245a Abhandlungen und Berichte des Staatlichen Museums für Völkerkunde Dresden. 000180267 260a Berlin : 000180267 260b Akademie Verlag, 000180267 260c n.d. 000180267 710a Staatliches Museum für Völkerkunde Dresden 000180267 852x UB 000180267 852b CA20 000180267 852c BIB 000180267 852j BIB.P.015211/6 000180267 852a #21(1962) - 32(1973) ; 42(1986) - 50(1999) 000180267 852z ONTBREEKT : 43 ; 46 ; 48 000180267 920a periodical 000180267 Z30l RUG01 000180267 Z30L RUG01 000180267 Z30m ISSUE 000180267 Z30x UB 000180267 Z301 CA20 000180267 Z302 BIB 000180267 Z303 BIB.EK.01.123 000180267 Z305 181167-10 000180267 Z308 20000906 000180267 Z30a 1962 000180267 Z30b 21 000180267 Z30c ^ 000180267 Z30d ^ 000180267 Z30f 52 000180267 Z30F Consult in BIBR 000180267 Z30h 21(1962) 000180267 Z30i 20000906 000180267 Z30j 20000906 000180267 Z30k 20000906 000180267 Z30l RUG01 000180267 Z30L RUG01 000180267 Z30m ISSUE 000180267 Z30x UB 000180267 Z301 CA20 000180267 Z302 BIB 000180267 Z303 BIB.EK.01.151 000180267 Z305 181167-20 000180267 Z308 20000906 000180267 Z30a 1986 000180267 Z30b ^ 000180267 Z30c ^ 000180267 Z30d ^ 000180267 Z30f 52 000180267 Z30F Consult in BIBR 000180267 Z30h 42(1986) 000180267 Z30i 20000906 000180267 Z30j 20000906 000180267 Z30k 20000906 000180267 Z30l RUG01 000180267 Z30L RUG01 000180267 Z30m ISSUE 000180267 Z30x UB 000180267 Z301 CA20 000180267 Z302 BIB 000180267 Z303 BIB.EK.01.168 000180267 Z305 181167-30 000180267 Z308 20000906 000180267 Z30a 1990 000180267 Z30b ^ 000180267 Z30c ^ 000180267 Z30d ^ 000180267 Z30f 52 000180267 Z30F Consult in BIBR 000180267 Z30h 44(1990) 000180267 Z30i 20000906 000180267 Z30j 20000906 000180267 Z30k 20000906 000180267 Z30l RUG01 000180267 Z30L RUG01 000180267 Z30m ISSUE 000180267 Z30x UB 000180267 Z301 CA20 000180267 Z302 BIB 000180267 Z303 BIB.EK.01.169 000180267 Z305 181167-40 000180267 Z308 20000906 000180267 Z30a 1990 000180267 Z30b ^ 000180267 Z30c ^ 000180267 Z30d ^ 000180267 Z30f 52 000180267 Z30F Consult in BIBR 000180267 Z30h 45(1990) 000180267 Z30i 20000906 000180267 Z30j 20000906 000180267 Z30k 20000906 000180267 Z30l RUG01 000180267 Z30L RUG01 000180267 Z30m ISSUE 000180267 Z30x UB 000180267 Z301 CA20 000180267 Z302 BIB 000180267 Z303 BIB.EK.01.175 000180267 Z305 181167-50 000180267 Z308 20000906 000180267 Z30a 1992 000180267 Z30b ^ 000180267 Z30c ^ 000180267 Z30d ^ 000180267 Z30f 52 000180267 Z30F Consult in BIBR 000180267 Z30h 47(1992) 000180267 Z30i 20000906 000180267 Z30j 20000906 000180267 Z30k 20000906 000180267 Z30l RUG01 000180267 Z30L RUG01 000180267 Z30m ISSUE 000180267 Z30x UB 000180267 Z301 CA20 000180267 Z302 BIB 000180267 Z303 BIB.EK.01.205 000180267 Z305 181167-60 000180267 Z308 20000906 000180267 Z30a 1996 000180267 Z30b ^ 000180267 Z30c ^ 000180267 Z30d ^ 000180267 Z30f 52 000180267 Z30F Consult in BIBR 000180267 Z30h 49(1996) 000180267 Z30i 20000906 000180267 Z30j 20000906 000180267 Z30k 20000906 000180267 Z30l RUG01 000180267 Z30L RUG01 000180267 Z30m ISSUE 000180267 Z30x UB 000180267 Z301 CA20 000180267 Z302 BIB 000180267 Z303 BIB.EK.01.253 000180267 Z305 181167-70 000180267 Z308 20000906 000180267 Z30a 1999 000180267 Z30b ^ 000180267 Z30c ^ 000180267 Z30d ^ 000180267 Z30f 52 000180267 Z30F Consult in BIBR 000180267 Z30h 50(1999) 000180267 Z30i 20000906 000180267 Z30j 20000906 000180267 Z30k 20000906 000200399 LDR 00000nas a22 a 4500 000200399 001 000200399 000200399 005 20150403140231.0 000200399 008 900302nuuuuuuuuxx^^^^^^r^^^^^000^0^dut^d 000200399 035a c:lvd:1244019 000200399 035a (ser01)BIB.P.009067 000200399 040a BE-GnUNI 000200399 245a ... Gezamenlijke bijeenkomst van de leden van de Raadgevende vergadering van de Raad van Europa en van de leden van het Europese parlement : 000200399 245b woordelijk verslag van de beraadslagingen. 000200399 260a Straatsburg : 000200399 260b Raad van Europa, 000200399 260c n.d. 000200399 580a Voortgezet als: ... Gezamenlijke bijeenkomst van de leden van de Parlementaire vergadering van de Raad van Europa en van de leden van het Europese parlement: woordelijk verslag van de beraadslagingen 000200399 710a Europees parlement 000200399 710a Raad van Europa 000200399 852x UB 000200399 852b CA20 000200399 852c BIB 000200399 852j BIB.P.009067/5 000200399 852a #10(1963) - 21(1975) 000200399 852z ONTBREEKT : 19 000200399 920a periodical 000180638 LDR 00000nas a22 a 4500 000180638 001 000180638 000180638 005 20150403140150.0 000180638 008 970601nuuuuuuuuxx^b^^^^^^^^^^^^^^^^dut^^ 000180638 022a 0778-0303 000180638 035a c:lvd:1075124 000180638 040a BE-GnUNI 000180638 082a 621.38 000180638 245a AV-industrie. 000180638 246a AV-i 000180638 246a Avi : vakblad voor de audiovisuele sector 000180638 260a Gent : 000180638 260b MediaClip, 000180638 260c n.d. 000180638 561a Herkomst L52.DDK.VT.174 : Documentatiecentrum voor Dramatische Kunst 000180638 852x UB 000180638 852b CA20 000180638 852c DEPC 000180638 852j DEPC.L52.TS (L52.DDK.VT.174) 000180638 852a #12(2000)69 ; 13(2001)72,74 ; 13(2001)77 ; 14(2002)80 ; 15(2003)84,89 000180638 920a periodical 000180784 LDR 00000nas a22 a 4500 000180784 001 000180784 000180784 005 20150403140151.0 000180784 008 890629nuuuuuuuuxx^^^^^^^^^^^^^^^^^^|||^^ 000180784 022a 0306-7580 000180784 035a c:lvd:1204342 000180784 040a BE-GnUNI 000180784 245a Small animal abstracts. 000180784 260a Wallingford : 000180784 260b CAB international, 000180784 260c n.d. 000180784 852x UB 000180784 852b CA20 000180784 852c BIB 000180784 852j BIB.P.011792 000180784 852a #7(1981) - 8(1982) 000180784 920a periodical 000180784 Z30l RUG01 000180784 Z30L RUG01 000180784 Z30m ISSUE 000180784 Z30x UB 000180784 Z301 CA20 000180784 Z302 BIB 000180784 Z303 BIB.P.011792 000180784 Z306 [B] 000180784 Z305 000000924663 000180784 Z308 20130422 000180784 Z30a 1982 000180784 Z30b ^ 000180784 Z30c ^ 000180784 Z30d ^ 000180784 Z30f 52 000180784 Z30F Consult in BIBR 000180784 Z30h (1981-1982) 000180784 Z30i 20120612 000180784 Z30j 20120612 000180784 Z30k 20120612 000200660 LDR 00000nas a22 a 4500 000200660 001 000200660 000200660 005 20150403140231.0 000200660 008 980907nuuuuuuuuxx^ar^^^r^^^^^0^^^^0dut^^ 000200660 022a 1384-0398 000200660 035a c:lvd:908978 000200660 040a BE-GnUNI 000200660 210a Text.hist. bijdr. 000200660 245a Textielhistorische bijdragen. 000200660 260a Enschede : 000200660 260b Stichting textielgeschiedenis, 000200660 260c n.d. 000200660 500a Textielhistorische bijdragen is een vervolg op de jaarverslagen van de Stichting textielgeschiedenis over de jaren 1954-1985. Nummer 1(1960) is tevens jaarverslag over 1959. 000200660 710a Stichting Textielgeschiedenis 000200660 852x UB 000200660 852b CA20 000200660 852c BIB 000200660 852j BIB.P.014753 000200660 852a #(1957) - (1958) ; 1(1960) - 12(1971) 000200660 852x UB 000200660 852b CA20 000200660 852c DEPC 000200660 852j DEPC.L06.TS 000200660 852a #34(1994) - 43(2003) 000200660 852z ONTBREEKT : 42(2002) 000200660 920a periodical 000200660 Z30l RUG01 000200660 Z30L RUG01 000200660 Z30m ISSUE 000200660 Z30x UB 000200660 Z301 CA20 000200660 Z302 BIB 000200660 Z303 DEPC.L06.TS 000200660 Z305 000010962401 000200660 Z308 20160215 000200660 Z30a 1994 000200660 Z30b 34 000200660 Z30c ^ 000200660 Z30d ^ 000200660 Z30f 52 000200660 Z30F Consult in BIBR 000200660 Z30p NA 000200660 Z30P Not arrived 000200660 Z30h v.34(1994) 000200660 Z30i 20140513 000200660 Z30j 20140513 000200660 Z30k 20160215 000200660 Z30l RUG01 000200660 Z30L RUG01 000200660 Z30m ISSUE 000200660 Z30x UB 000200660 Z301 CA20 000200660 Z302 BIB 000200660 Z303 DEPC.L06.TS 000200660 Z305 000010888427 000200660 Z308 20150302 000200660 Z30a 1996 000200660 Z30b 36 000200660 Z30c ^ 000200660 Z30d ^ 000200660 Z30f 52 000200660 Z30F Consult in BIBR 000200660 Z30p NA 000200660 Z30P Not arrived 000200660 Z30h v.36(1996) 000200660 Z30i 20140513 000200660 Z30j 20140513 000200660 Z30l RUG01 000200660 Z30L RUG01 000200660 Z30m ISSUE 000200660 Z30x UB 000200660 Z301 CA20 000200660 Z302 DEPC 000200660 Z303 DEPC.L06.TS 000200660 Z305 000010900449 000200660 Z308 20160121 000200660 Z30a 1997 000200660 Z30b 37 000200660 Z30c ^ 000200660 Z30d ^ 000200660 Z30f 52 000200660 Z30F Consult in BIBR 000200660 Z30h v.37(1997) 000200660 Z30i 20140513 000200660 Z30j 20140513 000200660 Z30k 20160121 000200660 Z30l RUG01 000200660 Z30L RUG01 000200660 Z30m ISSUE 000200660 Z30x UB 000200660 Z301 CA20 000200660 Z302 BIB 000200660 Z303 DEPC.L06.TS 000200660 Z305 000001003498 000200660 Z308 20140513 000200660 Z30a 2001 000200660 Z30b 41 000200660 Z30c ^ 000200660 Z30d ^ 000200660 Z30f 52 000200660 Z30F Consult in BIBR 000200660 Z30h v.41(2001) 000200660 Z30i 20140513 000200660 Z30j 20140513 000200660 Z30k 20140513 000180904 LDR 00000nas a22 a 4500 000180904 001 000180904 000180904 005 20150403140151.0 000180904 008 980701nuuuuuuuuxx^^^^^^^^^^^^^^^^^^ita^^ 000180904 035a c:lvd:1287057 000180904 040a BE-GnUNI 000180904 245a Diritto del commercio internazionale. Giurisprudenza commerciale. 000180904 260a Milano : 000180904 260b Giuffrè, 000180904 260c n.d. 000180904 852x RE 000180904 852b RE55 000180904 852c RBIB 000180904 852j RBIB.IPR 140 RVG 007 000180904 852a #2(1988)2, 25(2011)3 000180904 920a periodical 000180904 Z30l RUG01 000180904 Z30L RUG01 000180904 Z30m ISSUE 000180904 Z30x RE 000180904 Z301 RE55 000180904 Z302 RBIB 000180904 Z303 RBIB.IPR 140 INT 007 000180904 Z305 000000791072 000180904 Z308 20100521 000180904 Z30b ^ 000180904 Z30c ^ 000180904 Z30d ^ 000180904 Z30f 22 000180904 Z30F LOAN/open shelves 000180904 Z30h 2(1988)2 000180904 Z30i 20100521 000180904 Z30j 20100521 000180904 Z30k 20141125 000180904 Z30l RUG01 000180904 Z30L RUG01 000180904 Z30m ISSUE 000180904 Z30x RE 000180904 Z301 RE55 000180904 Z302 RBIB 000180904 Z303 RBIB.IPR 140 INT 007 000180904 Z305 000001045064 000180904 Z308 20150904 000180904 Z30b ^ 000180904 Z30c ^ 000180904 Z30d ^ 000180904 Z30f 22 000180904 Z30F LOAN/open shelves 000180904 Z30h 25(2011)3 000180904 Z30i 20100521 000180904 Z30j 20100521 000180904 Z30k 20150930 000180972 LDR 00000nas a22 a 4500 000180972 001 000180972 000180972 005 20150403140151.0 000180972 008 890630nuuuuuuuuxx^^^^^^^^^^^^^^^^^^|||^^ 000180972 022a 0721-099X 000180972 035a c:lvd:1221359 000180972 040a BE-GnUNI 000180972 245a Mitteilungsblatt der Bundesanstalt für Fleischforschung Kulmbach. 000180972 260a Kulmbach : 000180972 260b Bundesanstalt für Fleischforschung, 000180972 260c n.d. 000180972 710a Bundesanstalt für Fleischforschung Kulmbach 000180972 852x BW 000180972 852b LA55 000180972 852c ALLW 000180972 852j ALLW.A31 000180972 852a #16(1967) - 122(1993) 000180972 852z IN VERHUIS 000180972 920a periodical 000294227 LDR 00000nas a22 a 4500 000294227 001 000294227 000294227 005 20150403140537.0 000294227 008 980907nuuuuuuuuxx^^^^^^^^^^^^^^^^^^spa^^ 000294227 022a 0120-1468 000294227 035a c:lvd:6924275 000294227 040a BE-GnUNI 000294227 050a BR7 000294227 082a 255.3 000294227 245a Franciscanum : 000294227 245b revista de las ciencias del espíritu. 000294227 260a Santafé de Bogota : 000294227 260b Universidad de San Buenaventura, 000294227 260c n.d. 000294227 610a Catholic Church 000294227 610z Latin America 000294227 610v Periodicals. 000294227 650a Philosophy 000294227 650v Periodicals. 000294227 650a Theology 000294227 650v Periodicals. 000294227 710a Universidad de San Buenaventura Bogota 000294227 852x UB 000294227 852b CA20 000294227 852c BIB 000294227 852j BIB.P.018480 000294227 852a #31(1989)93 000294227 852x UB 000294227 852b CA20 000294227 852c DEPC 000294227 852j DEPC.L27.TS 000294227 852a #9(1967) - 50(2008) ; 51(2009)special issue ; 53(2011)155-156 000294227 852z ONTBREEKT : 14(1972)40 ; 24(1982)74 ; 29(1987) ; 31(1989)91,93 ; 47(2004)139 ; 48(2005)141-142 000294227 920a periodical 000204095 LDR 00000nas a22 a 4500 000204095 001 000204095 000204095 005 20150412115049.0 000204095 008 900412nuuuuuuuube^^^^^^^^^^^^^^^^^^|||^^ 000204095 035a c:lvd:1224012 000204095 040a BE-GnUNI 000204095 080a 05 <435.9> 000204095 245a Europe. 000204095 260a Bruxelles : 000204095 260b Agence internationale d'information pour la presse, 000204095 260c n.d. 000204095 710a Agence internationale d'information pour la presse 000204095 852x RE 000204095 852b RE55 000204095 852c R17 000204095 852j R17 000204095 852a (1987) - 000204095 920a periodical 000181120 LDR 00000nas a22 a 4500 000181120 001 000181120 000181120 005 20150412132127.0 000181120 008 890704nuuuuuuuufr^^^^^^^^^^^^^^^^^^|||^^ 000181120 035a c:lvd:418694 000181120 040a BE-GnUNI 000181120 245a Annuaire philosophique. 000181120 260a Paris : 000181120 260b Seuil, 000181120 260c n.d. 000181120 490a L'ordre philosophique 000181120 852x UB 000181120 852b CA20 000181120 852c BIB 000181120 852j BIB.PHIL.001077 000181120 852a #1(1864) - 7(1870)4 000181120 920a periodical 000204646 LDR 00000nas a22 a 4500 000204646 001 000204646 000204646 005 20150403140236.0 000204646 008 900423nuuuuuuuuxx^m^^^^^^^^^^^^^^^^|||^^ 000204646 022a 1049-0833 000204646 035a c:lvd:737842 000204646 035a (ser01)BIB.P.016771 000204646 040a BE-GnUNI 000204646 245a CD-ROM professional : 000204646 245b the magazine of optical information media. 000204646 260a Weston (Conn.) : 000204646 260b Pemberton, 000204646 260c n.d. 000204646 525a Bimonthly supplement 000204646 580a Voortgezet als: EMedia professional 000204646 580a Voortzetting van: The laserdisk professional: the magazine of optical information media 000204646 650a Information Technology 000204646 650a Computer Science (Hardware & Networks) 000204646 650x Information Technology 000204646 650a Data Storage and Data Mining 000204646 650x Information Technology 000204646 650a General and Others 000204646 650x Information Technology 000204646 650a Internet 000204646 852x UB 000204646 852b CA20 000204646 852c BIB 000204646 852j BIB.P.016771 000204646 852a #6(1993) - 9(1996) 000204646 920a periodical 000181378 LDR 00000nas a22 a 4500 000181378 001 000181378 000181378 005 20150403140154.0 000181378 008 890707nuuuuuuuuxx^^^^^^^^^^^^^^^^^^|||^^ 000181378 035a c:lvd:1213402 000181378 040a BE-GnUNI 000181378 245a Fish farming international. 000181378 260a London : 000181378 260b AGB, 000181378 260c n.d. 000181378 852x BW 000181378 852b LA55 000181378 852c ALLW 000181378 852j ALLW.H01 000181378 852a #1(1973) - 10(1983) 000181378 920a periodical 000127106 LDR 00000nas a22 a 4500 000127106 001 000127106 000127106 005 20150403135915.0 000127106 008 870921nuuuuuuuuxx^^^^^^^^^^^^^^^^^^|||^^ 000127106 022a 0930-6447 000127106 035a c:lvd:6922957 000127106 035a (ser01)BIB.P.011885 000127106 040a BE-GnUNI 000127106 245a Tierärztliche Praxis. Supplement. 000127106 260a Stuttgart : 000127106 260b Schattauer, 000127106 260c n.d. 000127106 650a VETERINARY MEDICINE, periodicals 000127106 852x DI 000127106 852b DI51 000127106 852c DIBIB 000127106 852j DIBIB.CDALG011 000127106 852a 1(1985) - 000127106 852d BIB.P.011885/S 000127106 8529 openkast 000127106 920a periodical 000181567 LDR 00000nas a22 a 4500 000181567 001 000181567 000181567 005 20150403140154.0 000181567 008 890712nuuuuuuuuxx^m^^^^^^^^^^^^^^^^eng^^ 000181567 022a 0456-5339 000181567 035a c:lvd:533163 000181567 040a BE-GnUNI 000181567 050a HC461 000181567 082a 338.91 000181567 245a Look Japan. 000181567 260a Tokyo : 000181567 260b Look Japan, 000181567 260c n.d. 000181567 852x UB 000181567 852b CA20 000181567 852c BIB 000181567 852j BIB.P.016652 000181567 852a #37(1992)431 - 49(2004)577 000181567 852x EB 000181567 852b EB55 000181567 852c EBIB 000181567 852j EBIB.TIJDSCHRIFTEN 000181567 852a #39(1994)455 - 39(1994)456 000181567 852x LW 000181567 852b LW21 000181567 852c L94A 000181567 852j L94A 000181567 852a (1997) - 000181567 920a periodical 000181567 Z30l RUG01 000181567 Z30L RUG01 000181567 Z30m ISSUE 000181567 Z30x UB 000181567 Z301 CA20 000181567 Z302 BIB 000181567 Z303 BIB.P.016652 000181567 Z306 [B] 000181567 Z305 000000912115 000181567 Z308 20130417 000181567 Z30a 1992-1995 000181567 Z30b ^ 000181567 Z30c ^ 000181567 Z30d ^ 000181567 Z30f 52 000181567 Z30F Consult in BIBR 000181567 Z30h (1992-1995) 000181567 Z30i 20120706 000181567 Z30j 20120706 000181567 Z30k 20120706 000181567 Z30l RUG01 000181567 Z30L RUG01 000181567 Z30m ISSUE 000181567 Z30x UB 000181567 Z301 CA20 000181567 Z302 BIB 000181567 Z303 BIB.P.016652 000181567 Z306 [B] 000181567 Z305 000000912118 000181567 Z308 20130417 000181567 Z30a 1996-1999 000181567 Z30b ^ 000181567 Z30c ^ 000181567 Z30d ^ 000181567 Z30f 52 000181567 Z30F Consult in BIBR 000181567 Z30h (1996-1999) 000181567 Z30i 20120706 000181567 Z30j 20120706 000181567 Z30k 20120706 000181567 Z30l RUG01 000181567 Z30L RUG01 000181567 Z30m ISSUE 000181567 Z30x UB 000181567 Z301 CA20 000181567 Z302 BIB 000181567 Z303 BIB.P.016652 000181567 Z306 [B] 000181567 Z305 000000912117 000181567 Z308 20130417 000181567 Z30a 2000-2004 000181567 Z30b 45-50 000181567 Z30c ^ 000181567 Z30d ^ 000181567 Z30f 52 000181567 Z30F Consult in BIBR 000181567 Z30h v.45-50(2000-2004) 000181567 Z30i 20120706 000181567 Z30j 20120706 000181567 Z30k 20120706 marcxml.json100644000765000024 12100613444134453 17652 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/t{"record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000179913"],["005"," "," ","_","20150903155726.0"],["008"," "," ","_","980907nuuuuuuuuxx^^^^^^^^^^^^^^^^^^ger^^"],["022"," "," ","a","0932-9315"],["035"," "," ","a","c:lvd:1219061"],["040"," "," ","a","BE-GnUNI"],["050"," ","4","a","SD1"],["082"," "," ","a","634.9"],["082"," "," ","a","674"],["245"," "," ","a","Forst und Holz (1988)."],["260"," "," ","a","Hannover :","b","Schaper,","c","n.d."],["580"," "," ","a","Verderzetting van: Der Forst- und Holzwirt [ISSN 0015-7961]"],["580"," "," ","a","Vanaf 2011 opgenomen in: AFZ. Der Wald [ISSN 1430-2713]"],["852"," "," ","x","BW","b","LA04","c","A42","j","A42","a","#(1988) - 66(2011)"],["920"," "," ","a","periodical"]],"_status":"","_setSpec":[],"_identifier":"oai:search.ugent.be:ser01:000179913","_about":[],"_id":"000179913","_datestamp":"1970-01-01T00:00:00Z"} {"_datestamp":"1970-01-01T00:00:00Z","_id":"000136149","_about":[],"_identifier":"oai:search.ugent.be:ser01:000136149","record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000136149"],["005"," "," ","_","20150412120202.0"],["008"," "," ","_","871222nuuuuuuuube^^^^^^^^^^^^^^^^^^|||^^"],["035"," "," ","a","c:lvd:273361"],["035"," "," ","a","(ser01)BIB.P.005513"],["040"," "," ","a","BE-GnUNI"],["245"," "," ","a","Bulletin de l'Académie royale des sciences, lettres et beaux-arts de Belgique. Classe des sciences."],["260"," "," ","a","Bruxelles :","b","Hayez,","c","n.d."],["710","2"," ","a","Académie royale des sciences, des lettres et des beaux-arts de Belgique"],["852"," "," ","x","UB","b","CA20","c","BIB","j","BIB.P.005513","a","#S.3: 7(1884) - 13(1887)"],["920"," "," ","a","periodical"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","UB","1","CA20","2","BIB","3","BIB.P.005513","5","000000709704","8","20110317","a","1919","b","^","c","^","d","^","f","51","F","Consult in BIBS","h","(1919)","i","20110317","j","20110317","k","20110317"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","UB","1","CA20","2","BIB","3","BIB.P.005513","5","000000709701","8","20110317","a","1933","b","^","c","^","d","^","f","51","F","Consult in BIBS","h","(1933)","i","20110317","j","20110317","k","20110317"]],"_setSpec":[],"_status":""} {"_status":"","record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000225094"],["005"," "," ","_","20150412142858.0"],["008"," "," ","_","910125nuuuuuuuunyu^^^^^^^^^^^^^^^^^|||^^"],["022"," "," ","a","1053-587X"],["035"," "," ","a","c:lvd:1209939"],["035"," "," ","a","(ser01)BIB.P.013308"],["040"," "," ","a","BE-GnUNI"],["050"," "," ","a","TK5981"],["082"," "," ","a","621.38"],["245"," "," ","a","IEEE transactions on signal processing."],["260"," "," ","a","New York (N.Y.) :","b","IEEE signal processing society,","c","n.d."],["580"," "," ","a","Voortzetting van: IEEE transactions on acoustics, speech, and signal processing"],["650"," ","4","a","Engineering"],["650"," ","4","a","Electronics","x","Telecommunications Technology"],["650"," ","4","a","Digital Signal Processing"],["852"," "," ","x","EA","b","TW06","c","T56","j","T56","a","#39(1991) - 59(2011)3","d","BIB.P.013308"],["920"," "," ","a","periodical"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-10","8","20060829","a","2006","b","54","c","1","d","^","f","04","F","NO LOAN/open shelves","h","v.54:no.1(2006:Jan)","i","20060101","j","20060131","k","20060829"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-100","8","20060829","a","2006","b","54","c","10","d","^","f","04","F","NO LOAN/open shelves","h","v.54:no.10(2006:Oct)","i","20061001","j","20061031","k","20061013"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-110","8","20060829","a","2006","b","54","c","11","d","^","f","04","F","NO LOAN/open shelves","h","v.54:no.11(2006:Nov)","i","20061101","j","20061201","k","20061107"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-120","8","20060829","a","2006","b","54","c","12","d","^","f","04","F","NO LOAN/open shelves","h","v.54:no.12(2006:Dec)","i","20061201","j","20061231","k","20061208"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-20","8","20060829","a","2006","b","54","c","2","d","^","f","04","F","NO LOAN/open shelves","h","v.54:no.2(2006:Feb)","i","20060201","j","20060303","k","20060829"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-30","8","20060829","a","2006","b","54","c","3","d","^","f","04","F","NO LOAN/open shelves","h","v.54:no.3(2006:Mar)","i","20060301","j","20060331","k","20060829"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-40","8","20060829","a","2006","b","54","c","4","d","^","f","04","F","NO LOAN/open shelves","h","v.54:no.4(2006:Apr)","i","20060401","j","20060501","k","20060829"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-50","8","20060829","a","2006","b","54","c","5","d","^","f","04","F","NO LOAN/open shelves","h","v.54:no.5(2006:May)","i","20060501","j","20060531","k","20060829"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-60","8","20060829","a","2006","b","54","c","6","d","^","f","04","F","NO LOAN/open shelves","h","v.54:no.6(2006:Jun)","i","20060601","j","20060701","k","20060829"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-70","8","20060829","a","2006","b","54","c","7","d","^","f","04","F","NO LOAN/open shelves","h","v.54:no.7(2006:Jul)","i","20060701","j","20060731","k","20060829"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-80","8","20060829","a","2006","b","54","c","8","d","^","f","04","F","NO LOAN/open shelves","h","v.54:no.8(2006:Aug)","i","20060801","j","20060831","k","20061218"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-90","8","20060829","a","2006","b","54","c","9","d","^","f","04","F","NO LOAN/open shelves","h","v.54:no.9(2006:Sep)","i","20060901","j","20061001","k","20060918"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-130","8","20061208","a","2007","b","55","c","1","d","^","f","04","F","NO LOAN/open shelves","h","v.55:no.1(2007:Jan)","i","20070101","j","20070131","k","20070109"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-220","8","20061208","a","2007","b","55","c","10","d","^","f","04","F","NO LOAN/open shelves","h","v.55:no.10(2007:Oct)","i","20071001","j","20071031","k","20071011"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-230","8","20061208","a","2007","b","55","c","11","d","^","f","04","F","NO LOAN/open shelves","h","v.55:no.11(2007:Nov)","i","20071101","j","20071201","k","20080229"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-240","8","20061208","a","2007","b","55","c","12","d","^","f","04","F","NO LOAN/open shelves","h","v.55:no.12(2007:Dec)","i","20071201","j","20071231","k","20071211"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-140","8","20061208","a","2007","b","55","c","2","d","^","f","04","F","NO LOAN/open shelves","h","v.55:no.2(2007:Feb)","i","20070201","j","20070303","k","20070212"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-150","8","20061208","a","2007","b","55","c","3","d","^","f","04","F","NO LOAN/open shelves","h","v.55:no.3(2007:Mar)","i","20070301","j","20070331","k","20070307"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-160","8","20061208","a","2007","b","55","c","4","d","^","f","04","F","NO LOAN/open shelves","h","v.55:no.4(2007:Apr)","i","20070401","j","20070501","k","20070404"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-170","8","20061208","a","2007","b","55","c","5","d","^","f","04","F","NO LOAN/open shelves","h","v.55:no.5(2007:May)","i","20070501","j","20070531","k","20070514"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-180","8","20061208","a","2007","b","55","c","6","d","^","f","04","F","NO LOAN/open shelves","h","v.55:no.6(2007:Jun)","i","20070601","j","20070701","k","20070607"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-190","8","20061208","a","2007","b","55","c","7","d","^","f","04","F","NO LOAN/open shelves","h","v.55:no.7(2007:Jul)","i","20070701","j","20070731","k","20070724"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-200","8","20061208","a","2007","b","55","c","8","d","^","f","04","F","NO LOAN/open shelves","h","v.55:no.8(2007:Aug)","i","20070801","j","20070831","k","20070820"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-210","8","20061208","a","2007","b","55","c","9","d","^","f","04","F","NO LOAN/open shelves","h","v.55:no.9(2007:Sep)","i","20070901","j","20071001","k","20070905"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-250","8","20071211","a","2008","b","56","c","1","d","^","f","04","F","NO LOAN/open shelves","h","v.56:no.1(2008:Jan)","i","20080101","j","20080131","k","20080114"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-340","8","20071211","a","2008","b","56","c","10","d","^","f","04","F","NO LOAN/open shelves","h","v.56:no.10(2008:Oct)","i","20081001","j","20081031","k","20081008"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-350","8","20071211","a","2008","b","56","c","11","d","^","f","04","F","NO LOAN/open shelves","h","v.56:no.11(2008:Nov)","i","20081101","j","20081201","k","20081112"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-360","8","20071211","a","2008","b","56","c","12","d","^","f","04","F","NO LOAN/open shelves","h","v.56:no.12(2008:Dec)","i","20081201","j","20081231","k","20090102"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-260","8","20071211","a","2008","b","56","c","2","d","^","f","04","F","NO LOAN/open shelves","h","v.56:no.2(2008:Feb)","i","20080201","j","20080302","k","20080206"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-270","8","20071211","a","2008","b","56","c","3","d","^","f","04","F","NO LOAN/open shelves","h","v.56:no.3(2008:Mar)","i","20080301","j","20080331","k","20080311"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-280","8","20071211","a","2008","b","56","c","4","d","^","f","04","F","NO LOAN/open shelves","h","v.56:no.4(2008:Apr)","i","20080401","j","20080501","k","20080422"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-290","8","20071211","a","2008","b","56","c","5","d","^","f","04","F","NO LOAN/open shelves","h","v.56:no.5(2008:May)","i","20080501","j","20080531","k","20080509"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-300","8","20071211","a","2008","b","56","c","6","d","^","f","04","F","NO LOAN/open shelves","h","v.56:no.6(2008:Jun)","i","20080601","j","20080701","k","20080605"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-310","8","20071211","a","2008","b","56","c","7","d","^","f","04","F","NO LOAN/open shelves","h","v.56:no.7(2008:Jul)","i","20080701","j","20080731","k","20080804"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-320","8","20071211","a","2008","b","56","c","8","d","^","f","04","F","NO LOAN/open shelves","h","v.56:no.8(2008:Aug)","i","20080801","j","20080831","k","20080806"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-330","8","20071211","a","2008","b","56","c","9","d","^","f","04","F","NO LOAN/open shelves","h","v.56:no.9(2008:Sep)","i","20080901","j","20081001","k","20080902"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-370","8","20090102","a","2009","b","57","c","1","d","^","f","04","F","NO LOAN/open shelves","h","v.57:no.1(2009:Jan)","i","20090101","j","20090131","k","20090325"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-460","8","20090102","a","2009","b","57","c","10","d","^","f","04","F","NO LOAN/open shelves","h","v.57:no.10(2009:Oct)","i","20091001","j","20091031","k","20091015"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-470","8","20090102","a","2009","b","57","c","11","d","^","f","04","F","NO LOAN/open shelves","h","v.57:no.11(2009:Nov)","i","20091101","j","20091201","k","20091105"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-480","8","20090102","a","2009","b","57","c","12","d","^","f","04","F","NO LOAN/open shelves","h","v.57:no.12(2009:Dec)","i","20091201","j","20091231","k","20100105"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-380","8","20090102","a","2009","b","57","c","2","d","^","f","04","F","NO LOAN/open shelves","p","CL","P","Claimed","h","v.57:no.2(2009:Feb)","i","20090201","j","20090303"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-390","8","20090102","a","2009","b","57","c","3","d","^","f","04","F","NO LOAN/open shelves","h","v.57:no.3(2009:Mar)","i","20090301","j","20090331","k","20090310"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-400","8","20090102","a","2009","b","57","c","4","d","^","f","04","F","NO LOAN/open shelves","h","v.57:no.4(2009:Apr)","i","20090401","j","20090501","k","20090403"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-410","8","20090102","a","2009","b","57","c","5","d","^","f","04","F","NO LOAN/open shelves","h","v.57:no.5(2009:May)","i","20090501","j","20090531","k","20090511"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-420","8","20090102","a","2009","b","57","c","6","d","^","f","04","F","NO LOAN/open shelves","h","v.57:no.6(2009:Jun)","i","20090601","j","20090701","k","20090612"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-430","8","20090102","a","2009","b","57","c","7","d","^","f","04","F","NO LOAN/open shelves","h","v.57:no.7(2009:Jul)","i","20090701","j","20090731","k","20090710"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-440","8","20090102","a","2009","b","57","c","8","d","^","f","04","F","NO LOAN/open shelves","h","v.57:no.8(2009:Aug)","i","20090801","j","20090831","k","20090818"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-450","8","20090102","a","2009","b","57","c","9","d","^","f","04","F","NO LOAN/open shelves","h","v.57:no.9(2009:Sep)","i","20090901","j","20091001","k","20090907"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-490","8","20100105","a","2010","b","58","c","1","d","^","f","04","F","NO LOAN/open shelves","h","v.58:no.1(2010:Jan)","i","20100101","j","20100131","k","20100115"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-580","8","20100105","a","2010","b","58","c","10","d","^","f","04","F","NO LOAN/open shelves","h","v.58:no.10(2010:Oct)","i","20101001","j","20101031","k","20101015"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-590","8","20100105","a","2010","b","58","c","11","d","^","f","04","F","NO LOAN/open shelves","h","v.58:no.11(2010:Nov)","i","20101101","j","20101201","k","20101129"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-600","8","20100105","a","2010","b","58","c","12","d","^","f","04","F","NO LOAN/open shelves","p","CL","P","Claimed","h","v.58:no.12(2010:Dec)","i","20101201","j","20101231"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-500","8","20100105","a","2010","b","58","c","2","d","^","f","04","F","NO LOAN/open shelves","h","v.58:no.2(2010:Feb)","i","20100201","j","20100303","k","20100216"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-510","8","20100105","a","2010","b","58","c","3","d","^","f","04","F","NO LOAN/open shelves","h","v.58:no.3[pt.1](2010:Mar)","i","20100301","j","20100331","k","20100329"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-610","8","20100329","a","2010","b","58","c","3","d","^","f","04","F","NO LOAN/open shelves","h","v.58:no.3[pt.2](2010:Mar)","i","20100301","j","20100331","k","20100329"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-520","8","20100105","a","2010","b","58","c","4","d","^","f","04","F","NO LOAN/open shelves","p","NA","P","Not arrived","h","v.58:no.4(2010:Apr)","i","20100401","j","20100501"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-530","8","20100105","a","2010","b","58","c","5","d","^","f","04","F","NO LOAN/open shelves","h","v.58:no.5(2010:May)","i","20100501","j","20100531","k","20100823"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-540","8","20100105","a","2010","b","58","c","6","d","^","f","04","F","NO LOAN/open shelves","h","v.58:no.6(2010:Jun)","i","20100601","j","20100701","k","20100706"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-550","8","20100105","a","2010","b","58","c","7","d","^","f","04","F","NO LOAN/open shelves","h","v.58:no.7(2010:Jul)","i","20100701","j","20100731","k","20100805"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-560","8","20100105","a","2010","b","58","c","8","d","^","f","04","F","NO LOAN/open shelves","h","v.58:no.8(2010:Aug)","i","20100801","j","20100831","k","20100823"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-570","8","20100105","a","2010","b","58","c","9","d","^","f","04","F","NO LOAN/open shelves","h","v.58:no.9(2010:Sep)","i","20100901","j","20101001","k","20100913"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-620","8","20101129","a","2011","b","59","c","1","d","^","f","04","F","NO LOAN/open shelves","h","v.59:no.1(2011:Jan)","i","20110101","j","20110131","k","20110202"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-630","8","20101129","a","2011","b","59","c","2","d","^","f","04","F","NO LOAN/open shelves","h","v.59:no.2(2011:Feb)","i","20110201","j","20110303","k","20110203"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","EA","1","TW06","2","T56","3","T56","9","BIB.P.013308","5","225994-640","8","20101129","a","2011","b","59","c","3","d","^","f","04","F","NO LOAN/open shelves","h","v.59:no.3(2011:Mar)","i","20110301","j","20110331","k","20110311"]],"_setSpec":[],"_about":[],"_identifier":"oai:search.ugent.be:ser01:000225094","_id":"000225094","_datestamp":"1970-01-01T00:00:00Z"} {"record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000199843"],["005"," "," ","_","20150412140827.0"],["008"," "," ","_","900221nuuuuuuuuae^^^^^^^^^^^^^^^^^^|||^^"],["022"," "," ","a","0020-2460"],["035"," "," ","a","c:lvd:1193710"],["040"," "," ","a","BE-GnUNI"],["082"," "," ","a","579.2"],["245"," "," ","a","Archives de l'Institut Pasteur d'Algérie."],["260"," "," ","a","Alger :","b","Institut Pasteur d'Algérie,","c","n.d."],["710","2"," ","a","Institut Pasteur d'Algérie"],["852"," "," ","x","UB","b","CA20","c","BIB","j","BIB.P.009596","a","#29(1951) - 39(1961)1","z","ONTBREEKT : 34(2) ; 36(2) ; 37(4) ; 38(1)"],["920"," "," ","a","periodical"]],"_status":"","_setSpec":[],"_about":[],"_identifier":"oai:search.ugent.be:ser01:000199843","_id":"000199843","_datestamp":"1970-01-01T00:00:00Z"} {"_identifier":"oai:search.ugent.be:ser01:000179955","_about":[],"record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000179955"],["005"," "," ","_","20150412125735.0"],["008"," "," ","_","890616nuuuuuuuufr^^^^^^^^^^^^^^^^^^|||^^"],["022"," "," ","a","0395-8507"],["035"," "," ","a","c:lvd:1246961"],["040"," "," ","a","BE-GnUNI"],["082"," "," ","a","799"],["082"," "," ","a","634.9"],["245"," "," ","a","Forêt-loisirs et équipements de plain air."],["260"," "," ","a","Paris :","b","Institut pour le développement forestier,","c","n.d."],["710","2"," ","a","IDF Paris"],["852"," "," ","x","BW","b","LA04","c","A42","j","A42","a","#(1969)13 - (1987)","z","ONTBREEKT: (1970)18; (1971)21; (1973)29-31; (1974)2; (1986)"],["920"," "," ","a","periodical"]],"_status":"","_setSpec":[],"_datestamp":"1970-01-01T00:00:00Z","_id":"000179955"} {"_datestamp":"1970-01-01T00:00:00Z","_id":"000200140","_identifier":"oai:search.ugent.be:ser01:000200140","_about":[],"_status":"","record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000200140"],["005"," "," ","_","20150403140230.0"],["008"," "," ","_","980907nuuuuuuuuxx^^^^^^^^^^^^^^^^^^|||^^"],["022"," "," ","a","0070-4334"],["035"," "," ","a","c:lvd:1231261"],["040"," "," ","a","BE-GnUNI"],["050"," ","4","a","PT1375"],["082"," "," ","a","430"],["082"," "," ","a","830"],["245"," "," ","a","Deutsche Texte des Mittelalters."],["260"," "," ","a","Berlin :","b","Akademie Verlag,","c","n.d."],["852"," "," ","x","UB","b","CA20","c","BIB","j","BIB.P.002256","a","#1(1904) - 76(1991)","z","ONTBREEKT : 20,47"],["920"," "," ","a","periodical"]],"_setSpec":[]} {"_datestamp":"1970-01-01T00:00:00Z","_id":"000180267","_about":[],"_identifier":"oai:search.ugent.be:ser01:000180267","record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000180267"],["005"," "," ","_","20150403140149.0"],["008"," "," ","_","890621nuuuuuuuuxx^^^^^^r^^^^^000^0^ger^d"],["022"," "," ","a","0070-7295"],["035"," "," ","a","c:lvd:1246965"],["035"," "," ","a","c:lvd:725003"],["035"," "," ","a","(ser01)BIB.P.015211"],["040"," "," ","a","BE-GnUNI"],["082"," "," ","a","708"],["210","1"," ","a","Abh. Ber. Staatl. Mus. Völkerkd. Dresd."],["245"," "," ","a","Abhandlungen und Berichte des Staatlichen Museums für Völkerkunde Dresden."],["260"," "," ","a","Berlin :","b","Akademie Verlag,","c","n.d."],["710","2"," ","a","Staatliches Museum für Völkerkunde Dresden"],["852"," "," ","x","UB","b","CA20","c","BIB","j","BIB.P.015211/6","a","#21(1962) - 32(1973) ; 42(1986) - 50(1999)","z","ONTBREEKT : 43 ; 46 ; 48"],["920"," "," ","a","periodical"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","UB","1","CA20","2","BIB","3","BIB.EK.01.123","5","181167-10","8","20000906","a","1962","b","21","c","^","d","^","f","52","F","Consult in BIBR","h","21(1962)","i","20000906","j","20000906","k","20000906"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","UB","1","CA20","2","BIB","3","BIB.EK.01.151","5","181167-20","8","20000906","a","1986","b","^","c","^","d","^","f","52","F","Consult in BIBR","h","42(1986)","i","20000906","j","20000906","k","20000906"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","UB","1","CA20","2","BIB","3","BIB.EK.01.168","5","181167-30","8","20000906","a","1990","b","^","c","^","d","^","f","52","F","Consult in BIBR","h","44(1990)","i","20000906","j","20000906","k","20000906"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","UB","1","CA20","2","BIB","3","BIB.EK.01.169","5","181167-40","8","20000906","a","1990","b","^","c","^","d","^","f","52","F","Consult in BIBR","h","45(1990)","i","20000906","j","20000906","k","20000906"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","UB","1","CA20","2","BIB","3","BIB.EK.01.175","5","181167-50","8","20000906","a","1992","b","^","c","^","d","^","f","52","F","Consult in BIBR","h","47(1992)","i","20000906","j","20000906","k","20000906"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","UB","1","CA20","2","BIB","3","BIB.EK.01.205","5","181167-60","8","20000906","a","1996","b","^","c","^","d","^","f","52","F","Consult in BIBR","h","49(1996)","i","20000906","j","20000906","k","20000906"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","UB","1","CA20","2","BIB","3","BIB.EK.01.253","5","181167-70","8","20000906","a","1999","b","^","c","^","d","^","f","52","F","Consult in BIBR","h","50(1999)","i","20000906","j","20000906","k","20000906"]],"_setSpec":[],"_status":""} {"_datestamp":"1970-01-01T00:00:00Z","_id":"000200399","_about":[],"_identifier":"oai:search.ugent.be:ser01:000200399","_status":"","record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000200399"],["005"," "," ","_","20150403140231.0"],["008"," "," ","_","900302nuuuuuuuuxx^^^^^^r^^^^^000^0^dut^d"],["035"," "," ","a","c:lvd:1244019"],["035"," "," ","a","(ser01)BIB.P.009067"],["040"," "," ","a","BE-GnUNI"],["245"," ","4","a","... Gezamenlijke bijeenkomst van de leden van de Raadgevende vergadering van de Raad van Europa en van de leden van het Europese parlement :","b","woordelijk verslag van de beraadslagingen."],["260"," "," ","a","Straatsburg :","b","Raad van Europa,","c","n.d."],["580"," "," ","a","Voortgezet als: ... Gezamenlijke bijeenkomst van de leden van de Parlementaire vergadering van de Raad van Europa en van de leden van het Europese parlement: woordelijk verslag van de beraadslagingen"],["710","1"," ","a","Europees parlement"],["710","2"," ","a","Raad van Europa"],["852"," "," ","x","UB","b","CA20","c","BIB","j","BIB.P.009067/5","a","#10(1963) - 21(1975)","z","ONTBREEKT : 19"],["920"," "," ","a","periodical"]],"_setSpec":[]} {"_about":[],"_identifier":"oai:search.ugent.be:ser01:000180638","record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000180638"],["005"," "," ","_","20150403140150.0"],["008"," "," ","_","970601nuuuuuuuuxx^b^^^^^^^^^^^^^^^^dut^^"],["022"," "," ","a","0778-0303"],["035"," "," ","a","c:lvd:1075124"],["040"," "," ","a","BE-GnUNI"],["082"," "," ","a","621.38"],["245"," "," ","a","AV-industrie."],["246","2"," ","a","AV-i"],["246","2"," ","a","Avi : vakblad voor de audiovisuele sector"],["260"," "," ","a","Gent :","b","MediaClip,","c","n.d."],["561"," "," ","a","Herkomst L52.DDK.VT.174 : Documentatiecentrum voor Dramatische Kunst"],["852"," "," ","x","UB","b","CA20","c","DEPC","j","DEPC.L52.TS (L52.DDK.VT.174)","a","#12(2000)69 ; 13(2001)72,74 ; 13(2001)77 ; 14(2002)80 ; 15(2003)84,89"],["920"," "," ","a","periodical"]],"_status":"","_setSpec":[],"_datestamp":"1970-01-01T00:00:00Z","_id":"000180638"} {"_setSpec":[],"record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000180784"],["005"," "," ","_","20150403140151.0"],["008"," "," ","_","890629nuuuuuuuuxx^^^^^^^^^^^^^^^^^^|||^^"],["022"," "," ","a","0306-7580"],["035"," "," ","a","c:lvd:1204342"],["040"," "," ","a","BE-GnUNI"],["245"," "," ","a","Small animal abstracts."],["260"," "," ","a","Wallingford :","b","CAB international,","c","n.d."],["852"," "," ","x","UB","b","CA20","c","BIB","j","BIB.P.011792","a","#7(1981) - 8(1982)"],["920"," "," ","a","periodical"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","UB","1","CA20","2","BIB","3","BIB.P.011792","6","[B]","5","000000924663","8","20130422","a","1982","b","^","c","^","d","^","f","52","F","Consult in BIBR","h","(1981-1982)","i","20120612","j","20120612","k","20120612"]],"_status":"","_identifier":"oai:search.ugent.be:ser01:000180784","_about":[],"_id":"000180784","_datestamp":"1970-01-01T00:00:00Z"} {"_about":[],"_identifier":"oai:search.ugent.be:ser01:000200660","_status":"","record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000200660"],["005"," "," ","_","20150403140231.0"],["008"," "," ","_","980907nuuuuuuuuxx^ar^^^r^^^^^0^^^^0dut^^"],["022"," "," ","a","1384-0398"],["035"," "," ","a","c:lvd:908978"],["040"," "," ","a","BE-GnUNI"],["210","1"," ","a","Text.hist. bijdr."],["245"," "," ","a","Textielhistorische bijdragen."],["260"," "," ","a","Enschede :","b","Stichting textielgeschiedenis,","c","n.d."],["500"," "," ","a","Textielhistorische bijdragen is een vervolg op de jaarverslagen van de Stichting textielgeschiedenis over de jaren 1954-1985. Nummer 1(1960) is tevens jaarverslag over 1959."],["710","2"," ","a","Stichting Textielgeschiedenis"],["852"," "," ","x","UB","b","CA20","c","BIB","j","BIB.P.014753","a","#(1957) - (1958) ; 1(1960) - 12(1971)"],["852"," "," ","x","UB","b","CA20","c","DEPC","j","DEPC.L06.TS","a","#34(1994) - 43(2003)","z","ONTBREEKT : 42(2002)"],["920"," "," ","a","periodical"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","UB","1","CA20","2","BIB","3","DEPC.L06.TS","5","000010962401","8","20160215","a","1994","b","34","c","^","d","^","f","52","F","Consult in BIBR","p","NA","P","Not arrived","h","v.34(1994)","i","20140513","j","20140513","k","20160215"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","UB","1","CA20","2","BIB","3","DEPC.L06.TS","5","000010888427","8","20150302","a","1996","b","36","c","^","d","^","f","52","F","Consult in BIBR","p","NA","P","Not arrived","h","v.36(1996)","i","20140513","j","20140513"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","UB","1","CA20","2","DEPC","3","DEPC.L06.TS","5","000010900449","8","20160121","a","1997","b","37","c","^","d","^","f","52","F","Consult in BIBR","h","v.37(1997)","i","20140513","j","20140513","k","20160121"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","UB","1","CA20","2","BIB","3","DEPC.L06.TS","5","000001003498","8","20140513","a","2001","b","41","c","^","d","^","f","52","F","Consult in BIBR","h","v.41(2001)","i","20140513","j","20140513","k","20140513"]],"_setSpec":[],"_datestamp":"1970-01-01T00:00:00Z","_id":"000200660"} {"_identifier":"oai:search.ugent.be:ser01:000180904","_about":[],"record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000180904"],["005"," "," ","_","20150403140151.0"],["008"," "," ","_","980701nuuuuuuuuxx^^^^^^^^^^^^^^^^^^ita^^"],["035"," "," ","a","c:lvd:1287057"],["040"," "," ","a","BE-GnUNI"],["245"," "," ","a","Diritto del commercio internazionale. Giurisprudenza commerciale."],["260"," "," ","a","Milano :","b","Giuffrè,","c","n.d."],["852"," "," ","x","RE","b","RE55","c","RBIB","j","RBIB.IPR 140 RVG 007","a","#2(1988)2, 25(2011)3"],["920"," "," ","a","periodical"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","RE","1","RE55","2","RBIB","3","RBIB.IPR 140 INT 007","5","000000791072","8","20100521","b","^","c","^","d","^","f","22","F","LOAN/open shelves","h","2(1988)2","i","20100521","j","20100521","k","20141125"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","RE","1","RE55","2","RBIB","3","RBIB.IPR 140 INT 007","5","000001045064","8","20150904","b","^","c","^","d","^","f","22","F","LOAN/open shelves","h","25(2011)3","i","20100521","j","20100521","k","20150930"]],"_setSpec":[],"_status":"","_datestamp":"1970-01-01T00:00:00Z","_id":"000180904"} {"_datestamp":"1970-01-01T00:00:00Z","_id":"000180972","_identifier":"oai:search.ugent.be:ser01:000180972","_about":[],"_status":"","record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000180972"],["005"," "," ","_","20150403140151.0"],["008"," "," ","_","890630nuuuuuuuuxx^^^^^^^^^^^^^^^^^^|||^^"],["022"," "," ","a","0721-099X"],["035"," "," ","a","c:lvd:1221359"],["040"," "," ","a","BE-GnUNI"],["245"," "," ","a","Mitteilungsblatt der Bundesanstalt für Fleischforschung Kulmbach."],["260"," "," ","a","Kulmbach :","b","Bundesanstalt für Fleischforschung,","c","n.d."],["710","2"," ","a","Bundesanstalt für Fleischforschung Kulmbach"],["852"," "," ","x","BW","b","LA55","c","ALLW","j","ALLW.A31","a","#16(1967) - 122(1993)","z","IN VERHUIS"],["920"," "," ","a","periodical"]],"_setSpec":[]} {"_about":[],"_identifier":"oai:search.ugent.be:ser01:000294227","_setSpec":[],"record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000294227"],["005"," "," ","_","20150403140537.0"],["008"," "," ","_","980907nuuuuuuuuxx^^^^^^^^^^^^^^^^^^spa^^"],["022"," "," ","a","0120-1468"],["035"," "," ","a","c:lvd:6924275"],["040"," "," ","a","BE-GnUNI"],["050"," ","4","a","BR7"],["082"," "," ","a","255.3"],["245"," "," ","a","Franciscanum :","b","revista de las ciencias del espíritu."],["260"," "," ","a","Santafé de Bogota :","b","Universidad de San Buenaventura,","c","n.d."],["610","2"," ","a","Catholic Church","z","Latin America","v","Periodicals."],["650"," "," ","a","Philosophy","v","Periodicals."],["650"," "," ","a","Theology","v","Periodicals."],["710","2"," ","a","Universidad de San Buenaventura Bogota"],["852"," "," ","x","UB","b","CA20","c","BIB","j","BIB.P.018480","a","#31(1989)93"],["852"," "," ","x","UB","b","CA20","c","DEPC","j","DEPC.L27.TS","a","#9(1967) - 50(2008) ; 51(2009)special issue ; 53(2011)155-156","z","ONTBREEKT : 14(1972)40 ; 24(1982)74 ; 29(1987) ; 31(1989)91,93 ; 47(2004)139 ; 48(2005)141-142"],["920"," "," ","a","periodical"]],"_status":"","_datestamp":"1970-01-01T00:00:00Z","_id":"000294227"} {"_status":"","record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000204095"],["005"," "," ","_","20150412115049.0"],["008"," "," ","_","900412nuuuuuuuube^^^^^^^^^^^^^^^^^^|||^^"],["035"," "," ","a","c:lvd:1224012"],["040"," "," ","a","BE-GnUNI"],["080"," "," ","a","05 <435.9>"],["245"," "," ","a","Europe."],["260"," "," ","a","Bruxelles :","b","Agence internationale d'information pour la presse,","c","n.d."],["710","2"," ","a","Agence internationale d'information pour la presse"],["852"," "," ","x","RE","b","RE55","c","R17","j","R17","a","(1987) -"],["920"," "," ","a","periodical"]],"_setSpec":[],"_identifier":"oai:search.ugent.be:ser01:000204095","_about":[],"_id":"000204095","_datestamp":"1970-01-01T00:00:00Z"} {"_id":"000181120","_datestamp":"1970-01-01T00:00:00Z","_setSpec":[],"record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000181120"],["005"," "," ","_","20150412132127.0"],["008"," "," ","_","890704nuuuuuuuufr^^^^^^^^^^^^^^^^^^|||^^"],["035"," "," ","a","c:lvd:418694"],["040"," "," ","a","BE-GnUNI"],["245"," "," ","a","Annuaire philosophique."],["260"," "," ","a","Paris :","b","Seuil,","c","n.d."],["490"," "," ","a","L'ordre philosophique"],["852"," "," ","x","UB","b","CA20","c","BIB","j","BIB.PHIL.001077","a","#1(1864) - 7(1870)4"],["920"," "," ","a","periodical"]],"_status":"","_identifier":"oai:search.ugent.be:ser01:000181120","_about":[]} {"_id":"000204646","_datestamp":"1970-01-01T00:00:00Z","_setSpec":[],"record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000204646"],["005"," "," ","_","20150403140236.0"],["008"," "," ","_","900423nuuuuuuuuxx^m^^^^^^^^^^^^^^^^|||^^"],["022"," "," ","a","1049-0833"],["035"," "," ","a","c:lvd:737842"],["035"," "," ","a","(ser01)BIB.P.016771"],["040"," "," ","a","BE-GnUNI"],["245"," "," ","a","CD-ROM professional :","b","the magazine of optical information media."],["260"," "," ","a","Weston (Conn.) :","b","Pemberton,","c","n.d."],["525"," "," ","a","Bimonthly supplement"],["580"," "," ","a","Voortgezet als: EMedia professional"],["580"," "," ","a","Voortzetting van: The laserdisk professional: the magazine of optical information media"],["650"," ","4","a","Information Technology"],["650"," ","4","a","Computer Science (Hardware & Networks)","x","Information Technology"],["650"," ","4","a","Data Storage and Data Mining","x","Information Technology"],["650"," ","4","a","General and Others","x","Information Technology"],["650"," ","4","a","Internet"],["852"," "," ","x","UB","b","CA20","c","BIB","j","BIB.P.016771","a","#6(1993) - 9(1996)"],["920"," "," ","a","periodical"]],"_status":"","_about":[],"_identifier":"oai:search.ugent.be:ser01:000204646"} {"record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000181378"],["005"," "," ","_","20150403140154.0"],["008"," "," ","_","890707nuuuuuuuuxx^^^^^^^^^^^^^^^^^^|||^^"],["035"," "," ","a","c:lvd:1213402"],["040"," "," ","a","BE-GnUNI"],["245"," "," ","a","Fish farming international."],["260"," "," ","a","London :","b","AGB,","c","n.d."],["852"," "," ","x","BW","b","LA55","c","ALLW","j","ALLW.H01","a","#1(1973) - 10(1983)"],["920"," "," ","a","periodical"]],"_status":"","_setSpec":[],"_about":[],"_identifier":"oai:search.ugent.be:ser01:000181378","_id":"000181378","_datestamp":"1970-01-01T00:00:00Z"} {"_datestamp":"1970-01-01T00:00:00Z","_id":"000127106","_identifier":"oai:search.ugent.be:ser01:000127106","_about":[],"_setSpec":[],"record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000127106"],["005"," "," ","_","20150403135915.0"],["008"," "," ","_","870921nuuuuuuuuxx^^^^^^^^^^^^^^^^^^|||^^"],["022"," "," ","a","0930-6447"],["035"," "," ","a","c:lvd:6922957"],["035"," "," ","a","(ser01)BIB.P.011885"],["040"," "," ","a","BE-GnUNI"],["245"," "," ","a","Tierärztliche Praxis. Supplement."],["260"," "," ","a","Stuttgart :","b","Schattauer,","c","n.d."],["650"," ","4","a","VETERINARY MEDICINE, periodicals"],["852"," "," ","x","DI","b","DI51","c","DIBIB","j","DIBIB.CDALG011","a","1(1985) -","d","BIB.P.011885/S","9","openkast"],["920"," "," ","a","periodical"]],"_status":""} {"_status":"","record":[["LDR"," "," ","_","00000nas a22 a 4500"],["001"," "," ","_","000181567"],["005"," "," ","_","20150403140154.0"],["008"," "," ","_","890712nuuuuuuuuxx^m^^^^^^^^^^^^^^^^eng^^"],["022"," "," ","a","0456-5339"],["035"," "," ","a","c:lvd:533163"],["040"," "," ","a","BE-GnUNI"],["050"," ","4","a","HC461"],["082"," "," ","a","338.91"],["245"," "," ","a","Look Japan."],["260"," "," ","a","Tokyo :","b","Look Japan,","c","n.d."],["852"," "," ","x","UB","b","CA20","c","BIB","j","BIB.P.016652","a","#37(1992)431 - 49(2004)577"],["852"," "," ","x","EB","b","EB55","c","EBIB","j","EBIB.TIJDSCHRIFTEN","a","#39(1994)455 - 39(1994)456"],["852"," "," ","x","LW","b","LW21","c","L94A","j","L94A","a","(1997) -"],["920"," "," ","a","periodical"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","UB","1","CA20","2","BIB","3","BIB.P.016652","6","[B]","5","000000912115","8","20130417","a","1992-1995","b","^","c","^","d","^","f","52","F","Consult in BIBR","h","(1992-1995)","i","20120706","j","20120706","k","20120706"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","UB","1","CA20","2","BIB","3","BIB.P.016652","6","[B]","5","000000912118","8","20130417","a","1996-1999","b","^","c","^","d","^","f","52","F","Consult in BIBR","h","(1996-1999)","i","20120706","j","20120706","k","20120706"],["Z30","-","2","l","RUG01","L","RUG01","m","ISSUE","x","UB","1","CA20","2","BIB","3","BIB.P.016652","6","[B]","5","000000912117","8","20130417","a","2000-2004","b","45-50","c","^","d","^","f","52","F","Consult in BIBR","h","v.45-50(2000-2004)","i","20120706","j","20120706","k","20120706"]],"_setSpec":[],"_identifier":"oai:search.ugent.be:ser01:000181567","_about":[],"_id":"000181567","_datestamp":"1970-01-01T00:00:00Z"} Catmandu-Breaker.t100644000765000024 26313444134453 20527 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/t#!perl -T use strict; use warnings; use Test::More; use Test::Exception; use Catmandu; BEGIN { use_ok 'Catmandu::Breaker'; } require_ok 'Catmandu::Breaker'; done_testing; author-pod-syntax.t100644000765000024 45413444134453 21032 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/t#!perl BEGIN { unless ($ENV{AUTHOR_TESTING}) { print qq{1..0 # SKIP these tests are for testing by the author\n}; exit } } # This file was automatically generated by Dist::Zilla::Plugin::PodSyntaxTests. use strict; use warnings; use Test::More; use Test::Pod 1.41; all_pod_files_ok(); Catmandu000755000765000024 013444134453 17153 5ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/libBreaker.pm100644000765000024 2346213444134453 21253 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/lib/Catmandupackage Catmandu::Breaker; our $VERSION = '0.141'; use Moo; use Carp; use Catmandu; use Catmandu::Util; use Catmandu; use Data::Dumper; has verbose => ( is => 'ro', default => sub {0} ); has maxscan => ( is => 'ro', default => sub {-1} ); has tags => ( is => 'ro' ); has _counter => ( is => 'ro', default => sub {0} ); sub counter { my ($self) = @_; $self->{_counter} = $self->{_counter} + 1; $self->{_counter}; } sub to_breaker { my ( $self, $identifier, $tag, $value ) = @_; $value //= ''; croak "usage: to_breaker(idenifier,tag,value)" unless defined($identifier) && defined($tag) && defined($value); $value =~ s{\n}{\\n}mg; sprintf "%s\t%s\t%s\n", $identifier, $tag, $value; } sub from_breaker { my ( $self, $line ) = @_; my ( $id, $tag, $value ) = split( /\s+/, $line, 3 ); croak "error line not in breaker format : $line" unless defined($id) && defined($tag) && defined($value); return +{ identifier => $id, tag => $tag, value => $value }; } sub parse { my ( $self, $file, $format ) = @_; my $tags = $self->tags // $self->scan_tags($file); $format = $format // 'Table'; my $importer = Catmandu->importer( 'Text', file => $file ); my $exporter = Catmandu->exporter( 'Stat', fields => $tags, as => $format ); my $rec = {}; my $prev_id = undef; my $it = $importer; if ( $self->verbose ) { $it = $importer->benchmark(); } $it->each( sub { my $line = $_[0]->{text}; my $brk = $self->from_breaker($line); my $id = $brk->{identifier}; my $tag = $brk->{tag}; my $value = $brk->{value}; if ( defined($prev_id) && $prev_id ne $id ) { $exporter->add($rec); $rec = {}; } $rec->{_id} = $id; if ( exists $rec->{$tag} ) { my $prev = ref( $rec->{$tag} ) eq 'ARRAY' ? $rec->{$tag} : [ $rec->{$tag} ]; $rec->{$tag} = [ @$prev, $value ]; } else { $rec->{$tag} = $value; } $prev_id = $id; } ); $exporter->add($rec); $exporter->commit; } sub scan_tags { my ( $self, $file ) = @_; my $tags = {}; my $io = Catmandu::Util::io($file); print STDERR "Scanning:\n" if $self->verbose; my $n = 0; while ( my $line = $io->getline ) { $n++; chop($line); print STDERR "..$n\n" if ( $self->verbose && $n % 1000 == 0 ); my $brk = $self->from_breaker($line); my $tag = $brk->{tag}; $tags->{$tag} = 1; last if ( $self->maxscan > 0 && $n > $self->maxscan ); } $io->close; return join( ",", sort keys %$tags ); } 1; __END__ =pod =head1 NAME Catmandu::Breaker - Package that exports data in a Breaker format =head1 SYNOPSIS # From the command line # Using the default breaker $ catmandu convert JSON to Breaker < data.json # Break a OAI-PMH harvest $ catmandu convert OAI --url http://biblio.ugent.be/oai to Breaker # Using a MARC breaker $ catmandu convert MARC to Breaker --handler marc < data.mrc # Using an XML breaker plus create a list of unique record fields $ catmandu convert XML --path book to Breaker --handler xml --fields data.fields < t/book.xml > data.breaker # Find the usage statistics of fields in the XML file above $ catmandu breaker data.breaker # Use the list of unique fields in the report $ catmandu breaker --fields data.fields data.breaker # verbose output $ catmandu breaker -v data.breaker # The breaker commands needs to know the unique fields in the dataset to build statistics. # By default it will scan the whole file for fields. This can be a very # time consuming process. With --maxscan one can limit the number of lines # in the breaker file that can be scanned for unique fields $ catmandu breaker -v --maxscan 1000000 data.breaker # Alternatively the fields option can be used to specify the unique fields $ catmandu breaker -v --fields 245a,022a data.breaker $ cat data.breaker | cut -f 2 | sort -u > data.fields $ catmandu breaker -v --fields data.fields data.breaker # Export statistics as CSV. See L for supported formats. $ catmandu breaker --as CSV data.breaker =head1 DESCRIPTION Inspired by the article "Metadata Analysis at the Command-Line" by Mark Phillips in L this exporter breaks metadata records into the Breaker format which can be analyzed further by command line tools. =head1 BREAKER FORMAT When breaking a input using 'catmandu convert {format} to Breaker' each metadata fields gets transformed into a 'breaker' format: ... For the default JSON breaker the input format is broken down into JSON-like Paths. E.g. when give this YAML input: --- name: John colors: - black - yellow - red institution: name: Acme years: - 1949 - 1950 - 1951 - 1952 the breaker command 'catmandu convert YAML to Breaker < file.yml' will generate: 1 colors[] black 1 colors[] yellow 1 colors[] red 1 institution.name Acme 1 institution.years[] 1949 1 institution.years[] 1950 1 institution.years[] 1951 1 institution.years[] 1952 1 name John The first column is a counter for each record (or the content of the _id field when present). The second column provides a JSON path to the data (with the array-paths translated to []). The third column is the field value. One can use this output in combination with Unix tools like C, C, C, etc to inspect the breaker output: $ catmandu convert YAML to Breaker < file.yml | grep 'institution.years' Some input formats, like MARC, the JSON-path format doesn't provide much information which fields are present in the MARC because field names are part of the data. It is then possible to use a special C to create a more verbose breaker output. For instance, without a special handler: $ catmandu convert MARC to Breaker < t/camel.usmarc fol05731351 record[][] LDR fol05731351 record[][] _ fol05731351 record[][] 00755cam 22002414a 4500 fol05731351 record[][] 001 fol05731351 record[][] _ fol05731351 record[][] fol05731351 fol05731351 record[][] 082 fol05731351 record[][] 0 fol05731351 record[][] 0 fol05731351 record[][] a With the special L: $ catmandu convert MARC to Breaker --handler marc < t/camel.usmarc fol05731351 LDR 00755cam 22002414a 4500 fol05731351 001 fol05731351 fol05731351 003 IMchF fol05731351 005 20000613133448.0 fol05731351 008 000107s2000 nyua 001 0 eng fol05731351 010a 00020737 fol05731351 020a 0471383147 (paper/cd-rom : alk. paper) fol05731351 040a DLC fol05731351 040c DLC fol05731351 040d DLC For the L tools a L is available. For the L tools a L is available. For the L tools an L is available: $ catmandu convert XML --path book to Breaker --handler xml < t/book.xml =head1 BREAKER STATISTICS Statistical information can be calculated from a breaker output using the 'catmandu breaker' command: $ catmandu convert MARC to Breaker --handler marc < t/camel.usmarc > data.breaker $ catmandu breaker data.breaker | name | count | zeros | zeros% | min | max | mean | median | mode | variance | stdev | uniq%| entropy | |------|-------|-------|--------|-----|-----|------|--------|--------|----------|-------|------|---------| | 001 | 10 | 0 | 0.0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 100 | 3.3/3.3 | | 003 | 10 | 0 | 0.0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 10 | 0.0/3.3 | | 005 | 10 | 0 | 0.0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 100 | 3.3/3.3 | | 008 | 10 | 0 | 0.0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 100 | 3.3/3.3 | | 010a | 10 | 0 | 0.0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 100 | 3.3/3.3 | | 020a | 9 | 1 | 10.0 | 0 | 1 | 0.9 | 1 | 1 | 0.09 | 0.3 | 90 | 3.3/3.3 | | 040a | 10 | 0 | 0.0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 10 | 0.0/3.3 | | 040c | 10 | 0 | 0.0 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 10 | 0.0/3.3 | | 040d | 5 | 5 | 50.0 | 0 | 1 | 0.5 | 0.5 | [0, 1] | 0.25 | 0.5 | 10 | 1.0/3.3 | The output table provides statistical information on the usage of fields in the original format. We see that the C<001> field was counted 10 times in the data set, but the C<040d> value is only present 5 times. The C<020a> is empty in 10% (zeros%) of the records. The C<001> has very unique values (entropy is maximum), but all C<040c> fields contain the same information (entropy is minimum). See L for more information about the statistical fields and supported output formats. =head1 MODULES =over =item * L =item * L =back =head1 SEE ALSO L, L, L, L =head1 AUTHOR Patrick Hochstenbach, C<< >> =head1 CONTRIBUTORS Jakob Voss, C<< nichtich at cpan.org >> Johann Rolschewski, C<< jorol at cpan.org >> =cut Catmandu-Cmd-breaker.t100644000765000024 27513444134453 21273 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/t#!perl -T use strict; use warnings; use Test::More; use Test::Exception; use Catmandu; BEGIN { use_ok 'Catmandu::Cmd::breaker'; } require_ok 'Catmandu::Cmd::breaker'; done_testing; Cmd000755000765000024 013444134453 17656 5ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/lib/Catmandubreaker.pm100644000765000024 440213444134453 21767 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/lib/Catmandu/Cmdpackage Catmandu::Cmd::breaker; use Catmandu::Sane; our $VERSION = '0.141'; use parent 'Catmandu::Cmd'; use Catmandu; use Catmandu::Breaker; use Path::Tiny; use namespace::clean; sub command_opt_spec { ( [ "verbose|v", "verbose output" ], [ "maxscan=i", "maximum number of lines to scan for uniq fields (default -1 = unlimited)" ], [ "fields=s", "a file or comma delimited string of unique fields to use" ], [ "as=s", "set ouput format (default Table)" ], ); } sub command { my ( $self, $opts, $args ) = @_; unless ( @$args == 1 ) { say STDERR "usage: $0 breaker file\n"; exit 1; } my $file = $args->[0]; my $maxscan = $opts->maxscan // -1; my $as = $opts->as // 'Table'; my $tags; if ( $opts->fields ) { if ( -r $opts->fields ) { $tags = join ",", path( $opts->fields )->lines_utf8( { chomp => 1 } ); } else { $tags = $opts->fields; } } my $breaker = Catmandu::Breaker->new( verbose => $opts->verbose, maxscan => $maxscan, tags => $tags, ); $breaker->parse($file, $as); } 1; __END__ =pod =head1 NAME Catmandu::Cmd::breaker - Parse Catmandu::Breaker exports =head1 EXAMPLES catmandu breaker [] $ catmandu convert XML --path book to Breaker --handler xml < t/book.xml > data.breaker $ catmandu breaker data.breaker # verbose output $ catmandu breaker -v data.breaker # The breaker command needs to know the unique fields in the dataset to build statistics # By default it will scan the whole file for fields. This can be a very # time consuming process. With --maxscan one can limit the number of lines # in the breaker file that can be scanned for unique fields $ catmandu breaker -v --maxscan 1000000 data.breaker # Alternatively the fields option can be used to specify the unique fields $ catmandu breaker -v --fields 245a,022a data.breaker $ cat data.breaker | cut -f 2 | sort -u > fields.txt $ catmandu breaker -v --fields fields.txt data.breaker # Export statistics as CSV. See L for supported formats. $ catmandu breaker --as CSV data.breaker =cut Catmandu-Exporter-Breaker.t100644000765000024 305213444134453 22354 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/t#!perl -T use strict; use warnings; use Test::More; use Test::Exception; use Catmandu; BEGIN { use_ok 'Catmandu::Exporter::Breaker'; } require_ok 'Catmandu::Exporter::Breaker'; { my $file = ""; my $importer = Catmandu->importer( 'JSON', file => 't/oai_dc.json' ); my $exporter = Catmandu::Exporter::Breaker->new( file => \$file ); $exporter->add_many($importer); $exporter->commit; is $exporter->count, 20, 'Breaking OAI-DC ok'; } { my $file = ""; my $importer = Catmandu->importer( 'JSON', file => 't/marcxml.json' ); my $exporter = Catmandu::Exporter::Breaker->new( file => \$file, handler => 'marc' ); $exporter->add_many($importer); $exporter->commit; is $exporter->count, 20, 'Breaking MARCXML ok'; } { my $file = ""; my $importer = Catmandu->importer( 'JSON', file => 't/pica.json' ); my $exporter = Catmandu::Exporter::Breaker->new( file => \$file, handler => 'pica' ); $exporter->add_many($importer); $exporter->commit; is $exporter->count, 5, 'Breaking PICA ok'; like $file, qr/^658700774\t001\@0\t703/, 'PICA breaker format ok'; } { my $file = ""; my $importer = Catmandu->importer( 'JSON', file => 't/mab.json' ); my $exporter = Catmandu::Exporter::Breaker->new( file => \$file, handler => 'mab' ); $exporter->add_many($importer); $exporter->commit; is $exporter->count, 5, 'Breaking PICA ok'; like $file, qr/^5-x\tLDR\t00892nM2.01200024 h/, 'PICA breaker format ok'; } done_testing; Exporter000755000765000024 013444134453 20763 5ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/lib/CatmanduBreaker.pm100644000765000024 501113444134453 23031 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/lib/Catmandu/Exporterpackage Catmandu::Exporter::Breaker; use Catmandu::Sane; use Catmandu::Util qw(:is); use Moo; use Carp; use Path::Tiny; use namespace::clean; our $VERSION = '0.141'; with 'Catmandu::Exporter'; has fields => (is => 'ro'); has handler => (is => 'rw', default => sub {'json'} , coerce => \&_coerce_handler ); sub _coerce_handler { my ($handler) = @_; return $handler if is_invocant($handler) or is_code_ref($handler); if (is_string($handler) && !is_number($handler)) { my $class = $handler =~ /^\+(.+)/ ? $1 : "Catmandu::Exporter::Breaker::Parser::$handler"; my $handler; eval { $handler = Catmandu::Util::require_package($class)->new; }; if ($@) { croak $@; } else { return $handler; } } else { die "Need a Breaker::Parser" } } sub add { my ($self, $data) = @_; $self->handler->add($data,$self->fh,$self); } sub commit { my ($self) = @_; if ($self->fields) { my $tags = $self->handler->tags // {}; my @tags = map { "$_\n" } sort keys %$tags; path($self->fields)->spew_utf8(@tags); } } 1; __END__ =pod =head1 NAME Catmandu::Exporter::Breaker - Package that exports OAI-PMH DC in a Breaker format =head1 SYNOPSIS # Using the default breaker $ catmandu convert JSON to Breaker < data.json # Using a OAI_DC breaker $ catmandu convert OAI --url http://biblio.ugent.be/oai to Breaker # Using a MARCXML breaker $ catmandu convert MARC to Breaker --handler marc # Using an XML breaker $ catmandu convert XML --path book to Breaker --handler xml < t/book.xml > data.breaker # Write a fields file containing all unique fields $ catmandu convert XML --path book to Breaker --handler xml --fields data.fields < t/book.xml > data.breaker # Find the usage statistics of fields in the XML file above $ catmandu breaker data.breaker # Convert the Breaker format by line into JSON $ catmandu convert Breaker < data.breaker # Convert the Breaker format by line into JSON using the fields file $ catmandu convert Breaker --fields data.fields < data.breaker =head1 DESCRIPTION Inspired by the article "Metadata Analysis at the Command-Line" by Mark Phillips in L this exporter breaks a metadata records into the Breaker format which can be analyzed further by command line tools. =head1 BREAKER FORMAT =head1 SEE ALSO L =cut Catmandu-Exporter-Breaker-Parser-mab.t100644000765000024 34113444134453 24321 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/t#!perl -T use strict; use warnings; use Test::More; use Test::Exception; use Catmandu; BEGIN { use_ok 'Catmandu::Exporter::Breaker::Parser::mab'; } require_ok 'Catmandu::Exporter::Breaker::Parser::mab'; done_testing; Catmandu-Exporter-Breaker-Parser-xml.t100644000765000024 34113444134453 24362 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/t#!perl -T use strict; use warnings; use Test::More; use Test::Exception; use Catmandu; BEGIN { use_ok 'Catmandu::Exporter::Breaker::Parser::xml'; } require_ok 'Catmandu::Exporter::Breaker::Parser::xml'; done_testing; Catmandu-Exporter-Breaker-Parser-json.t100644000765000024 34313444134453 24535 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/t#!perl -T use strict; use warnings; use Test::More; use Test::Exception; use Catmandu; BEGIN { use_ok 'Catmandu::Exporter::Breaker::Parser::json'; } require_ok 'Catmandu::Exporter::Breaker::Parser::json'; done_testing; Catmandu-Exporter-Breaker-Parser-marc.t100644000765000024 34313444134453 24506 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/t#!perl -T use strict; use warnings; use Test::More; use Test::Exception; use Catmandu; BEGIN { use_ok 'Catmandu::Exporter::Breaker::Parser::marc'; } require_ok 'Catmandu::Exporter::Breaker::Parser::marc'; done_testing; Catmandu-Exporter-Breaker-Parser-pica.t100644000765000024 34313444134453 24500 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/t#!perl -T use strict; use warnings; use Test::More; use Test::Exception; use Catmandu; BEGIN { use_ok 'Catmandu::Exporter::Breaker::Parser::pica'; } require_ok 'Catmandu::Exporter::Breaker::Parser::pica'; done_testing; Parser000755000765000024 013444134453 23572 5ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/lib/Catmandu/Exporter/Breakermab.pm100644000765000024 246313444134453 25034 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/lib/Catmandu/Exporter/Breaker/Parserpackage Catmandu::Exporter::Breaker::Parser::mab; use Catmandu::Sane; use Moo; use Catmandu::Breaker; use namespace::clean; our $VERSION = '0.141'; has tags => (is => 'ro' , default => sub { +{} }); has breaker => (is => 'lazy'); sub _build_breaker { Catmandu::Breaker->new; } sub add { my ($self, $data, $io) = @_; my $identifier = $data->{_id} // $self->breaker->counter; my $record = $data->{record}; for my $field (@$record) { my ($tag,$ind,@data) = @$field; $self->tags->{$tag} = 1; for (my $i = 0 ; $i < @data ; $i += 2) { if ($i == 0 && $data[$i] eq '_') { $io->print( $self->breaker->to_breaker( $identifier , $tag , $data[$i+1]) ); } else { $io->print( $self->breaker->to_breaker( $identifier , $tag . $data[$i] , $data[$i+1]) ); } } } 1; } 1; __END__ =head1 NAME Catmandu::Exporter::Breaker::Parser::mab - handler for MAB2 format =head1 DESCRIPTION This L handler breaks MAB2 format. =head1 SEE ALSO L =cut xml.pm100644000765000024 304213444134453 25067 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/lib/Catmandu/Exporter/Breaker/Parserpackage Catmandu::Exporter::Breaker::Parser::xml; use Catmandu::Sane; use Moo; use Catmandu::Breaker; use Carp; use namespace::clean; our $VERSION = '0.141'; has tags => (is => 'ro' , default => sub { +{} }); has breaker => (is => 'lazy'); sub _build_breaker { Catmandu::Breaker->new; } sub add { my ($self, $data, $io) = @_; my $identifier = $data->{_id} // $self->breaker->counter; $self->xpath_gen($data,[],sub { my ($tag,$value) = @_; $self->tags->{$tag} = 1; $io->print( $self->breaker->to_breaker( $identifier , $tag , $value) ); }); 1; } sub xpath_gen { my ($self,$data,$path,$callback) = @_; if (ref($data) eq 'HASH') { for my $key (keys %$data) { my $value = $data->{$key}; if (ref($value)) { $self->xpath_gen($value,[@$path,$key],$callback); } else { $callback->(join("/",@$path,$key),$value); } } return; } elsif (ref($data) eq 'ARRAY') { for my $value (@$data) { if (ref($value)) { $self->xpath_gen($value,$path,$callback); } else { $callback->(join("/",@$path),$value); } } } } 1; __END__ =head1 NAME Catmandu::Exporter::Breaker::Parser::xml - handler for XML format =head1 DESCRIPTION This L handler breaks XML format. =head1 SEE ALSO L =cut json.pm100644000765000024 173513444134453 25247 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/lib/Catmandu/Exporter/Breaker/Parserpackage Catmandu::Exporter::Breaker::Parser::json; use Catmandu::Sane; use Moo; use Catmandu::Expander; use Catmandu::Breaker; use namespace::clean; our $VERSION = '0.141'; has tags => (is => 'ro' , default => sub { +{} }); has breaker => (is => 'lazy'); sub _build_breaker { Catmandu::Breaker->new; } sub add { my ($self, $data, $io) = @_; my $identifier = $data->{_id} // $self->breaker->counter; my $collapse = Catmandu::Expander->collapse_hash($data); delete $collapse->{_id}; for my $tag (sort keys %$collapse) { my $value = $collapse->{$tag}; $tag =~ s{\.\d+}{[]}g; $self->tags->{$tag} = 1; $io->print( $self->breaker->to_breaker( $identifier , $tag , $value) ); } 1; } 1; __END__ =head1 NAME Catmandu::Exporter::Breaker::Parser::json - default handler =head1 DESCRIPTION This is the default L handler. =cut marc.pm100644000765000024 247413444134453 25221 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/lib/Catmandu/Exporter/Breaker/Parserpackage Catmandu::Exporter::Breaker::Parser::marc; use Catmandu::Sane; use Moo; use Catmandu::Breaker; use namespace::clean; our $VERSION = '0.141'; has tags => (is => 'ro' , default => sub { +{} }); has breaker => (is => 'lazy'); sub _build_breaker { Catmandu::Breaker->new; } sub add { my ($self, $data, $io) = @_; my $identifier = $data->{_id} // $self->breaker->counter; my $record = $data->{record}; for my $field (@$record) { my ($tag,$ind1,$ind2,@data) = @$field; $self->tags->{$tag} = 1; for (my $i = 0 ; $i < @data ; $i += 2) { if ($i == 0 && $data[$i] eq '_') { $io->print( $self->breaker->to_breaker( $identifier , $tag , $data[$i+1]) ); } else { $io->print( $self->breaker->to_breaker( $identifier , $tag . $data[$i] , $data[$i+1]) ); } } } 1; } 1; __END__ =head1 NAME Catmandu::Exporter::Breaker::Parser::marc - handler for MARC format =head1 DESCRIPTION This L handler breaks MARC format. =head1 SEE ALSO L =cut pica.pm100644000765000024 261413444134453 25207 0ustar00hochstenstaff000000000000Catmandu-Breaker-0.141/lib/Catmandu/Exporter/Breaker/Parserpackage Catmandu::Exporter::Breaker::Parser::pica; use Catmandu::Sane; use Moo; use Catmandu::Breaker; use namespace::clean; our $VERSION = '0.141'; has tags => (is => 'ro' , default => sub { +{} }); has breaker => (is => 'lazy'); sub _build_breaker { Catmandu::Breaker->new; } sub add { my ($self, $data, $io) = @_; my $identifier = $data->{_id} // $self->breaker->counter; my $record = $data->{record}; for my $field (@$record) { my ($tag, $occ, @data) = @$field; if (defined $occ && $occ ne '') { $tag = "$tag\[$occ]"; } $self->tags->{$tag} = 1; for (my $i = 0 ; $i < @data ; $i += 2) { $io->print( $self->breaker->to_breaker( $identifier, $tag . $data[$i], $data[$i+1]) ); } } 1; } 1; __END__ =head1 NAME Catmandu::Exporter::Breaker::Parser::pica - handler for PICA+ format =head1 DESCRIPTION This L handler breaks PICA+ format. Each path consists of a PICA tag, optionally followed by the occurrence in brackets, followed by the subfield code. This path format equals the format used by L, and Catmandu Fix methods such as L. C and the occurrence, followed by C<$> and the subfield code. =head1 SEE ALSO L L =cut