You are here

README.txt in Bibliography Module 5

Same filename and directory in other branches
  1. 6.2 README.txt
  2. 6 README.txt
  3. 7.2 README.txt
                           biblio.module

Author:  Ron Jerome (ron.jerome@nrc.ca)
Released under the GPL

NOTE:  THIS FILE IS NOTE UP TO DATE!!  (what do you want for nothing :-(?)
+++++++++++++++++++++++++++++++++++++

Description:
============
This module extends the node data type with additional fields to manage lists 
of scholarly publications.

It closely follows the EndNote model, thus both importing from and exporting 
to Endote are supported. Other formats could be added if there was sufficient 
demand.

Bibliographic information is displayed in lists with links to detailed 
information on each publication.

The lists can be sorted, filtered and ordered in many different ways.




Requirements:
=============
Drupal 5.x.  (There is a separate version for Drupal 4.7.x available).



Installation:
=============
Create a directory called biblio in the modules directory, then place all of the
files packaged with this module in that directory.

This module will auto-install the required database tables the first time you 
enable it on the admin/modules page. (A biblio.mysql file is supplied if you wish
to manualy install the tables.)  This will also setup a number of pre-defined 
publication types.  These types can be changed or deleted on the 
admin/settings/biblio/types page.


Settings:
=========
A number of settings are available at admin/settings/biblio.  They control how 
the author names are displayed, whether export links are added to pages and the
number of entries per page to display.

The admin/settings/biblio/types page allows the the site administrator to set
the default field titles and set which fields are common to all publication 
types.  When a new publication type is added, it will contain all the common 
fields and any that are specifically activated (custom is checked).  This also
allows the admin to over ride any of the default settings for any given type.

Access Control:
===============
There are a number of settings on the admin/user/access page.  I think they are fairly
self evident, they control who can create biblio entries, edit entries and who can
import from file, etc.

Adding/importing records:
=========================
Bibliographic entries can be added to the database in one of two ways, individualy
from the node/add/biblio link, or by importing records from a file.  File formats 
supported are Endnote "Tagged", EndNote 7 XML, EndNote 8,9,10 XML, BibTex and RIS. 
Administrators can go to admin/settings/biblio/import and fill in the form to 
upload and import from any of these file types.


Features:
=========
By default, the /biblio page will list all of the entries in the database sorted
by Year in descending order. If you wish to sort by "Title" or "Type", you may 
do so by clicking on the appropriate links at the top of the page. To reverse 
the sort order, simply click the link a second time.


Filtering Search Results:
=========================
If you wish to filter the results, click on the "Filter" tab at the top of the 
page. To add a filter, click the radio button to the left of the filter type 
you wish to apply, then select the filter criteria from the drop down list 
on the right, then click the filter button.

It is possible to create complex filters by returning to the "Filter" tab and 
adding additional filters. Simply follow the steps outlined above and press 
the "Refine" button.

All filters can be removed by clicking the Clear All Filters link at the top 
of the result page, or on the "Filter" tab they can be removed one at a time 
using the "Undo" button, or you can remove them all using the "Clear All" button

You may also construct URLs which filter. For example, /biblio/year/2005 will 
show all of the entries for 2005. /biblio/year/2005/author/smith will show all 
of entries from 2005 for smith.


Exporting Search Results:
=========================
Assuming this option has been enabled by the administrator, you can export 
search results directly into EndNote. The link at the top of the result page 
will export all of the search results, and the links on individual entries will 
export the information related to that single entry.

Clicking on one of the export links should cause your browser to ask you 
whether you want to Open, or Save To Disk, the file endnote.enw. If you choose 
to open it, Endnote should start and ask you which library you would like 
store the results in. Alternatively, you can save the file to disk and manually 
import it into EndNote.


The information is exported in either EndNote "Tagged" format similar to this...

              %0  Book
              %A  John Smith 
              %D  1959
              %T  The Works of John Smith
              ...
              
Or Endnote 7 XML format which is similar to this...

              <XML>
              	<RECORDS>
              	  <RECORD>
                    <REFERENCE_TYPE>10</REFERENCE_TYPE>
                    <YEAR>1959</YEAR>
              	    <TITLE>The Works of John Smith</TITLE>
              	    <AUTHORS>
                      <AUTHOR>John Smith </AUTHOR>
                    </AUTHORS>
                  </RECORD>
                </RECORDS>
              </XML>
              
              

File

README.txt
View source
  1. biblio.module
  2. Author: Ron Jerome (ron.jerome@nrc.ca)
  3. Released under the GPL
  4. NOTE: THIS FILE IS NOTE UP TO DATE!! (what do you want for nothing :-(?)
  5. +++++++++++++++++++++++++++++++++++++
  6. Description:
  7. ============
  8. This module extends the node data type with additional fields to manage lists
  9. of scholarly publications.
  10. It closely follows the EndNote model, thus both importing from and exporting
  11. to Endote are supported. Other formats could be added if there was sufficient
  12. demand.
  13. Bibliographic information is displayed in lists with links to detailed
  14. information on each publication.
  15. The lists can be sorted, filtered and ordered in many different ways.
  16. Requirements:
  17. =============
  18. Drupal 5.x. (There is a separate version for Drupal 4.7.x available).
  19. Installation:
  20. =============
  21. Create a directory called biblio in the modules directory, then place all of the
  22. files packaged with this module in that directory.
  23. This module will auto-install the required database tables the first time you
  24. enable it on the admin/modules page. (A biblio.mysql file is supplied if you wish
  25. to manualy install the tables.) This will also setup a number of pre-defined
  26. publication types. These types can be changed or deleted on the
  27. admin/settings/biblio/types page.
  28. Settings:
  29. =========
  30. A number of settings are available at admin/settings/biblio. They control how
  31. the author names are displayed, whether export links are added to pages and the
  32. number of entries per page to display.
  33. The admin/settings/biblio/types page allows the the site administrator to set
  34. the default field titles and set which fields are common to all publication
  35. types. When a new publication type is added, it will contain all the common
  36. fields and any that are specifically activated (custom is checked). This also
  37. allows the admin to over ride any of the default settings for any given type.
  38. Access Control:
  39. ===============
  40. There are a number of settings on the admin/user/access page. I think they are fairly
  41. self evident, they control who can create biblio entries, edit entries and who can
  42. import from file, etc.
  43. Adding/importing records:
  44. =========================
  45. Bibliographic entries can be added to the database in one of two ways, individualy
  46. from the node/add/biblio link, or by importing records from a file. File formats
  47. supported are Endnote "Tagged", EndNote 7 XML, EndNote 8,9,10 XML, BibTex and RIS.
  48. Administrators can go to admin/settings/biblio/import and fill in the form to
  49. upload and import from any of these file types.
  50. Features:
  51. =========
  52. By default, the /biblio page will list all of the entries in the database sorted
  53. by Year in descending order. If you wish to sort by "Title" or "Type", you may
  54. do so by clicking on the appropriate links at the top of the page. To reverse
  55. the sort order, simply click the link a second time.
  56. Filtering Search Results:
  57. =========================
  58. If you wish to filter the results, click on the "Filter" tab at the top of the
  59. page. To add a filter, click the radio button to the left of the filter type
  60. you wish to apply, then select the filter criteria from the drop down list
  61. on the right, then click the filter button.
  62. It is possible to create complex filters by returning to the "Filter" tab and
  63. adding additional filters. Simply follow the steps outlined above and press
  64. the "Refine" button.
  65. All filters can be removed by clicking the Clear All Filters link at the top
  66. of the result page, or on the "Filter" tab they can be removed one at a time
  67. using the "Undo" button, or you can remove them all using the "Clear All" button
  68. You may also construct URLs which filter. For example, /biblio/year/2005 will
  69. show all of the entries for 2005. /biblio/year/2005/author/smith will show all
  70. of entries from 2005 for smith.
  71. Exporting Search Results:
  72. =========================
  73. Assuming this option has been enabled by the administrator, you can export
  74. search results directly into EndNote. The link at the top of the result page
  75. will export all of the search results, and the links on individual entries will
  76. export the information related to that single entry.
  77. Clicking on one of the export links should cause your browser to ask you
  78. whether you want to Open, or Save To Disk, the file endnote.enw. If you choose
  79. to open it, Endnote should start and ask you which library you would like
  80. store the results in. Alternatively, you can save the file to disk and manually
  81. import it into EndNote.
  82. The information is exported in either EndNote "Tagged" format similar to this...
  83. %0 Book
  84. %A John Smith
  85. %D 1959
  86. %T The Works of John Smith
  87. ...
  88. Or Endnote 7 XML format which is similar to this...
  89. 10
  90. 1959
  91. The Works of John Smith
  92. John Smith