File: map-loading.dot

package info (click to toggle)
altos 1.9.22-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 83,712 kB
  • sloc: ansic: 120,853; java: 42,921; makefile: 8,573; sh: 4,995; xml: 2,154; pascal: 2,008
file content (35 lines) | stat: -rw-r--r-- 1,232 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
digraph map_loading {
	edge [arrowsize=0.5; style="setlinewidth(2)"]
	node [style=filled; fontcolor=white; color=invis; shape=box; arrowsize=0.5; fontname="DejaVu Sans,sans-serif"; fontsize=12; height=0.2;];
	edge [decorate=true; fontname="DejaVu Sans,sans-serif"; fontsize=8];
	graph [fontname="DejaVu Sans,sans-serif"; fontsize=15; ]
	rankdir="TB";
	ranksep=0.5;
	nodesep=0.5;
	color=invis;
	fillcolor="#c0c0c0";
	fontcolor="white";

	app -> apache [label="AltOS Map URI"]
	apache -> app [label="Google Map tile"]

	apache -> cgi_script [label="AltOS Map URI"]
	cgi_script -> cache_manager [label="AltOS Tile Request"]

	cgi_script -> apache [label="Google Map tile"]

	cache_manager -> cgi_script [label="AltOS Tile Reply"]

	cache_manager -> disk_files [label="AltOS tile files" dir="both"]
	cache_manager -> google_maps [label="Google Map URI"]

	google_maps -> cache_manager [label="Google Map tile"]

	app [color="#885931" label="Application"]
	apache [color="#d12127" label="Apache Web Server"]
	cgi_script [color="#551a8b" label="AltOS Map CGI Script"]
	cache_manager [color="#c75b1c" label="AltOS Map Cache Manager"]
	disk_files [color="#4f81bd" label="File System"]
	google_maps [color="#4cbb44" label="Google Maps"]
}