From Fedora Project Wiki

Revision as of 21:20, 25 June 2010 by Jjmcd (talk | contribs) (Created page with 'Diagram of typical announcement workflow: <pre> digraph Docs_Project_workflow { size="7.5,5.5"; rankdir="LR"; label="Typical Announcement Workflow"; fontname="Liberation ...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Diagram of typical announcement workflow:

digraph Docs_Project_workflow
{
  size="7.5,5.5";
  rankdir="LR";
  label="Typical Announcement Workflow";
  fontname="Liberation Sans Bold";
  fontsize=18;
  node [ style="filled" fillcolor="gray" ];
  wiki [ shape=record style="filled" fillcolor="lightcyan" fontsize=18 ];
  git [ shape=record style="filled" fillcolor="gray" fontsize=18 ];
  "Package\nDatabase" [ shape=record style="filled" fillcolor="gray" ];
  "docs.fp.o" [ shape=record style="filled" fillcolor="gray" ];
  "Collect\nExpert Input" [ style="filled" fillcolor="lemonchiffon" ];
  "write\nWiki" [ style="filled" fillcolor="lemonchiffon" ];
  "Review/Edit\nWiki" [ style="filled" fillcolor="lemonchiffon" ];
  "Collect\nExpert Input" -> wiki;
  "Collect\nExpert Input" -> "write\nWiki";
  "write\nWiki" -> wiki;
  "Review/Edit\nWiki" -> wiki;
  wiki -> "Review/Edit\nWiki";
  "Collect\nExpert Input" -> "write XML" [color="gray"];
  wiki -> "write XML" [color="gray"];
  "write XML" -> git [color="gray"];
  git -> "Review/Edit\nXML" [color="gray"];
  "Review/Edit\nXML" -> git [color="gray"];
  git -> "Publish" [color="gray"];
  git -> "Package\nDocument" [color="gray"];
  "Package\nDocument" -> "Push to\nFedora" [color="gray"];
  "Push to\nFedora" -> "Package\nDatabase" [color="gray"];
  "Publish" -> "docs.fp.o" [color="gray"];
}