Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • cubicweb cubicweb
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 197
    • Issues 197
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 15
    • Merge requests 15
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Packages & Registries
    • Packages & Registries
    • Container Registry
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • cubicweb
  • cubicwebcubicweb
  • Issues
  • #3

Closed
Open
Created May 12, 2020 by Laurent Peuch@bramMaintainer

Integrate dependencies graph into the documentation

It's a quite issue to avoid losing this work while it idles on my computer.

Here is the graph:

dependencies

And here is the graphviz code:

digraph "packages" {
charset="utf-8"
rankdir=BT
"yams" [shape="box"];
"rql" [shape="box"];
"logilab-common" [shape="box"];
"logilab-database" [shape="box"];
"cubicweb" [shape="box"];
"logilab-mtconverter" [shape="box"];
"logilab-constraint" [shape="box"];

"yams" -> "logilab-common" [arrowhead="open", arrowtail="none"];
"yams" -> "logilab-database" [arrowhead="open", arrowtail="none"];

"rql" -> "logilab-common" [arrowhead="open", arrowtail="none"];
"rql" -> "logilab-database" [arrowhead="open", arrowtail="none"];
"rql" -> "logilab-constraint" [arrowhead="open", arrowtail="none"];

"logilab-database" -> "logilab-common" [arrowhead="open", arrowtail="none"];

"cubicweb" -> "logilab-common" [arrowhead="open", arrowtail="none"];
"cubicweb" -> "logilab-database" [arrowhead="open", arrowtail="none"];
"cubicweb" -> "logilab-mtconverter" [arrowhead="open", arrowtail="none"];
"cubicweb" -> "rql" [arrowhead="open", arrowtail="none"];
"cubicweb" -> "yams" [arrowhead="open", arrowtail="none"];

"logilab-mtconverter" -> "logilab-common" [arrowhead="open", arrowtail="none"];

"logilab-constraint" -> "logilab-common" [arrowhead="open", arrowtail="none"];
}

And to build it:

dot -Tpng dependencies.dot > dependencies.png

This probably needs to end up in the documentation somewhere.

Edited May 12, 2020 by Laurent Peuch
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Assignee
Assign to
Time tracking