-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from DILCISBoard/rel/2.2.0
REL: v2.2.0
- Loading branch information
Showing
45 changed files
with
1,323 additions
and
692 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,26 @@ | ||
--- | ||
title: Archived Versions of the DIP Specification | ||
--- | ||
Archived Versions of the DIP Specification | ||
============================================= | ||
# Archived Versions of the DIP Specification | ||
|
||
Latest | ||
------ | ||
[PDF Version 2.1.0](/pdf/eark-dip.pdf) 15-10-2021 | ||
## Latest | ||
|
||
[PDF Version 2.2.0](/pdf/eark-dip.pdf) 15-10-2021 | ||
|
||
## Archived Versions | ||
|
||
### 2.1.x | ||
|
||
- [PDF Version 2.1.0](v2_1/eark-dip-v2-1-0.pdf) 25-10-2021 | ||
|
||
Archived Versions | ||
----------------- | ||
### 2.0.x | ||
|
||
- [PDF Version 2.0.4](v2_0/eark-dip-v2-0-4.pdf) 12-06-2020 | ||
- [PDF Version 2.0.2](v2_0/eark-dip-v2-0-2.pdf) 28-10-2019 | ||
- [PDF Version 2.0.1](v2_0/eark-dip-v2-0-1.pdf) 09-09-2019 | ||
- [PDF Version 2.0.0](v2_0/eark-dip-v2-0-0.pdf) 31-05-2019 | ||
|
||
### 1.x | ||
|
||
- [PDF Final v1](v1/E-ARK Final Dip Specification (2017).pdf) 13-03-2017 | ||
- [PDF Draft v1](v1/E-ARK DIP Draft Specification (2015).pdf) 24-04-2015 |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/usr/bin/env bash | ||
echo "Generating GitHub pages site from markdown" | ||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
cd "$SCRIPT_DIR" || exit | ||
|
||
echo " - Cleaning up site directory and copying spec-publisher site..." | ||
git clean -f specification/ | ||
|
||
|
||
if [ -d _site ] | ||
then | ||
echo " - Removing old _site directory contents" | ||
rm -rf _site/* | ||
fi | ||
|
||
echo " - copying files to site directory..." | ||
# Copy spec-publisher artifacts to the site | ||
cp -rf spec-publisher/site/* spec-publisher/res/md/figs site/ | ||
# Copy remaining project collaterel to the site | ||
cp -rf profile archive examples specification/media site/ | ||
|
||
echo " - spec-publisher: generating requirement tables, appendices, etc." | ||
mvn package -f spec-publisher/pom.xml | ||
java -jar ./spec-publisher/target/mets-profile-processor-0.1.0-SNAPSHOT.jar -f ./specification.yaml -o doc/site profile/E-ARK-DIP-v2-2-0.xml | ||
|
||
echo " - MARKDOWN-PP: generating site page with TOC..." | ||
cd doc/site || exit | ||
bash "$SCRIPT_DIR/spec-publisher/scripts/create-venv.sh" | ||
command -v markdown-pp >/dev/null 2>&1 || { | ||
tmpdir=$(dirname "$(mktemp -u)") | ||
source "$tmpdir/.venv-markdown/bin/activate" | ||
} | ||
markdown-pp body.md -o body_toc.md | ||
|
||
echo " - MARKDOWN-PP: Processing postface markdown" | ||
cd "$SCRIPT_DIR/specification/postface/" || exit | ||
markdown-pp postface.md -o "$SCRIPT_DIR/doc/site/postface.md" -e tableofcontents | ||
|
||
echo " - MARKDOWN-PP: generating final site index markdown in site/index.md" | ||
cd "$SCRIPT_DIR/doc/site" || exit | ||
markdown-pp SITE.md -o ../../site/index.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
!INCLUDE "../../metadata.yaml" | ||
--- | ||
|
||
!INCLUDE "body.md" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
!INCLUDE "../../metadata.yaml" | ||
--- | ||
|
||
# {{ page.subtitle }} | ||
|
||
!INCLUDE "preface.md" | ||
|
||
# {{ page.title }} | ||
|
||
## {{ page.subtitle }} | ||
|
||
Version: {{ page.version }} | ||
|
||
Date: {{ page.date }} | ||
|
||
!INCLUDE "body_toc.md" | ||
|
||
!INCLUDE "postface.md" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.