diff options
| author | Michael Peter Christen <mc@yacy.net> | 2014-04-03 14:51:19 +0200 |
|---|---|---|
| committer | Michael Peter Christen <mc@yacy.net> | 2014-04-03 14:51:19 +0200 |
| commit | a6bb9be97e2f7f12a23a8a52e2c03045a5a7c628 (patch) | |
| tree | 462e54a52a5e0db368c00632feb1636e0eaf25d4 /htroot/env/hypertree.css | |
| parent | 74ab0945872cf301e6106d860505d24505a8ba87 (diff) | |
- added d3.js for visualizations using embedded svg
- added a servlet api/linkstructure.json which generates a link graph
information in json
- added a javascript link graph renderer hypertree.js using d3 and the
new servlet linkstructure.json
- embedded the new link graph in the crawler monitor and the host
browser
Diffstat (limited to 'htroot/env/hypertree.css')
| -rw-r--r-- | htroot/env/hypertree.css | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/htroot/env/hypertree.css b/htroot/env/hypertree.css new file mode 100644 index 000000000..74378461a --- /dev/null +++ b/htroot/env/hypertree.css @@ -0,0 +1,37 @@ + +#Outbound { + fill: lightblue; +} +#Dead { + fill: red; +} +#InboundOk { + fill: green; +} +.hypertree { + border: solid; +} +.hypertree-link { + fill: none; + stroke-width: 1.2px; +} +.hypertree-link.Outbound { + stroke: lightblue; +} +.hypertree-link.Dead { + stroke: red; + stroke-dasharray: 0,2 1; +} +.hypertree-link.InboundOk { + stroke: green; +} +circle { + fill: lightgreen; + stroke: darkgreen; + stroke-width: 1.5px; +} +text { + font: 9px sans-serif; + pointer-events: none; + text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff; +} |
