Skip to content

Commit

Permalink
Try uml diagram one more time
Browse files Browse the repository at this point in the history
  • Loading branch information
Xarthisius committed Feb 20, 2018
1 parent d1d688d commit 381bd4e
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
build:
image: latest

python:
version: 2
3 changes: 2 additions & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = ['sphinx.ext.intersphinx',
'sphinx.ext.githubpages']
'sphinx.ext.githubpages',
'sphinxcontrib.plantuml']

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
Expand Down
19 changes: 19 additions & 0 deletions mockups/tale-publishing/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -197,3 +197,22 @@ TODOS
- Deal with the Globus side of this
- Find out how much we can instrument Girder to get provenance information for which script read which files


.. uml::

@startuml diag
User -> Dashboard: Clicks "Publish"
activate Dashboard
Dashboard -> Backend: req saveTale(id)
activate Backend
loop each item
Backend -> Repository: createObject
Repository --> Backend: objectCreated
end
Backend -> Repository: req createPackage
Repository --> Backend: resp packageCreated
Backend --> Dashboard: resp taleSaved(id)
deactivate Backend
Dashboard --> User: Updates UI
deactivate Dashboard
@enduml
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sphinxcontrib-plantuml

0 comments on commit 381bd4e

Please sign in to comment.