├── .gitignore ├── Makefile ├── README.md ├── active_record.dot ├── arch-2.dot ├── arch-3.dot ├── arch-4.dot ├── arch.dot ├── bookmarks.dot ├── branch.dot ├── cgi.dot ├── desktop-app-arch.dot ├── exporter.dot ├── geo-before.dot ├── geo-nginx-cn.dot ├── geo-nginx.dot ├── geo_after.dot ├── gis-stack.dot ├── huawei-mbaas.dot ├── jigsaw-microservice-2.dot ├── jigsaw-microservice.dot ├── logos └── deegree_logo.gif ├── merge.dot ├── neighbourhood.dot ├── nepsd-arch.dot ├── nepsd.dot ├── openlayers-vector.dot ├── rebase.dot ├── reporting-story-694.dot ├── search-location.dot ├── separation-of-front-back-end.dot ├── seq.dot ├── spring-core.dot ├── tdd.dot └── test.dot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/README.md -------------------------------------------------------------------------------- /active_record.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/active_record.dot -------------------------------------------------------------------------------- /arch-2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/arch-2.dot -------------------------------------------------------------------------------- /arch-3.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/arch-3.dot -------------------------------------------------------------------------------- /arch-4.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/arch-4.dot -------------------------------------------------------------------------------- /arch.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/arch.dot -------------------------------------------------------------------------------- /bookmarks.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/bookmarks.dot -------------------------------------------------------------------------------- /branch.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/branch.dot -------------------------------------------------------------------------------- /cgi.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/cgi.dot -------------------------------------------------------------------------------- /desktop-app-arch.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/desktop-app-arch.dot -------------------------------------------------------------------------------- /exporter.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/exporter.dot -------------------------------------------------------------------------------- /geo-before.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/geo-before.dot -------------------------------------------------------------------------------- /geo-nginx-cn.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/geo-nginx-cn.dot -------------------------------------------------------------------------------- /geo-nginx.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/geo-nginx.dot -------------------------------------------------------------------------------- /geo_after.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/geo_after.dot -------------------------------------------------------------------------------- /gis-stack.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/gis-stack.dot -------------------------------------------------------------------------------- /huawei-mbaas.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/huawei-mbaas.dot -------------------------------------------------------------------------------- /jigsaw-microservice-2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/jigsaw-microservice-2.dot -------------------------------------------------------------------------------- /jigsaw-microservice.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/jigsaw-microservice.dot -------------------------------------------------------------------------------- /logos/deegree_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/logos/deegree_logo.gif -------------------------------------------------------------------------------- /merge.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/merge.dot -------------------------------------------------------------------------------- /neighbourhood.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/neighbourhood.dot -------------------------------------------------------------------------------- /nepsd-arch.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/nepsd-arch.dot -------------------------------------------------------------------------------- /nepsd.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/nepsd.dot -------------------------------------------------------------------------------- /openlayers-vector.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/openlayers-vector.dot -------------------------------------------------------------------------------- /rebase.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/rebase.dot -------------------------------------------------------------------------------- /reporting-story-694.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/reporting-story-694.dot -------------------------------------------------------------------------------- /search-location.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/search-location.dot -------------------------------------------------------------------------------- /separation-of-front-back-end.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/separation-of-front-back-end.dot -------------------------------------------------------------------------------- /seq.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/seq.dot -------------------------------------------------------------------------------- /spring-core.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/spring-core.dot -------------------------------------------------------------------------------- /tdd.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/tdd.dot -------------------------------------------------------------------------------- /test.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abruzzi/graphviz-scripts/HEAD/test.dot --------------------------------------------------------------------------------