saxon 0.2.2-java → 0.4.0-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/saxon.gemspec +10 -18
- metadata +17 -166
- data/.gitignore +0 -13
- data/.rspec +0 -3
- data/.ruby-version +0 -1
- data/.travis.yml +0 -20
- data/CODE_OF_CONDUCT.md +0 -74
- data/Gemfile +0 -6
- data/README.md +0 -43
- data/Rakefile +0 -12
- data/bin/console +0 -14
- data/bin/setup +0 -8
- data/lib/net/sf/saxon/Saxon-HE/9.9.1-2/Saxon-HE-9.9.1-2.jar +0 -0
- data/lib/saxon.rb +0 -6
- data/lib/saxon/axis_iterator.rb +0 -32
- data/lib/saxon/configuration.rb +0 -116
- data/lib/saxon/document_builder.rb +0 -28
- data/lib/saxon/item_type.rb +0 -200
- data/lib/saxon/jaxp.rb +0 -8
- data/lib/saxon/loader.rb +0 -103
- data/lib/saxon/occurrence_indicator.rb +0 -33
- data/lib/saxon/parse_options.rb +0 -127
- data/lib/saxon/processor.rb +0 -102
- data/lib/saxon/qname.rb +0 -145
- data/lib/saxon/s9api.rb +0 -16
- data/lib/saxon/serializer.rb +0 -143
- data/lib/saxon/source.rb +0 -187
- data/lib/saxon/version.rb +0 -3
- data/lib/saxon/xdm_atomic_value.rb +0 -48
- data/lib/saxon/xdm_node.rb +0 -65
- data/lib/saxon/xdm_value.rb +0 -129
- data/lib/saxon/xpath.rb +0 -8
- data/lib/saxon/xpath/compiler.rb +0 -69
- data/lib/saxon/xpath/executable.rb +0 -59
- data/lib/saxon/xpath/static_context.rb +0 -161
- data/lib/saxon/xpath/variable_declaration.rb +0 -68
- data/lib/saxon/xslt.rb +0 -8
- data/lib/saxon/xslt/compiler.rb +0 -70
- data/lib/saxon/xslt/evaluation_context.rb +0 -174
- data/lib/saxon/xslt/executable.rb +0 -156
- data/lib/saxon_jars.rb +0 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 87374813ba271190979743fd8fecea2d1a26bb2276e92564e17b755ccee7701f
|
4
|
+
data.tar.gz: aa68e433e5d2d3d4d7d52623e83e6996f68bb56bc4c50dc96afbb1b540a7277b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab3d8842ae59c21debce8eddd459b979ea22163332b3afc737ce7482255e3372d3769cc60e5a846004f8c67b5b45b99b16e07ffd38970b20a8761edfe55007bf
|
7
|
+
data.tar.gz: 8122e99bc0eadc5de35a6310ca3293fb69f1dc649241cee5b7662fa9d1d35693899b4e5867c626e7692d607685a43bc010d64af641773d580f88a160c38acb02
|
data/saxon.gemspec
CHANGED
@@ -9,30 +9,22 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ['Matt Patterson']
|
10
10
|
spec.email = ['matt@werkstatt.io']
|
11
11
|
|
12
|
-
spec.description = %q{
|
12
|
+
spec.description = %q{Deprecated version of the Saxon XML and XSLT library wrapper.
|
13
13
|
|
14
|
-
|
15
|
-
|
14
|
+
The gem has been renamed saxon-rb. This gem depends on that gem. To continue to see updates, please replace saxon with saxon-rb in your Gemfiles.
|
15
|
+
|
16
|
+
This gem has a hard dependency on version #{Saxon::VERSION} of saxon-rb, but will never be updated.
|
17
|
+
}
|
18
|
+
spec.summary = %q{Saxon 9.9 for JRuby, with an idiomatic Ruby API, now renamed to saxon-rb}
|
16
19
|
spec.homepage = "https://github.com/fidothe/saxon-rb"
|
17
20
|
spec.license = 'MIT'
|
18
21
|
spec.platform = 'java'
|
22
|
+
spec.post_install_message = "saxon has been renamed to saxon-rb. Please rename in your Gemfile or gemspec (that's all you need to do). This gem won't get any new updates."
|
19
23
|
|
20
|
-
spec.files =
|
21
|
-
f.match(%r{^(test|spec|features)/})
|
22
|
-
end
|
24
|
+
spec.files = %w{LICENSE.txt saxon.gemspec lib}
|
23
25
|
spec.bindir = 'exe'
|
24
|
-
spec.executables =
|
26
|
+
spec.executables = []
|
25
27
|
spec.require_paths = ['lib']
|
26
28
|
|
27
|
-
spec.
|
28
|
-
|
29
|
-
spec.add_development_dependency 'bundler', '~> 2.0'
|
30
|
-
spec.add_development_dependency 'jar-dependencies'
|
31
|
-
spec.add_development_dependency 'rake', '~> 12.0'
|
32
|
-
spec.add_development_dependency 'rspec', '~> 3.0'
|
33
|
-
spec.add_development_dependency 'vcr', '~> 4.0'
|
34
|
-
spec.add_development_dependency 'addressable', '~> 2.4.0'
|
35
|
-
spec.add_development_dependency 'webmock', '~> 2.3.2'
|
36
|
-
spec.add_development_dependency 'yard', '~> 0.9.12'
|
37
|
-
spec.add_development_dependency 'simplecov', '~> 0.15'
|
29
|
+
spec.add_runtime_dependency 'saxon-rb', Saxon::VERSION
|
38
30
|
end
|
metadata
CHANGED
@@ -1,197 +1,49 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: saxon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Matt Patterson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-10-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
15
15
|
requirements:
|
16
|
-
- -
|
16
|
+
- - '='
|
17
17
|
- !ruby/object:Gem::Version
|
18
|
-
version:
|
19
|
-
name:
|
18
|
+
version: 0.4.0
|
19
|
+
name: saxon-rb
|
20
20
|
prerelease: false
|
21
|
-
type: :
|
21
|
+
type: :runtime
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: '0'
|
33
|
-
name: jar-dependencies
|
34
|
-
prerelease: false
|
35
|
-
type: :development
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - ">="
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '0'
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
requirement: !ruby/object:Gem::Requirement
|
43
|
-
requirements:
|
44
|
-
- - "~>"
|
45
|
-
- !ruby/object:Gem::Version
|
46
|
-
version: '12.0'
|
47
|
-
name: rake
|
48
|
-
prerelease: false
|
49
|
-
type: :development
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '12.0'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
requirement: !ruby/object:Gem::Requirement
|
57
|
-
requirements:
|
58
|
-
- - "~>"
|
59
|
-
- !ruby/object:Gem::Version
|
60
|
-
version: '3.0'
|
61
|
-
name: rspec
|
62
|
-
prerelease: false
|
63
|
-
type: :development
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - "~>"
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '3.0'
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
requirement: !ruby/object:Gem::Requirement
|
71
|
-
requirements:
|
72
|
-
- - "~>"
|
73
|
-
- !ruby/object:Gem::Version
|
74
|
-
version: '4.0'
|
75
|
-
name: vcr
|
76
|
-
prerelease: false
|
77
|
-
type: :development
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - "~>"
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
version: '4.0'
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
requirement: !ruby/object:Gem::Requirement
|
85
|
-
requirements:
|
86
|
-
- - "~>"
|
87
|
-
- !ruby/object:Gem::Version
|
88
|
-
version: 2.4.0
|
89
|
-
name: addressable
|
90
|
-
prerelease: false
|
91
|
-
type: :development
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - "~>"
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: 2.4.0
|
97
|
-
- !ruby/object:Gem::Dependency
|
98
|
-
requirement: !ruby/object:Gem::Requirement
|
99
|
-
requirements:
|
100
|
-
- - "~>"
|
101
|
-
- !ruby/object:Gem::Version
|
102
|
-
version: 2.3.2
|
103
|
-
name: webmock
|
104
|
-
prerelease: false
|
105
|
-
type: :development
|
106
|
-
version_requirements: !ruby/object:Gem::Requirement
|
107
|
-
requirements:
|
108
|
-
- - "~>"
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
version: 2.3.2
|
111
|
-
- !ruby/object:Gem::Dependency
|
112
|
-
requirement: !ruby/object:Gem::Requirement
|
113
|
-
requirements:
|
114
|
-
- - "~>"
|
115
|
-
- !ruby/object:Gem::Version
|
116
|
-
version: 0.9.12
|
117
|
-
name: yard
|
118
|
-
prerelease: false
|
119
|
-
type: :development
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
requirements:
|
122
|
-
- - "~>"
|
123
|
-
- !ruby/object:Gem::Version
|
124
|
-
version: 0.9.12
|
125
|
-
- !ruby/object:Gem::Dependency
|
126
|
-
requirement: !ruby/object:Gem::Requirement
|
127
|
-
requirements:
|
128
|
-
- - "~>"
|
129
|
-
- !ruby/object:Gem::Version
|
130
|
-
version: '0.15'
|
131
|
-
name: simplecov
|
132
|
-
prerelease: false
|
133
|
-
type: :development
|
134
|
-
version_requirements: !ruby/object:Gem::Requirement
|
135
|
-
requirements:
|
136
|
-
- - "~>"
|
137
|
-
- !ruby/object:Gem::Version
|
138
|
-
version: '0.15'
|
139
|
-
description: |-
|
140
|
-
Wraps the Saxon 9.9 XML and XSLT library so you can process, transform, query, and generate XML documents using XSLT 3, XQuery, and XPath 3.1. The HE open-source version is bundled, but you can use the paid-for PE and EE versions of the Java library with this gem as well.
|
26
|
+
version: 0.4.0
|
27
|
+
description: |
|
28
|
+
Deprecated version of the Saxon XML and XSLT library wrapper.
|
29
|
+
|
30
|
+
The gem has been renamed saxon-rb. This gem depends on that gem. To continue to see updates, please replace saxon with saxon-rb in your Gemfiles.
|
141
31
|
|
142
|
-
|
32
|
+
This gem has a hard dependency on version #{Saxon::VERSION} of saxon-rb, but will never be updated.
|
143
33
|
email:
|
144
34
|
- matt@werkstatt.io
|
145
35
|
executables: []
|
146
36
|
extensions: []
|
147
37
|
extra_rdoc_files: []
|
148
38
|
files:
|
149
|
-
- ".gitignore"
|
150
|
-
- ".rspec"
|
151
|
-
- ".ruby-version"
|
152
|
-
- ".travis.yml"
|
153
|
-
- CODE_OF_CONDUCT.md
|
154
|
-
- Gemfile
|
155
39
|
- LICENSE.txt
|
156
|
-
- README.md
|
157
|
-
- Rakefile
|
158
|
-
- bin/console
|
159
|
-
- bin/setup
|
160
|
-
- lib/net/sf/saxon/Saxon-HE/9.9.1-2/Saxon-HE-9.9.1-2.jar
|
161
|
-
- lib/saxon.rb
|
162
|
-
- lib/saxon/axis_iterator.rb
|
163
|
-
- lib/saxon/configuration.rb
|
164
|
-
- lib/saxon/document_builder.rb
|
165
|
-
- lib/saxon/item_type.rb
|
166
|
-
- lib/saxon/jaxp.rb
|
167
|
-
- lib/saxon/loader.rb
|
168
|
-
- lib/saxon/occurrence_indicator.rb
|
169
|
-
- lib/saxon/parse_options.rb
|
170
|
-
- lib/saxon/processor.rb
|
171
|
-
- lib/saxon/qname.rb
|
172
|
-
- lib/saxon/s9api.rb
|
173
|
-
- lib/saxon/serializer.rb
|
174
|
-
- lib/saxon/source.rb
|
175
|
-
- lib/saxon/version.rb
|
176
|
-
- lib/saxon/xdm_atomic_value.rb
|
177
|
-
- lib/saxon/xdm_node.rb
|
178
|
-
- lib/saxon/xdm_value.rb
|
179
|
-
- lib/saxon/xpath.rb
|
180
|
-
- lib/saxon/xpath/compiler.rb
|
181
|
-
- lib/saxon/xpath/executable.rb
|
182
|
-
- lib/saxon/xpath/static_context.rb
|
183
|
-
- lib/saxon/xpath/variable_declaration.rb
|
184
|
-
- lib/saxon/xslt.rb
|
185
|
-
- lib/saxon/xslt/compiler.rb
|
186
|
-
- lib/saxon/xslt/evaluation_context.rb
|
187
|
-
- lib/saxon/xslt/executable.rb
|
188
|
-
- lib/saxon_jars.rb
|
189
40
|
- saxon.gemspec
|
190
41
|
homepage: https://github.com/fidothe/saxon-rb
|
191
42
|
licenses:
|
192
43
|
- MIT
|
193
44
|
metadata: {}
|
194
|
-
post_install_message:
|
45
|
+
post_install_message: saxon has been renamed to saxon-rb. Please rename in your Gemfile
|
46
|
+
or gemspec (that's all you need to do). This gem won't get any new updates.
|
195
47
|
rdoc_options: []
|
196
48
|
require_paths:
|
197
49
|
- lib
|
@@ -205,11 +57,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
205
57
|
- - ">="
|
206
58
|
- !ruby/object:Gem::Version
|
207
59
|
version: '0'
|
208
|
-
requirements:
|
209
|
-
- jar net.sf.saxon, Saxon-HE, 9.9.1-2
|
60
|
+
requirements: []
|
210
61
|
rubyforge_project:
|
211
62
|
rubygems_version: 2.7.9
|
212
63
|
signing_key:
|
213
64
|
specification_version: 4
|
214
|
-
summary: Saxon 9.9 for JRuby, with an idiomatic Ruby API
|
65
|
+
summary: Saxon 9.9 for JRuby, with an idiomatic Ruby API, now renamed to saxon-rb
|
215
66
|
test_files: []
|
data/.gitignore
DELETED
data/.rspec
DELETED
data/.ruby-version
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
jruby-9.2.6.0
|
data/.travis.yml
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
dist: trusty
|
2
|
-
sudo: false
|
3
|
-
language: ruby
|
4
|
-
rvm:
|
5
|
-
- jruby-9.1.17.0
|
6
|
-
- jruby-1.7.27
|
7
|
-
jdk:
|
8
|
-
- oraclejdk8
|
9
|
-
- openjdk7
|
10
|
-
before_install: gem install bundler -v 1.16.1
|
11
|
-
cache: bundler
|
12
|
-
env:
|
13
|
-
JDK_VERSION_FOR_CODECLIMATE: oraclejdk8
|
14
|
-
JRUBY_OPTS: "--debug"
|
15
|
-
before_script:
|
16
|
-
- if [ "$TRAVIS_JDK_VERSION" = "$JDK_VERSION_FOR_CODECLIMATE" ]; then curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter; chmod +x ./cc-test-reporter; ./cc-test-reporter before-build; fi
|
17
|
-
script:
|
18
|
-
- bundle exec rspec
|
19
|
-
- if [[ "$TRAVIS_PULL_REQUEST" = "false" && "$TRAVIS_JDK_VERSION" = "$JDK_VERSION_FOR_CODECLIMATE" ]]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT; fi
|
20
|
-
|
data/CODE_OF_CONDUCT.md
DELETED
@@ -1,74 +0,0 @@
|
|
1
|
-
# Contributor Covenant Code of Conduct
|
2
|
-
|
3
|
-
## Our Pledge
|
4
|
-
|
5
|
-
In the interest of fostering an open and welcoming environment, we as
|
6
|
-
contributors and maintainers pledge to making participation in our project and
|
7
|
-
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
-
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
-
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
-
orientation.
|
11
|
-
|
12
|
-
## Our Standards
|
13
|
-
|
14
|
-
Examples of behavior that contributes to creating a positive environment
|
15
|
-
include:
|
16
|
-
|
17
|
-
* Using welcoming and inclusive language
|
18
|
-
* Being respectful of differing viewpoints and experiences
|
19
|
-
* Gracefully accepting constructive criticism
|
20
|
-
* Focusing on what is best for the community
|
21
|
-
* Showing empathy towards other community members
|
22
|
-
|
23
|
-
Examples of unacceptable behavior by participants include:
|
24
|
-
|
25
|
-
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
-
advances
|
27
|
-
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
-
* Public or private harassment
|
29
|
-
* Publishing others' private information, such as a physical or electronic
|
30
|
-
address, without explicit permission
|
31
|
-
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
-
professional setting
|
33
|
-
|
34
|
-
## Our Responsibilities
|
35
|
-
|
36
|
-
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
-
behavior and are expected to take appropriate and fair corrective action in
|
38
|
-
response to any instances of unacceptable behavior.
|
39
|
-
|
40
|
-
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
-
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
-
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
-
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
-
threatening, offensive, or harmful.
|
45
|
-
|
46
|
-
## Scope
|
47
|
-
|
48
|
-
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
-
when an individual is representing the project or its community. Examples of
|
50
|
-
representing a project or community include using an official project e-mail
|
51
|
-
address, posting via an official social media account, or acting as an appointed
|
52
|
-
representative at an online or offline event. Representation of a project may be
|
53
|
-
further defined and clarified by project maintainers.
|
54
|
-
|
55
|
-
## Enforcement
|
56
|
-
|
57
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
-
reported by contacting the project team at matt@reprocessed.org. All
|
59
|
-
complaints will be reviewed and investigated and will result in a response that
|
60
|
-
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
-
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
-
Further details of specific enforcement policies may be posted separately.
|
63
|
-
|
64
|
-
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
-
faith may face temporary or permanent repercussions as determined by other
|
66
|
-
members of the project's leadership.
|
67
|
-
|
68
|
-
## Attribution
|
69
|
-
|
70
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
-
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
-
|
73
|
-
[homepage]: http://contributor-covenant.org
|
74
|
-
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
DELETED
data/README.md
DELETED
@@ -1,43 +0,0 @@
|
|
1
|
-
# Saxon
|
2
|
-
|
3
|
-
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/saxon`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
6
|
-
|
7
|
-
## Installation
|
8
|
-
|
9
|
-
Add this line to your application's Gemfile:
|
10
|
-
|
11
|
-
```ruby
|
12
|
-
gem 'saxon'
|
13
|
-
```
|
14
|
-
|
15
|
-
And then execute:
|
16
|
-
|
17
|
-
$ bundle
|
18
|
-
|
19
|
-
Or install it yourself as:
|
20
|
-
|
21
|
-
$ gem install saxon
|
22
|
-
|
23
|
-
## Usage
|
24
|
-
|
25
|
-
TODO: Write usage instructions here
|
26
|
-
|
27
|
-
## Development
|
28
|
-
|
29
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
-
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
-
|
33
|
-
## Contributing
|
34
|
-
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/saxon. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
|
-
|
37
|
-
## License
|
38
|
-
|
39
|
-
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
40
|
-
|
41
|
-
## Code of Conduct
|
42
|
-
|
43
|
-
Everyone interacting in the Saxon project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/saxon/blob/master/CODE_OF_CONDUCT.md).
|