https://github.com/shoobx/jawe
Enhydra JaWE (a.k.a. Together Workflow Editor)
https://github.com/shoobx/jawe
wfmc workflow-tool xpdl
Last synced: 3 months ago
JSON representation
Enhydra JaWE (a.k.a. Together Workflow Editor)
- Host: GitHub
- URL: https://github.com/shoobx/jawe
- Owner: Shoobx
- Created: 2021-11-22T16:58:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2026-02-11T16:52:13.000Z (4 months ago)
- Last Synced: 2026-02-12T01:19:34.585Z (4 months ago)
- Topics: wfmc, workflow-tool, xpdl
- Language: XSLT
- Homepage:
- Size: 113 MB
- Stars: 3
- Watchers: 7
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- Authors: authors-transform.txt
Awesome Lists containing this project
README
==============================================
Enhydra JaWE (a.k.a. Together Workflow Editor)
==============================================
Enhydra JaWE is an Open Source workflow editor that operates on XPDL files.
This repository is a git mirror of the Subversion repository on
SourceForge: https://sourceforge.net/projects/jawe/
This mirror has been created with the following sequence of commands::
echo "sasaboy = Sasa Bojanic " > authors-transform.txt
git svn init --trunk=trunk --tags=tags --tags=tags/releases --branches=branches \
svn://svn.code.sf.net/p/jawe/code/
git config svn.authorsfile authors-transform.txt
git svn fetch
git remote add origin git@github.com:Shoobx/JaWE.git
# Create release branches pointing to the SVN ones
git branch -r | grep origin/twe | sed -e 's#.*/##' | while read br; do echo git switch $br; done
# Create tags
git for-each-ref --format="%(refname:short) %(objectname)" refs/remotes/origin/tags \
| cut -d / -f 3- | while read ref; do git tag $ref; done
git tag -d releases
git push origin --all
git push origin --tags