Skip to content

Commit f138105

Browse files
committed
interim release for lidar records but w/rb2.5
1 parent 7d5fa44 commit f138105

File tree

5 files changed

+20
-7
lines changed

5 files changed

+20
-7
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,6 @@
3838

3939
# Ignore test coverage
4040
/coverage
41+
42+
# Ignore google verification
43+
/public/google*.html

Vagrantfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,9 @@ Vagrant.configure(2) do |config|
1919
$apt_script = <<-SCRIPT
2020
sudo apt-get update
2121
sudo apt-get install -y apache2 curl git nodejs gcc bzip2 dkms software-properties-common libreadline-dev libmysqlclient-dev g++ firefox libsqlite3-dev
22-
2322
sudo add-apt-repository -y ppa:openjdk-r/ppa
2423
sudo apt-get update
2524
sudo apt-get install -y openjdk-8-jdk
26-
2725
sudo debconf-set-selections <<< 'mysql-server-5.5 mysql-server/root_password password rootpass'
2826
sudo debconf-set-selections <<< 'mysql-server-5.5 mysql-server/root_password_again password rootpass'
2927
sudo apt-get -y install mysql-server
@@ -53,7 +51,9 @@ Vagrant.configure(2) do |config|
5351
gem install bundler
5452
rbenv rehash
5553
fi
56-
cd /vagrant/sdr && bundle install
54+
cd /vagrant/sdr
55+
gem update bundler
56+
bundle install
5757
SCRIPT
5858

5959
config.vm.provision :shell, inline: $apt_script

lib/nyugeoblacklight/curated_collections.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def CuratedCollections.collections
1414

1515
def CuratedCollections.recent
1616
[
17-
#{title: "2019 Sunset Park LiDAR", description: "High-density LiDAR datasets of Sunset Park, Brooklyn, from Debra Laefer (NYU) and collaborators", f: {"dct_isPartOf_sm" => ["2019 Sunset Park LiDAR"]}},
17+
{title: "2019 Sunset Park LiDAR", description: "High-density LiDAR datasets of Sunset Park, Brooklyn, from Debra Laefer (NYU) and collaborators", f: {"dct_isPartOf_sm" => ["2019 Sunset Park LiDAR"]}},
1818
{title: "2004 New York State Tax Parcels", description: "Point data on property ownership and land value", f: {"dct_isPartOf_sm" => ["NYS GIS Clearinghouse"]}},
1919
{title: "2011 India Census Data", description: "Vector village-level demographic data from the 2011 India Census", f: { "dc_publisher_s" => ["ML InfoMap (Firm)"]}}
2020
]
@@ -23,7 +23,7 @@ def CuratedCollections.recent
2323
def CuratedCollections.maps
2424
[
2525
{title: "2015 Aerial Laser and Photogrammetry Survey of Dublin", slug: "nyu-2451-38684"},
26-
#{title: "2019 Aerial Lasar and Photogrammetry Survey of Sunset Park, Brooklyn", slug: "nyu-2451-60458"},
26+
{title: "2019 Aerial Lasar and Photogrammetry Survey of Sunset Park, Brooklyn", slug: "nyu-2451-60458"},
2727
{title: "China: Ch'ang-sha Region", slug: "harvard-ams7810-s250-u54-nh49-16"},
2828
{title: "1967 Communist China Agriculture", slug: "nyu-2451-36739"},
2929
{title: "2015 New York City Real Estate Sales", slug: "nyu-2451-34678"},

lib/nyugeoblacklight/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module NyuGeoblacklight
2-
VERSION = '1.9.5'.freeze
2+
VERSION = '1.9.51'.freeze
33
end

public/robots.txt

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,15 @@
44
# User-agent: *
55
# Disallow: /
66

7-
User-agent: *
7+
User-agent: *
88
Crawl-Delay: 10
9+
10+
Disallow: /catalog*
11+
Disallow: /catalog?*
12+
Disallow: /catalog/?*
13+
Disallow: /catalog?q=*&
14+
Disallow: /catalog/?q=*&
15+
Allow: /catalog?q=*
16+
Allow: /catalog/?q=*
17+
Disallow: /?*
18+
Allow: /?q=*

0 commit comments

Comments
 (0)