warclight 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +6 -3
- data/lib/warclight/version.rb +1 -1
- data/solr/conf/schema.xml +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 64f1c850c346e25d6d62d93671ed383cc119f921
|
|
4
|
+
data.tar.gz: 0a1b5470b56118323a4d12d5b8baff92621349d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac71ce6b95d22a17e2b44d391e6da0b99fa03154891e57587b0c13641f271b51ee767fb0871c14ad615949461aadca98392f2b17ddbbd3ff9d64eee3b977d54d
|
|
7
|
+
data.tar.gz: 0fe2a8b7dcf2b8eedf937ee8a76dd9323a2ae37ff01c8ae569da8bdd0ae8719d9c37063efd19625e62ac600d1d39a1ca40b7316569a67ef52bd0af85d1fdd637
|
data/README.md
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
# Warclight
|
|
2
2
|
[](https://travis-ci.org/archivesunleashed/warclight)
|
|
3
|
+
[](https://codecov.io/gh/archivesunleashed/warclight)
|
|
4
|
+
[](https://badge.fury.io/rb/warclight)
|
|
3
5
|
[](./CONTRIBUTING.md)
|
|
4
6
|
[](./LICENSE.txt)
|
|
5
|
-
[](https://codecov.io/gh/archivesunleashed/warclight)
|
|
6
7
|
|
|
7
|
-
A Rails engine
|
|
8
|
+
A [Project Blacklight](http://projectblacklight.org/) based [Rails engine](http://guides.rubyonrails.org/engines.html) that supports the discovery of web archives held in the WARC and ARC formats. It allows faceted full-text search, record view, and other advanced discovery options.
|
|
8
9
|
|
|
9
10
|
## Requirements
|
|
10
11
|
|
|
@@ -29,9 +30,11 @@ Or install it yourself as:
|
|
|
29
30
|
$ gem install warclight
|
|
30
31
|
```
|
|
31
32
|
|
|
33
|
+
For further details, see our [Creating, installing, and running your Warclight application](https://github.com/archivesunleashed/warclight/wiki/Creating%2C-installing%2C-and-running-your-Warclight-application) documentation.
|
|
34
|
+
|
|
32
35
|
## Usage
|
|
33
36
|
|
|
34
|
-
Warclight is designed to work with web archive data that is indexed via the UK Web Archive's [webarchive-discovery](webarchive-discovery) project.
|
|
37
|
+
Warclight is designed to work with web archive data that is indexed via the UK Web Archive's [webarchive-discovery](https://github.com/ukwa/webarchive-discovery) project. Warclight currently uses a fork of [webarchive-discovery](https://github.com/web-archive-group/webarchive-discovery/tree/addFields) that allows for three additional facets: `institution`, `collection_name`, and `collection_number`.
|
|
35
38
|
|
|
36
39
|
## Development
|
|
37
40
|
|
data/lib/warclight/version.rb
CHANGED
data/solr/conf/schema.xml
CHANGED
|
@@ -320,7 +320,7 @@
|
|
|
320
320
|
|
|
321
321
|
<fieldType name="ignored" stored="false" indexed="false" docValues="false" multiValued="true" class="solr.StrField" />
|
|
322
322
|
<fieldType name="point" class="solr.PointType" dimension="2" subFieldSuffix="_d"/>
|
|
323
|
-
<fieldType name="location" class="solr.
|
|
323
|
+
<fieldType name="location" class="solr.LatLonPointSpatialField" docValues="true"/>
|
|
324
324
|
|
|
325
325
|
<fieldType name="text_ga" class="solr.TextField" positionIncrementGap="100">
|
|
326
326
|
<analyzer>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: warclight
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nick Ruest
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-08-
|
|
11
|
+
date: 2017-08-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: blacklight
|