iiif_manifest 0.4.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.circleci/config.yml +51 -0
- data/.coveralls.yml +1 -0
- data/.github_changelog_generator +2 -0
- data/.gitignore +0 -0
- data/.rspec +0 -0
- data/.rubocop.yml +15 -5
- data/.rubocop_todo.yml +44 -51
- data/CHANGELOG.md +118 -0
- data/CODE_OF_CONDUCT.md +36 -49
- data/CODE_OF_CONDUCT.old.md +49 -0
- data/CONTRIBUTING.md +161 -0
- data/Gemfile +0 -0
- data/LICENSE +0 -0
- data/README.md +76 -18
- data/Rakefile +0 -0
- data/SUPPORT.md +5 -0
- data/iiif_manifest.gemspec +6 -6
- data/lib/iiif_manifest.rb +1 -0
- data/lib/iiif_manifest/display_image.rb +0 -0
- data/lib/iiif_manifest/iiif_collection.rb +6 -4
- data/lib/iiif_manifest/iiif_endpoint.rb +0 -0
- data/lib/iiif_manifest/manifest_builder.rb +0 -0
- data/lib/iiif_manifest/manifest_builder/canvas_builder.rb +0 -0
- data/lib/iiif_manifest/manifest_builder/canvas_builder_factory.rb +0 -0
- data/lib/iiif_manifest/manifest_builder/child_manifest_builder_factory.rb +0 -0
- data/lib/iiif_manifest/manifest_builder/composite_builder.rb +0 -0
- data/lib/iiif_manifest/manifest_builder/composite_builder_factory.rb +0 -0
- data/lib/iiif_manifest/manifest_builder/deep_canvas_builder_factory.rb +3 -3
- data/lib/iiif_manifest/manifest_builder/iiif_service.rb +0 -0
- data/lib/iiif_manifest/manifest_builder/image_builder.rb +0 -0
- data/lib/iiif_manifest/manifest_builder/image_service_builder.rb +0 -0
- data/lib/iiif_manifest/manifest_builder/record_property_builder.rb +15 -16
- data/lib/iiif_manifest/manifest_builder/resource_builder.rb +0 -0
- data/lib/iiif_manifest/manifest_builder/sequence_builder.rb +0 -0
- data/lib/iiif_manifest/manifest_builder/structure_builder.rb +0 -0
- data/lib/iiif_manifest/manifest_factory.rb +0 -0
- data/lib/iiif_manifest/manifest_service_locator.rb +2 -2
- data/lib/iiif_manifest/v3.rb +13 -0
- data/lib/iiif_manifest/v3/display_content.rb +20 -0
- data/lib/iiif_manifest/v3/manifest_builder.rb +61 -0
- data/lib/iiif_manifest/v3/manifest_builder/body_builder.rb +61 -0
- data/lib/iiif_manifest/v3/manifest_builder/canvas_builder.rb +77 -0
- data/lib/iiif_manifest/v3/manifest_builder/choice_builder.rb +47 -0
- data/lib/iiif_manifest/v3/manifest_builder/content_builder.rb +38 -0
- data/lib/iiif_manifest/v3/manifest_builder/iiif_service.rb +239 -0
- data/lib/iiif_manifest/v3/manifest_builder/image_service_builder.rb +35 -0
- data/lib/iiif_manifest/v3/manifest_builder/record_property_builder.rb +100 -0
- data/lib/iiif_manifest/v3/manifest_builder/structure_builder.rb +87 -0
- data/lib/iiif_manifest/v3/manifest_factory.rb +38 -0
- data/lib/iiif_manifest/v3/manifest_service_locator.rb +148 -0
- data/lib/iiif_manifest/version.rb +1 -1
- metadata +47 -29
- data/.travis.yml +0 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: ce4c4a874b8b50d50d11344dac0e635248754bb2b3498331cbd94945a5f3be75
|
4
|
+
data.tar.gz: 3da6a490d37ea8107e50a4393c21d5189ff97e47e9f34a65bd87848f3504f307
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e54f567e6ed14b4a802d05433a17547e119da18ee6dc851db026f157eb344e431649d8bc84076d102449bbee5b7d69a73bbf8b22d36eb43e6e46d7062e4c7133
|
7
|
+
data.tar.gz: ea7afaf08fdd7d142d7bbe6c0087521ddcda5ec520f183f7d2ae479961dd36908fa4b34054fdb379ad88f6c71c4a898d0e5c19419528e0135005a49be3deb6ee
|
@@ -0,0 +1,51 @@
|
|
1
|
+
---
|
2
|
+
version: 2.1
|
3
|
+
orbs:
|
4
|
+
samvera: samvera/circleci-orb@0
|
5
|
+
|
6
|
+
jobs:
|
7
|
+
test:
|
8
|
+
parameters:
|
9
|
+
ruby_version:
|
10
|
+
type: string
|
11
|
+
bundler_version:
|
12
|
+
type: string
|
13
|
+
default: 2.0.2
|
14
|
+
|
15
|
+
executor:
|
16
|
+
name: 'samvera/ruby'
|
17
|
+
ruby_version: << parameters.ruby_version >>
|
18
|
+
|
19
|
+
environment:
|
20
|
+
COVERAGE: true
|
21
|
+
|
22
|
+
working_directory: ~/iiif_manifest
|
23
|
+
|
24
|
+
steps:
|
25
|
+
- samvera/cached_checkout
|
26
|
+
- samvera/bundle_for_gem:
|
27
|
+
ruby_version: << parameters.ruby_version >>
|
28
|
+
bundler_version: << parameters.bundler_version >>
|
29
|
+
project: iiif_manifest
|
30
|
+
- samvera/rubocop
|
31
|
+
- samvera/parallel_rspec
|
32
|
+
|
33
|
+
workflows:
|
34
|
+
version: 2
|
35
|
+
ci:
|
36
|
+
jobs:
|
37
|
+
- test:
|
38
|
+
name: "ruby3-0"
|
39
|
+
ruby_version: "3.0.0"
|
40
|
+
- test:
|
41
|
+
name: "ruby2-7"
|
42
|
+
ruby_version: "2.7.0"
|
43
|
+
- test:
|
44
|
+
name: "ruby2-6"
|
45
|
+
ruby_version: "2.6.5"
|
46
|
+
- test:
|
47
|
+
name: "ruby2-5"
|
48
|
+
ruby_version: "2.5.7"
|
49
|
+
- test:
|
50
|
+
name: "ruby2-4"
|
51
|
+
ruby_version: "2.4.9"
|
data/.coveralls.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
service_name: travis-ci
|
data/.gitignore
CHANGED
File without changes
|
data/.rspec
CHANGED
File without changes
|
data/.rubocop.yml
CHANGED
@@ -1,19 +1,29 @@
|
|
1
|
-
|
1
|
+
inherit_gem:
|
2
|
+
bixby: bixby_default.yml
|
3
|
+
|
2
4
|
inherit_from: .rubocop_todo.yml
|
3
5
|
|
4
6
|
AllCops:
|
7
|
+
TargetRubyVersion: 2.6
|
5
8
|
DisplayCopNames: true
|
9
|
+
Exclude:
|
10
|
+
- 'bin/**/*'
|
11
|
+
- 'vendor/**/*'
|
6
12
|
|
7
|
-
|
13
|
+
Layout/LineLength:
|
8
14
|
Max: 120
|
9
15
|
|
16
|
+
Naming/MethodName:
|
17
|
+
Exclude:
|
18
|
+
- 'lib/iiif_manifest/manifest_builder/iiif_service.rb'
|
19
|
+
- 'lib/iiif_manifest/v3/manifest_builder/iiif_service.rb'
|
20
|
+
|
10
21
|
Metrics/BlockLength:
|
11
22
|
Exclude:
|
12
23
|
- 'spec/**/*.rb'
|
13
24
|
|
14
|
-
|
15
|
-
|
16
|
-
- 'lib/iiif_manifest/manifest_builder/iiif_service.rb'
|
25
|
+
RSpec/ExampleLength:
|
26
|
+
Enabled: false
|
17
27
|
|
18
28
|
RSpec/MultipleExpectations:
|
19
29
|
Enabled: false
|
data/.rubocop_todo.yml
CHANGED
@@ -1,85 +1,78 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on
|
3
|
+
# on 2020-06-12 12:53:34 -0400 using RuboCop version 0.85.1.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
8
8
|
|
9
|
-
# Offense count:
|
10
|
-
|
9
|
+
# Offense count: 8
|
10
|
+
# Cop supports --auto-correct.
|
11
|
+
Layout/CommentIndentation:
|
11
12
|
Exclude:
|
12
|
-
- 'lib/iiif_manifest/manifest_builder/
|
13
|
-
- 'lib/iiif_manifest/
|
13
|
+
- 'lib/iiif_manifest/manifest_builder/record_property_builder.rb'
|
14
|
+
- 'lib/iiif_manifest/v3/manifest_builder/record_property_builder.rb'
|
14
15
|
|
15
16
|
# Offense count: 1
|
16
|
-
# Configuration parameters:
|
17
|
-
|
18
|
-
|
19
|
-
Exclude:
|
20
|
-
- 'iiif_manifest.gemspec'
|
17
|
+
# Configuration parameters: IgnoredMethods.
|
18
|
+
Metrics/AbcSize:
|
19
|
+
Max: 38
|
21
20
|
|
22
|
-
# Offense count:
|
21
|
+
# Offense count: 2
|
22
|
+
# Configuration parameters: CountComments.
|
23
|
+
Metrics/ClassLength:
|
24
|
+
Max: 161
|
25
|
+
|
26
|
+
# Offense count: 2
|
27
|
+
# Configuration parameters: CountKeywordArgs.
|
28
|
+
Metrics/ParameterLists:
|
29
|
+
Max: 9
|
30
|
+
|
31
|
+
# Offense count: 2
|
23
32
|
# Configuration parameters: AssignmentOnly.
|
24
33
|
RSpec/InstanceVariable:
|
25
34
|
Exclude:
|
26
35
|
- 'spec/lib/iiif_manifest/manifest_factory_spec.rb'
|
27
36
|
|
28
|
-
# Offense count:
|
37
|
+
# Offense count: 19
|
38
|
+
# Configuration parameters: IgnoreSharedExamples.
|
29
39
|
RSpec/NamedSubject:
|
30
40
|
Exclude:
|
31
41
|
- 'spec/lib/iiif_manifest/display_image_spec.rb'
|
32
42
|
- 'spec/lib/iiif_manifest/iiif_endpoint_spec.rb'
|
33
43
|
- 'spec/lib/iiif_manifest/manifest_builder/resource_builder_spec.rb'
|
44
|
+
- 'spec/lib/iiif_manifest/v3/manifest_builder/body_builder_spec.rb'
|
45
|
+
- 'spec/lib/iiif_manifest/v3/manifest_builder/structure_builder_spec.rb'
|
34
46
|
|
35
|
-
# Offense count:
|
36
|
-
# Configuration parameters: IgnoreSymbolicNames.
|
47
|
+
# Offense count: 17
|
48
|
+
# Configuration parameters: IgnoreNameless, IgnoreSymbolicNames.
|
37
49
|
RSpec/VerifiedDoubles:
|
38
50
|
Exclude:
|
39
51
|
- 'spec/lib/iiif_manifest/display_image_spec.rb'
|
52
|
+
- 'spec/lib/iiif_manifest/v3/manifest_builder/canvas_builder_spec.rb'
|
53
|
+
- 'spec/lib/iiif_manifest/v3/manifest_builder/structure_builder_spec.rb'
|
40
54
|
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
# Offense count: 20
|
46
|
-
Style/Documentation:
|
55
|
+
# Offense count: 6
|
56
|
+
# Cop supports --auto-correct.
|
57
|
+
# Configuration parameters: NilOrEmpty, NotPresent, UnlessPresent.
|
58
|
+
Rails/Blank:
|
47
59
|
Exclude:
|
48
|
-
- 'lib/iiif_manifest/display_image.rb'
|
49
|
-
- 'lib/iiif_manifest/iiif_collection.rb'
|
50
|
-
- 'lib/iiif_manifest/iiif_endpoint.rb'
|
51
|
-
- 'lib/iiif_manifest/manifest_builder/canvas_builder.rb'
|
52
|
-
- 'lib/iiif_manifest/manifest_builder/canvas_builder.rb'
|
53
|
-
- 'lib/iiif_manifest/manifest_builder/canvas_builder_factory.rb'
|
54
|
-
- 'lib/iiif_manifest/manifest_builder/child_manifest_builder_factory.rb'
|
55
|
-
- 'lib/iiif_manifest/manifest_builder/composite_builder.rb'
|
56
|
-
- 'lib/iiif_manifest/manifest_builder/composite_builder_factory.rb'
|
57
|
-
- 'lib/iiif_manifest/manifest_builder/deep_canvas_builder_factory.rb'
|
58
|
-
- 'lib/iiif_manifest/manifest_builder/image_builder.rb'
|
59
|
-
- 'lib/iiif_manifest/manifest_builder/image_service_builder.rb'
|
60
|
-
- 'lib/iiif_manifest/manifest_builder/record_property_builder.rb'
|
61
|
-
- 'lib/iiif_manifest/manifest_builder/resource_builder.rb'
|
62
|
-
- 'lib/iiif_manifest/manifest_builder/sequence_builder.rb'
|
63
|
-
- 'lib/iiif_manifest/manifest_builder/structure_builder.rb'
|
64
|
-
- 'lib/iiif_manifest/manifest_builder.rb'
|
65
|
-
- 'lib/iiif_manifest/manifest_factory.rb'
|
66
|
-
- 'lib/iiif_manifest/manifest_service_locator.rb'
|
67
|
-
- 'lib/iiif_manifest.rb'
|
68
60
|
- 'lib/iiif_manifest/manifest_builder/iiif_service.rb'
|
69
|
-
- '
|
61
|
+
- 'lib/iiif_manifest/v3/manifest_builder/iiif_service.rb'
|
62
|
+
|
63
|
+
# Offense count: 37
|
64
|
+
# Cop supports --auto-correct.
|
65
|
+
# Configuration parameters: EnforcedStyle.
|
66
|
+
# SupportedStyles: always, always_true, never
|
67
|
+
Style/FrozenStringLiteralComment:
|
68
|
+
Enabled: false
|
70
69
|
|
71
70
|
# Offense count: 1
|
72
|
-
Style/
|
71
|
+
Style/MethodMissingSuper:
|
73
72
|
Exclude:
|
74
73
|
- 'lib/iiif_manifest/manifest_builder/composite_builder.rb'
|
75
74
|
|
76
|
-
Metrics/ClassLength:
|
77
|
-
Exclude:
|
78
|
-
- 'lib/iiif_manifest/manifest_service_locator.rb'
|
79
|
-
|
80
75
|
# Offense count: 1
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
Style/SymbolArray:
|
85
|
-
EnforcedStyle: brackets
|
76
|
+
Style/MissingRespondToMissing:
|
77
|
+
Exclude:
|
78
|
+
- 'lib/iiif_manifest/manifest_builder/composite_builder.rb'
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,118 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [1.0.2](https://github.com/samvera/iiif_manifest/tree/1.0.2) (2020-06-12)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/samvera/iiif_manifest/compare/v1.0.1...1.0.2)
|
6
|
+
|
7
|
+
**Closed issues:**
|
8
|
+
|
9
|
+
- Add support for Ruby 2.7.z releases [\#43](https://github.com/samvera/iiif_manifest/issues/43)
|
10
|
+
|
11
|
+
**Merged pull requests:**
|
12
|
+
|
13
|
+
- Upgrade to Bixby 3.0 [\#49](https://github.com/samvera/iiif_manifest/pull/49) ([bess](https://github.com/bess))
|
14
|
+
- Upgrade rake \(again\) to address security issue [\#47](https://github.com/samvera/iiif_manifest/pull/47) ([bess](https://github.com/bess))
|
15
|
+
- Loosen rake dependency [\#46](https://github.com/samvera/iiif_manifest/pull/46) ([no-reply](https://github.com/no-reply))
|
16
|
+
- Adding Ruby 2.7.z and Rails 6.y.z releases to the CircleCI build configuration [\#45](https://github.com/samvera/iiif_manifest/pull/45) ([jrgriffiniii](https://github.com/jrgriffiniii))
|
17
|
+
|
18
|
+
## [v1.0.1](https://github.com/samvera/iiif_manifest/tree/v1.0.1) (2019-08-23)
|
19
|
+
|
20
|
+
[Full Changelog](https://github.com/samvera/iiif_manifest/compare/v1.0.0...v1.0.1)
|
21
|
+
|
22
|
+
**Closed issues:**
|
23
|
+
|
24
|
+
- Test Current Ruby/Rails Versions in Build Matrix [\#41](https://github.com/samvera/iiif_manifest/issues/41)
|
25
|
+
- Migrate to CircleCI [\#40](https://github.com/samvera/iiif_manifest/issues/40)
|
26
|
+
- Update Documentation to Core Component standards [\#39](https://github.com/samvera/iiif_manifest/issues/39)
|
27
|
+
- Release 1.0? [\#38](https://github.com/samvera/iiif_manifest/issues/38)
|
28
|
+
|
29
|
+
## [v1.0.0](https://github.com/samvera/iiif_manifest/tree/v1.0.0) (2019-08-23)
|
30
|
+
|
31
|
+
[Full Changelog](https://github.com/samvera/iiif_manifest/compare/v0.6.0...v1.0.0)
|
32
|
+
|
33
|
+
**Merged pull requests:**
|
34
|
+
|
35
|
+
- Add initial configuration for CircleCI [\#42](https://github.com/samvera/iiif_manifest/pull/42) ([mark-dce](https://github.com/mark-dce))
|
36
|
+
- Ensures that empty DisplayContent values within IIIFv3 Manifest generation are handled [\#37](https://github.com/samvera/iiif_manifest/pull/37) ([jrgriffiniii](https://github.com/jrgriffiniii))
|
37
|
+
|
38
|
+
## [v0.6.0](https://github.com/samvera/iiif_manifest/tree/v0.6.0) (2019-05-14)
|
39
|
+
|
40
|
+
[Full Changelog](https://github.com/samvera/iiif_manifest/compare/v0.5.0...v0.6.0)
|
41
|
+
|
42
|
+
**Merged pull requests:**
|
43
|
+
|
44
|
+
- Bump version to prepare for release [\#36](https://github.com/samvera/iiif_manifest/pull/36) ([cjcolvar](https://github.com/cjcolvar))
|
45
|
+
- Don't include \# if there isn't any media fragment [\#35](https://github.com/samvera/iiif_manifest/pull/35) ([cjcolvar](https://github.com/cjcolvar))
|
46
|
+
- Update README.md [\#32](https://github.com/samvera/iiif_manifest/pull/32) ([rotated8](https://github.com/rotated8))
|
47
|
+
- Add support for homepage in V3 [\#31](https://github.com/samvera/iiif_manifest/pull/31) ([cjcolvar](https://github.com/cjcolvar))
|
48
|
+
- Optional authentication service for non-image api-backed resources. [\#30](https://github.com/samvera/iiif_manifest/pull/30) ([cjcolvar](https://github.com/cjcolvar))
|
49
|
+
|
50
|
+
## [v0.5.0](https://github.com/samvera/iiif_manifest/tree/v0.5.0) (2018-10-01)
|
51
|
+
|
52
|
+
[Full Changelog](https://github.com/samvera/iiif_manifest/compare/v0.4.0...v0.5.0)
|
53
|
+
|
54
|
+
**Merged pull requests:**
|
55
|
+
|
56
|
+
- Bump version to 0.5.0 [\#29](https://github.com/samvera/iiif_manifest/pull/29) ([cjcolvar](https://github.com/cjcolvar))
|
57
|
+
- Update readme for presentation 3.0 support [\#28](https://github.com/samvera/iiif_manifest/pull/28) ([cjcolvar](https://github.com/cjcolvar))
|
58
|
+
- Fix links pointing to projecthydra-labs [\#27](https://github.com/samvera/iiif_manifest/pull/27) ([cjcolvar](https://github.com/cjcolvar))
|
59
|
+
- Issue langmap: add nil checking to language\_map [\#25](https://github.com/samvera/iiif_manifest/pull/25) ([yingfeng-iu](https://github.com/yingfeng-iu))
|
60
|
+
- Issue\#116 rebased [\#23](https://github.com/samvera/iiif_manifest/pull/23) ([yingfeng-iu](https://github.com/yingfeng-iu))
|
61
|
+
- V3 Range Improvements [\#21](https://github.com/samvera/iiif_manifest/pull/21) ([cjcolvar](https://github.com/cjcolvar))
|
62
|
+
- Use bixby to insulate from changes in rubocop [\#20](https://github.com/samvera/iiif_manifest/pull/20) ([cjcolvar](https://github.com/cjcolvar))
|
63
|
+
- Presentation 3.0 Alpha Support [\#19](https://github.com/samvera/iiif_manifest/pull/19) ([cjcolvar](https://github.com/cjcolvar))
|
64
|
+
|
65
|
+
## [v0.4.0](https://github.com/samvera/iiif_manifest/tree/v0.4.0) (2018-02-28)
|
66
|
+
|
67
|
+
[Full Changelog](https://github.com/samvera/iiif_manifest/compare/v0.3.0...v0.4.0)
|
68
|
+
|
69
|
+
**Closed issues:**
|
70
|
+
|
71
|
+
- Provide a way for works to indicate if they are sammelbands [\#17](https://github.com/samvera/iiif_manifest/issues/17)
|
72
|
+
- Support viewingDirection in manifests [\#12](https://github.com/samvera/iiif_manifest/issues/12)
|
73
|
+
|
74
|
+
**Merged pull requests:**
|
75
|
+
|
76
|
+
- Allow works to indicate if they are sammelbands [\#18](https://github.com/samvera/iiif_manifest/pull/18) ([eliotjordan](https://github.com/eliotjordan))
|
77
|
+
- Add search\_service and autocomplete\_service [\#16](https://github.com/samvera/iiif_manifest/pull/16) ([geekscruff](https://github.com/geekscruff))
|
78
|
+
- Use hash-powered IIIF factories. [\#15](https://github.com/samvera/iiif_manifest/pull/15) ([tpendragon](https://github.com/tpendragon))
|
79
|
+
- Add viewingDirection as optional data value on manifest, fixes \#12 [\#13](https://github.com/samvera/iiif_manifest/pull/13) ([hackmastera](https://github.com/hackmastera))
|
80
|
+
|
81
|
+
## [v0.3.0](https://github.com/samvera/iiif_manifest/tree/v0.3.0) (2017-09-27)
|
82
|
+
|
83
|
+
[Full Changelog](https://github.com/samvera/iiif_manifest/compare/v0.2.0...v0.3.0)
|
84
|
+
|
85
|
+
**Merged pull requests:**
|
86
|
+
|
87
|
+
- bump to version 0.3.0 [\#11](https://github.com/samvera/iiif_manifest/pull/11) ([geekscruff](https://github.com/geekscruff))
|
88
|
+
- Unnecessary each\_with\_index changed to each [\#10](https://github.com/samvera/iiif_manifest/pull/10) ([geekscruff](https://github.com/geekscruff))
|
89
|
+
- Add metadata into the manifest [\#9](https://github.com/samvera/iiif_manifest/pull/9) ([geekscruff](https://github.com/geekscruff))
|
90
|
+
- Enable builders to all be injected. [\#8](https://github.com/samvera/iiif_manifest/pull/8) ([tpendragon](https://github.com/tpendragon))
|
91
|
+
- Allow viewing\_hint to be overridden, allows for Collections as inputs. [\#7](https://github.com/samvera/iiif_manifest/pull/7) ([tpendragon](https://github.com/tpendragon))
|
92
|
+
- Add support for Structural Metadata. [\#5](https://github.com/samvera/iiif_manifest/pull/5) ([tpendragon](https://github.com/tpendragon))
|
93
|
+
- Add Rubocop [\#4](https://github.com/samvera/iiif_manifest/pull/4) ([jcoyne](https://github.com/jcoyne))
|
94
|
+
- Support for a 'sequence\_rendering' method [\#3](https://github.com/samvera/iiif_manifest/pull/3) ([geekscruff](https://github.com/geekscruff))
|
95
|
+
|
96
|
+
## [v0.2.0](https://github.com/samvera/iiif_manifest/tree/v0.2.0) (2017-05-03)
|
97
|
+
|
98
|
+
[Full Changelog](https://github.com/samvera/iiif_manifest/compare/v0.1.2...v0.2.0)
|
99
|
+
|
100
|
+
**Merged pull requests:**
|
101
|
+
|
102
|
+
- Bump iiif-presentation dependency to ~\> 0.2.0 [\#2](https://github.com/samvera/iiif_manifest/pull/2) ([jcoyne](https://github.com/jcoyne))
|
103
|
+
|
104
|
+
## [v0.1.2](https://github.com/samvera/iiif_manifest/tree/v0.1.2) (2016-05-13)
|
105
|
+
|
106
|
+
[Full Changelog](https://github.com/samvera/iiif_manifest/compare/v0.1.1...v0.1.2)
|
107
|
+
|
108
|
+
## [v0.1.1](https://github.com/samvera/iiif_manifest/tree/v0.1.1) (2016-05-13)
|
109
|
+
|
110
|
+
[Full Changelog](https://github.com/samvera/iiif_manifest/compare/v0.1.0...v0.1.1)
|
111
|
+
|
112
|
+
## [v0.1.0](https://github.com/samvera/iiif_manifest/tree/v0.1.0) (2016-05-13)
|
113
|
+
|
114
|
+
[Full Changelog](https://github.com/samvera/iiif_manifest/compare/fc1bb4810a289fd6e2d88bf966bf94cf045fbbf0...v0.1.0)
|
115
|
+
|
116
|
+
|
117
|
+
|
118
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
data/CODE_OF_CONDUCT.md
CHANGED
@@ -1,49 +1,36 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
-
reported by contacting a project maintainer at jcoyne@justincoyne.com. All
|
39
|
-
complaints will be reviewed and investigated and will result in a response that
|
40
|
-
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
-
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
-
incident.
|
43
|
-
|
44
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
-
version 1.3.0, available at
|
46
|
-
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
-
|
48
|
-
[homepage]: http://contributor-covenant.org
|
49
|
-
[version]: http://contributor-covenant.org/version/1/3/0/
|
1
|
+
The Samvera community is dedicated to providing a welcoming and
|
2
|
+
positive experience for all its members, whether they are at a formal
|
3
|
+
gathering, in a social setting, or taking part in activities online.
|
4
|
+
The Samvera community welcomes participation from people all over the
|
5
|
+
world and these members bring with them a wide variety of
|
6
|
+
professional, personal and social backgrounds; whatever these may be,
|
7
|
+
we treat colleagues with dignity and respect.
|
8
|
+
|
9
|
+
Community members communicate primarily in English, though for many of
|
10
|
+
them this is not their native language. We therefore strive to express
|
11
|
+
ourselves simply and clearly remembering that unnecessary use of
|
12
|
+
jargon and slang will be a barrier to understanding for many of our
|
13
|
+
colleagues. We are sensitive to the fact that the international
|
14
|
+
nature of the community means that we span many different social norms
|
15
|
+
around language and behaviour and we strive to conduct ourselves,
|
16
|
+
online and in person, in ways that are unlikely to cause offence.
|
17
|
+
|
18
|
+
Samvera conversations are often information-rich and intended to
|
19
|
+
generate discussion and debate. We discuss ideas from a standpoint of
|
20
|
+
mutual respect and reasoned argument.
|
21
|
+
|
22
|
+
Community members work together to promote a respectful and safe
|
23
|
+
community. In the event that someone’s conduct is causing offence or
|
24
|
+
distress, Samvera has a detailed
|
25
|
+
[Anti-Harassment Policy and Protocol](https://wiki.duraspace.org/display/samvera/Anti-Harassment+Policy)
|
26
|
+
which can be applied to address the problem. The first step in dealing
|
27
|
+
with any serious misconduct is to contact a local meeting organizer,
|
28
|
+
the
|
29
|
+
[Samvera community helpers](https://wiki.duraspace.org/display/samvera/Samvera+Community+Helpers)
|
30
|
+
([email](mailto:helpers@samvera.org)), a community member you
|
31
|
+
trust, or the
|
32
|
+
[Samvera Steering Group](https://wiki.duraspace.org/display/samvera/Samvera+Steering+Group+membership)
|
33
|
+
immediately; at Samvera events, these people can be identified by
|
34
|
+
distinctive name badges. The
|
35
|
+
[Policy and Protocol](https://wiki.duraspace.org/display/samvera/Anti-Harassment+Policy)
|
36
|
+
should be consulted for fuller details.
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
+
threatening, offensive, or harmful.
|
28
|
+
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
+
Conduct may be permanently removed from the project team.
|
33
|
+
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
35
|
+
when an individual is representing the project or its community.
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
+
reported by contacting a project maintainer at jcoyne@justincoyne.com. All
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
+
incident.
|
43
|
+
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
+
version 1.3.0, available at
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
+
|
48
|
+
[homepage]: http://contributor-covenant.org
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|