Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions .github/workflows/gitlab-trigger.yml

This file was deleted.

30 changes: 16 additions & 14 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
exclude: docs_src/media/adhesive_spec.pdf

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.5
hooks:
- id: ruff-format
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: mixed-line-ending
args: [--fix=lf]
- id: check-yaml
- id: check-added-large-files
exclude: docs_src/media/adhesive_spec.pdf

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.5
hooks:
- id: ruff-format
12 changes: 6 additions & 6 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Copyright 2025 PRUSA RESEARCH A.S.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
Copyright 2025 PRUSA RESEARCH A.S.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
52 changes: 26 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
# OpenPrintTag
This repository contains specification, documentation and utility scripts for the [OpenPrintTag](https://openprinttag.org) format.
**This is a "raw" repository, you can access the compiled documentation on [specs.openprinttag.org](https://specs.openprinttag.org)**
(or use generate_docs.sh to generate a website into the docs folder)
## Directory structure
* `data`: Machine-readable specification data (field & enum definitions, ...)
* `docs_src`: Source code for the [specs.openprinttag.org](https://specs.openprinttag.org) website
* `tests`: Tests
* `utils`: Reference implementation for the format in Python
## Generating documentation
To generate documentation (to the `docs` directory), run:
```python
pip3 install -r requirements.txt
sh generate_docs.sh
```
Then, to view it, you can:
```
cd docs
python3 -m http.server
```
and open your browser on `127.0.0.1:8000`
# OpenPrintTag
This repository contains specification, documentation and utility scripts for the [OpenPrintTag](https://openprinttag.org) format.

**This is a "raw" repository, you can access the compiled documentation on [specs.openprinttag.org](https://specs.openprinttag.org)**

(or use generate_docs.sh to generate a website into the docs folder)

## Directory structure
* `data`: Machine-readable specification data (field & enum definitions, ...)
* `docs_src`: Source code for the [specs.openprinttag.org](https://specs.openprinttag.org) website
* `tests`: Tests
* `utils`: Reference implementation for the format in Python

## Generating documentation
To generate documentation (to the `docs` directory), run:
```python
pip3 install -r requirements.txt
sh generate_docs.sh
```

Then, to view it, you can:
```
cd docs
python3 -m http.server
```
and open your browser on `127.0.0.1:8000`
Loading
Loading