Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scdh/oxbytei
oXygen framework configured by TEI
https://github.com/scdh/oxbytei
annotations digital-edition digital-humanities editor lsp oxygenxml oxygenxml-framework tei tei-xml
Last synced: 1 day ago
JSON representation
oXygen framework configured by TEI
- Host: GitHub
- URL: https://github.com/scdh/oxbytei
- Owner: SCDH
- License: mit
- Created: 2021-12-22T21:27:43.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-22T12:21:29.000Z (3 months ago)
- Last Synced: 2024-08-23T13:04:44.911Z (3 months ago)
- Topics: annotations, digital-edition, digital-humanities, editor, lsp, oxygenxml, oxygenxml-framework, tei, tei-xml
- Language: Java
- Homepage:
- Size: 1.04 MB
- Stars: 8
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changeLog.md
- License: LICENSE
Awesome Lists containing this project
README
# oXbytei #
![release](https://github.com/scdh/oxbytei/actions/workflows/release.yml/badge.svg)
![tests](https://github.com/scdh/oxbytei/actions/workflows/test-main.yml/badge.svg)## tl;dr ##
Install from
```
https://scdh.github.io/oxbytei/descriptor.xml
```STATE: in production
## An oXygen framework configured by TEI ##
oXbytei [ɔx bʌtaj] (greco-english tongue and french ears) is a generic
[oXygen](https://www.oxygenxml.com/) framework for editing
[TEI](https://tei-c.org/). It offers high-level functions that
facilitate everyday work on TEI documents. Its name originates from
the idea, to use as much information as we can from the TEI header to
configure the framework's actions. But since the header's information
is not sufficient for most editing actions, oXbytei also introduces a
configuration file to oXygen frameworks, which makes it the next
generation framework. You can read more about the design principles in
the [Wiki](https://github.com/SCDH/oxbytei/wiki).## Features / Functions #
- **Critical apparatus**: According to what is stated in
[``](https://www.tei-c.org/release/doc/tei-p5-doc/de/html/ref-variantEncoding.html)
a new apparatus entry is generated from the _user selection_ and
inserted into the document. The selected text goes into
``. Supported variant encodings: **all** but external
location-referenced. [`@wit`](https://www.tei-c.org/release/doc/tei-p5-doc/de/html/ref-att.witnessed.html)
can be selected based on the witnesses supplied via
[`sourceDesc/listWit//witness`](https://www.tei-c.org/release/doc/tei-p5-doc/de/html/TC.html#TCAPWL).
- **Suggestions**: A flexible and extensible plugin system generates
suggestions for attribute values etc. in a context-aware
manner. E.g. the framework by default sets up suggestions for `@ref`
of ``, `` or `@corresp` of `` by
evaluating [prefix
definitions](https://www.tei-c.org/release/doc/tei-p5-doc/de/html/ref-listPrefixDef.html)
in the document header. The plugin system is flexible enough to add
plugins for querying RESTful webservices. Available plugins range
from generating suggestions via XSLT, XQuery, XPath, from CSV, from
SPARQL over local files or a remote endpoint, etc.
- **Configurable user dialogs**: Simply declare by configuration which
type of dialog you want to have for a specific editing context,
e.g. a multiple select dialog for `@wit` on ``. Dialogs
are plugins that implement an interface for communicating with
plugins that provide suggestions for content completion. There're
combo boxes, editable combo boxes, multi select dialogs based on
check boxes etc.
- **Attribute editor**: These configurable dialogs and suggetions are
used in a generic schema-aware attribute editor.
- **Language**: Set `@xml:lang` by selecting a language registered in
the header by
[`langUsage`](https://www.tei-c.org/release/doc/tei-p5-doc/de/html/ref-langUsage.html)
- **Different markup styles**: When annotating persons, places
etc. you can choose between markup styles: E.g. in *aggregative*
style (default) the user selection is wrapped into an element if and
only if the selection's start and end point are on the same parent
node. Otherwise, each text node between is wrapped and the elements
are linked by [`@next` and
`@prev`](https://www.tei-c.org/release/doc/tei-p5-doc/de/html/SA.html#SAAG). Alternative
styles include
[`att.spanning`](https://www.tei-c.org/release/doc/tei-p5-doc/de/html/ref-att.spanning.html)
and anchor-based markup.
- **Annotations**: Surround the _user selection_ with empty ``
elements carrying unique IDs and then insert a
[``](https://www.tei-c.org/release/doc/tei-p5-doc/de/html/AI.html#AISP)
referencing the anchors somewhere else in the document. Also select
`span/@ana` from `` elements in the document
(default). Other sources/references for `@ana` can be configured.
- **Navigation in anchor-based markup**: a) Find annotations and
apparatus entries for the current position; b) highlight (select)
the span of text referenced by an annotation or apparatus entry.
- **Multiple level inheritance**: Instead of an `oxbytei.framework`
file, oXbytei uses an [extension
script](https://www.oxygenxml.com/doc/versions/23.1/ug-editor/topics/framework-customization-script.html)
as introduced in oXygen 23.1. This makes it possible to inherit from
base frameworks on [multiple
levels](https://www.youtube.com/watch?v=e8NwqN16p18&t=13m24s). You're
able to write your own framework on top of oXbytei, which operates
on top of TEI P5.
- **Powerful author operations**: The Java code base defines some
powerful author operations, that you can re-use for your own
actions.On the road map:
- a plugin for getting content completion suggestions from RDF
endpoints
- editor operations for generating RDF/OWL based annotations (see
branch `annotation-rdf`)
- **Melt and cristallize anchors**: The anchors inserted for your
double end-point attached apparatus, for your annotations or for
other markup, will pollute your edited text. Melting is the process
of joining anchors, which are direct siblings, into one anchor or
even integrating the ID into another tag. Cristallizing is the
process of giving a referring element back its own anchors, after
there was a melting. This is needed when a reference point to the
edited text has to be moved.
- exploit `` etc.
- **Index**Read more in the [**Wiki**](https://github.com/scdh/oxbytei/wiki).
You should also have a look at
[oXbytao](https://github.com/scdh/oxbytao), which might already extend
oXbytei to your project-specific needs.## Why to try ##
Novice oXygen users: You want to customize a bit, e.g. provide a
select box for an attribute like `rdg/@wit` and add some CSS. However,
you don't want to invest into framework customization but stay with X
technologies like XQuery or XSLT.Then the configurable plugin system of oXbytei will give you what you
need and [oXbytao](https://github.com/scdh/oxbytao) will offer you
simple CSS customization on a project/user basis.Experienced users: Are you tired of framework development, where you
define tons of author actions for setting attribute values and where
you have to hard-code content into `${ask(...)}` or write nested
`${ask(...${xpath_eval(...)}...}` which are so complicated that you
don't understand them any more on the next day? Or, are you sick of
coding form components with hard-coded content or complex XPath
expressions in them into a flavoured CSS?Then you should give oXbytei a try: It lets you generate the values
for selection for a specific editing context like `rdg/@wit` with a
plugin that e.g. evaluates one of your XQuery scripts. And it lets you
declare which UI form (free type, single select, multiple select) you
want to have for an editing context, e.g. multiple select for
`rdg/@wit`. In the config file you can just tie the generation of
selection options and the appropriate UI form together for a specific
editing context. oXbytei's design is all about separation of concerns
and consistent interfaces.## Package ##
### Requirements ###
oXbytei requires oXygen >= 23.1, because it makes use of an [extension
script](https://www.oxygenxml.com/doc/versions/23.1/ug-editor/topics/framework-customization-script.html)
for framework configuration. With extension scripts you gain multiple
level inheritance and transparent updates, i.e. updates on lower level
frameworks can be installed without the need to update the stack of
frameworks based on it.### Installation ###
The framework can be installed with <oXygen/>'s installation and
update mechanism. Therefore, the following URL has to be entered into
the form *Show addons from:* of the dialogue box from ***Help** ->
**Install new addons**...*.[https://scdh.github.io/oxbytei/descriptor.xml](https://scdh.github.io/oxbytei/descriptor.xml)
Note: The framework is not signed with a key. You can simply ignore
the warning, which oXygen throws during the installation process.![Dialog "Install new addons"](images/install.png)
As an alternative, the framework can be packaged locally for
installation or it can be installed for hacking.#### Packaging locally ####
Packaging is done with [`maven`](https://maven.apache.org/).
```{shell}
mvn generate-sources
mvn package
```This will create a file named `oxbytei--package.zip` in the
`target` folder. This zip-File is the same as the one distributed
under the above mentioned URL.In order to use oXbytei with older versions of oXygen, you can
generate an old-school dot-framework file from the extension script
using the *Compile Framework Extension script* as described in the
[documentation](https://www.oxygenxml.com/doc/versions/23.1/ug-editor/topics/framework-customization-script.html)
and then use local packaging.#### Hacking / Development ####
Installing the framework as an <oXygen/> package will make it
read-only. For hacking on it's code you can install it by registering
the path to the cloned repository in <oXygen/>'s settings.- 1) Clone this repository into a subfolder of an <oXygen/>
project, e.g. `oxbytei`. (It may also be sym-linked there.)- 2) Start <oXygen/> and select `Options` -> `Preferences` from the
menu. Expand `Document Type Association` on the left and select
`Locations [P]` under it. Click `Add` to add a new additional
framework directory. Enter `${pdu}/oxbytei` as directory and click
`OK`. (Note: `${pdu}` is an [editor
variable](https://www.oxygenxml.com/doc/versions/22.1/ug-editor/topics/editor-variables.html)
and points to the root folder of the current project.)- 3) Run maven to get dependencies
```{shell}
mvn generate-sources
mvn package
```- 4) Create symbolic links for *all* the jar files from the folder
`target/lib` to the folder `frameworks/oxbytei`:```{shell}
cd frameworks/oxbytei
ln -s ../../target/lib/teilsp.jar .
ln -s ../../target/lib/oxbytei-core.jar .
ln -s ../../target/lib/slf4j-api.jar .
...
```- 5) In your project's root folder (aka `${pd}`, see above), create a
symbolic link to oXybytei's `frameworks/oxbytei` folder.```{shell}
cd
ln -s /frameworks/oxbytei oxbytei
```- 6) Close and restart <oXygen/>. The framework is now present as an
extension to the default TEI P5 framework.Note for Windows (no symbolic links) users: Clone the framework into
your project folder in step 1. Then use
`{pd}/oxbytei/frameworks/oxbytei` in step 2. You have to copy all the
jar files from step 4. You can skip step 5 then. But you will have to
copy oxbytei.jar every time you recompile the code.#### Logging ####
Getting logs may be the key to solving problems during development or
configuration. oXbytei uses slf4j as a logging tool and oXygen ships
with log4j, which slf4j passes its messages to. Simply running oXygen
from the commandline (instead of clicking the desktop icon) may help,
because you get the log of some error messages. To get the full logs,
one has to [turn on logging in
oXygen](https://www.oxygenxml.com/doc/versions/23.0/ug-editor/topics/problem-report-submitted-on-technical-support-form.html)
by putting a log4j config file into the application folder.### Regression Tests ###
Besides Java unit tests there are regression tests based on
[`XSpec`](https://github.com/xspec/xspec) in `test/xspec`. The tests
can easily be run with maven from the root directory of the
repository:```{shell}
mvn test
```Maven will install all required packages for running the tests,
e.g. `XSpec` and `Saxon-HE`. A detailed test report can be viewed with
the browser in `target/xspec-reports/index.html`.Note, that the tests need intermediate files to be generated in mavens
`generate-resources` phase. If you want to run the tests using saxon,
have a look at the pom-file to see what's needed.### Releasing ###
Releases of installable packages will be created with github actions
on tags with a name matching the pattern
`[0-9]+\.[0-9]+\.[0-9]+(-.*)?`,
i.e. `..[-]`. But only tags matching the
pattern `[0-9]+\.[0-9]+\.[0-9]+` will result in an update of the
descriptor file.--So, releases with a suffix are considered kind of
beta and will only occur in the tag's release bundle.To produce a release:
- first push the branch to be released
- then tag it with the tag name matching the above patternThis will produce a release on [releases/tag/](releases/tag)
and update the [descriptor
file](https://scdh.github.io/oxbytei/descriptor.xml).NOTE: Git release tags are the single source of truth for release
numbers and release triggers. There is no version information in the
pom file. A default version number is contained in
`.mvn/maven.config`, which should be kept up to date. However, it is
overridden in the CI/CD pipelines by the release tag.## Design principles ##
- Installation and updating must be simple, i.e. no additional tools
and compilers required.- Keep things flexible through configuration.
- The default configuration must be reasonable.
### Design Principles regarding the Java code base ###
- Keep the Java code base that depends on oXygen as small as possible
und put it in the namespace `de.wwu.scdh.oxbytei`!- Code for user interaction also belongs to here.
- Offer content completion in text mode *and* in author mode.
- Source out as much business logic as possible to the namespace
`de.wwu.scdh.teilsp`!- Keep things extensible.
- Use plugins based on Java's SPI to provide suggestions for content
completion.- No user interaction allowed in such plugins, but their
interfaces distinguish between intialization phase and query
phase, so that user interaction can be done in oXbytei.- Do not hardcode assumptions about TEI usage – and not about
whether this XML dialect is used at all either – into Java
classes.- Exception: Plugins
- Put all such assumptions into the configuration file.
### Design principles regarding other oXygen framework components ###
- Offer recursively defined author mode actions.
- Reason: This allows atomization of editing actions. So frameworks
deriving (based on) oXbytei can have a minimal codebase for
overriding single editing atoms.- Get feedback: Are they accepted by the users?
## Vision
`de.wwu.scdh.teilsp` contains code which is not specific to the
oXygen editor. It serves as a layer of abstraction and can be plugged
into other editors, too. It's intended to be the germ of a TEI
[LSP](https://langserver.org/) implementation based on Lemminx and
will be sourced out to it's own repository in the future.It provides the interfaces for plugins and the plugin loader, which
evaluates the current editing context for loading and initializing
plugins. So plugins can be developed for this layer of abstraction.## Plugins ##
oXbytei makes use of Java's SPI for loading plugins. There are
different plugin interfaces, for several functions. Configurable
plugins are initialized with arguments from the configuration file and
with the current editing context, where the arguments can be declared
specifically for an editing context.- `de.wwu.scdh.teilsp.services.extensions.ILabelledEntriesProvider` is
an interface for plugins that collect content completion suggestions
and present them as values with human readable labels. E.g. plugins
for linking persons where each person is a mapped to unique ID
(maybe from a local or global norm file) and where its name is
presented as a human readable label. There are plugins for accessing
XML data by XPath expressions or by XQuery. There is also a plugin
for declaring values and labels in the configuration file.- `de.wwu.scdh.teilsp.ui.ISelctionDialog` is an interface for UI
dialogs. There are plugins for free typing and for selecting from
content completion suggestions provided as labelled entries (see
above) with combo boxes (single selection) or check boxes (multiple
selection) etc.# License #
MIT
## Included Software and other Material ##
The included ![languageicon](frameworks/oxbytei/images/lang-24.png)
icon was desigend by Onur Mustak Cobanli an is distributed on
[http://languageicon.org/](http://languageicon.org/) by under a CC
licence with Relax-Attribution term.