Skip to content

Commit

Permalink
[TASK] Remove graphviz support (#384)
Browse files Browse the repository at this point in the history
It was never really adopted and will not work anymore in the new rendering. The uml graphs can be used instead
  • Loading branch information
linawolf authored Jan 30, 2024
1 parent 6c40978 commit 05dca88
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 549 deletions.
65 changes: 0 additions & 65 deletions Documentation/WritingReST/CheatSheet.rst
Original file line number Diff line number Diff line change
Expand Up @@ -710,71 +710,6 @@ Source:
echo $null >> public/FIRST_INSTALL
:ref:`Graphs <graphviz-graphs>`
===============================

**How it looks:**

.. graphviz::

graph {
user [
shape=plaintext;
width=4;
label="User";
style="";
]
view [
shape=box;
width=4;
label=<<B>View</B><BR/>Displaying the data>;
]
controller [
shape=box;
width=4;
label=<<B>Controller</B><BR/>Control of functionality>;
]
model [
shape=box;
width=4;
label=<<B>Model</B><BR/>Domain model and domain logic>;
]
user -- view -- controller -- model;
}

Source:

.. code-block:: rst
.. graphviz::
graph {
user [
shape=plaintext;
width=4;
label="User";
style="";
]
view [
shape=box;
width=4;
label=<<B>View</B><BR/>Displaying the data>;
]
controller [
shape=box;
width=4;
label=<<B>Controller</B><BR/>Control of functionality>;
]
model [
shape=box;
width=4;
label=<<B>Model</B><BR/>Domain model and domain logic>;
]
user -- view -- controller -- model;
}
:ref:`Diagrams <plantuml-diagrams>`
===================================

Expand Down
Loading

0 comments on commit 05dca88

Please sign in to comment.