Skip to content

Commit

Permalink
fixing the about.jsp page that koo added on sep. 19
Browse files Browse the repository at this point in the history
  • Loading branch information
jdeck88 committed Nov 16, 2016
1 parent 6ec61fc commit e436f67
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions scripts/findVolumeNum.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
ls -1 ../docs/mvz/ | awk -Fv '{print $NF}' | awk -F- '{print $1}' | sort -n
5 changes: 2 additions & 3 deletions web/about.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@
<h1>Welcome to the EcoReader</h1>
<p>A vast store of knowledge on our natural environment is not contained in databases or in digital format. It exists in hand-written and typed field notebooks containing critical ecological and biological details in observations, drawings, and photographs. While there are applications to aid in the digitization of these notebooks or aggregate metadata (e.g. Archivist Toolkit, ArchiveSpace, Biodiversity Heritage Library (BHL)) there is no open source application to directly publish, visualize, and query digitized notebooks from source collections that enable direct control over the input and output process via code.</p>

<p>ecoReader was conceived by the Museum of Vertebrate Zoology to quickly and easily make field notebooks accessible for online viewing originally in 2003. This <a href=https://github.com/BNHM/ecoreader>ecoReader code library</a> re-imagines the online reader, designed to easily support multiple data input formats, and uses a common notebook metadata interface, which allows for consistent output using a centralized indexing mechanism.</p>
<p>ecoReader was conceived by the Museum of Vertebrate Zoology to extend the cataloging of MVZ Archives' field notebooks quickly and easily making the field notebooks accessible for online viewing. This <a href=https://github.com/BNHM/ecoreader>ecoReader code library</a> re-imagines our previous online reader, designed to easily support multiple data input formats, and uses a common notebook metadata interface, which allows for consistent output using a centralized indexing mechanism. We are grateful to the CLIR Hidden Collections grant (<a href=https://www.clir.org/hiddencollections/registry/hc.0816>2011</a>) for making this possible.</p>

<p>This portal provides access to digitized field notes from the Museum of Vertebrate Zoology Archives. Field notes that have not been scanned are also listed for reference. We will continue to add more volumes as they are cataloged. Please contact the Archives at [email protected] for more information.</p>

<p>This portal provides access to digitized field notes from the Museum of Vertebrate Zoology Archives as well as unscanned field notes that have been cataloged. Digitization efforts were originally funded in 2003 (NSF Grant No. <a href=http://www.nsf.gov/awardsearch/showAward?AWD_ID=0237424>0237424</a>) and subsequently funded by inhouse or direct donations. A new partnership with the Smithsonian and the Internet Archive (funded by CLIR) will begin in 2017. We will continue to add more volumes as they are cataloged. Please contact the Archives at [email protected] for more information.</p>

</div><!--close content_container-->
</div><!--close site_content-->
Expand Down
4 changes: 3 additions & 1 deletion web/js/ecoreader.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,9 @@ function showSectionFancybox(section_id, galIndex, data) {
var sidebar = $('<div class="fancybox-sidebar"><div class="fancybox-sidebar-container"></div></div>');
this.skin.append(sidebar);

var html = "<div class='fancybox-img-download'><p><a href='" + this.big + "' download='image.png'>Download Image</a></p>";
var html = "<div class='fancybox-img-download'>" +
"<p><a href='" + this.big + "' download='image.png'>Download Image</a></p>" +
"<p><a href='" + this.big + "' target='_blank'>Link to Image</a></p>";
html += "<div class='fancybox-page-nav'>" +
"<div><img src='img/zoomin.png'><label> click in center of image to enlarge</label></div>";
if (this.group.length > 1) {
Expand Down

0 comments on commit e436f67

Please sign in to comment.