dot

Javascript onkeypress delete or dot

Is there any way to find out if the user pressed the delete key or dot? It has the same keycode in FireFox. ...

What is the meaning of "..::." in C#?

I saw this signature on the ListView class: public ListView..::.ListViewItemCollection Items { get; } When I saw that, "What?!" I searched "dot dot colon colon dot" and "..::." on Google with no result. ...

How do you read dot notation in JavaScript?

For the sake of an example, is this statement window.Number.constructor.prototype.constructor(); read like a path? C:\Users\Vista\Documents\Work\text.txt From left to right window:\Number\constructor\prototype\constructor() where window is the root object, Number is an object inside window, constructor is an object inside Number...

MySQL: dot (".") in database name

Hello, does MySQL allows to create database which has dot (".") in its name? I'm using MySQl 5.1.22. Thanks ...

Drawing component diagrams in TinyUML

Hi Folks, I am working on extending a small application that uses the 'dot' tool to draw UML class and state diagrams, to implement component diagrams (I am running into a lot of problems accommodating the UML 2.x notation for the same). I intend to display the interfaces that a particular component requires and provides through the ...

GraphViz edge labels

Hi... I'm trying to draw a graph of the dependencies between C header files using graphviz. Basically, what I'm doing is log all the #include that appear and the condition (#if conditions I mean). If a file includes another one, it becomes its father in the graph and the potential condition is the edge label. I obtain a pretty large g...

How can I draw automatic graphs using dot in Python on a Mac?

I am producing graphs in a Python program, and now I need to visualize them. I am using Tkinter as GUI to visualize all the other data, and I would like to have a small subwindow inside with the graph of the data. At the moment I have the data being represented in a .dot file. And then I keep graphviz open, which shows the graph. But th...

Haskell: difference between . (dot) and $ (dollar sign)

Can anybody explain what the difference is in Haskell between the dot (.), and the dollar sign ($). As I understand it, they are both syntactic sugar for not needing to use parentheses. ...

How do I run "dot" as a command from Python?

I am using Python on Mac OSX Leopard. I am trying to run the program 'dot' (part of Graphviz) from Python: # -*- coding: utf-8 -*- import os print os.environ['PATH'] print os.system("ls >> a.txt") print os.system("dot -o9.png -Tpng ./6.dot") The command "ls" is there just to make sure that python is in the correct directory. It is. ...

Does the dot Directed Graph allow for subgraphs with a different rankdir?

Using the dot directed graph language, is it possible to create subgraphs with a different rankdir? I tried the following, which didn't work. Both graphs were left to right, despite the presence of rankdir="TB" in the subgraph. digraph g { rankdir="LR"; LEFT->RIGHT; clusterrank="local"; subgraph cluster1 { rankdir="TB"; ...

Need help with overlapping records using graphviz and neato

I am building a dot file to represent computer hardware and the physical connections to a network switch and displays. I have it looking ok when processed by the dot program but I think I really want it processed by neato to create a more "free form" picture as it starts to grom. Right now when I run my large file with neato, everythin...

Controlling Layout of Graphviz Graphs

I have a number of relatively simple (auto-generated) graphs in graphviz dot format. These show the path through a state machine, but dot has a slightly confusing habit of deciding that two nodes must be on the same rank when I would like the graph to be in state order. I've tried a lot of settings (including the :n and :s and the weig...

How to draw hypergraphs?

I've searched for a long time a program that could draw hypergraphs, I've onl found the (marvelous) dot program on linux that can draw graphs. Anyone knows an equvalent for hypergraphs? ...

[graphviz/dot] size of node with shape=circle

hi guys, i'm trying to set the size of the nodes this way: controller[shape=circle,width=.5,label="Controller",style=filled,fillcolor="#8EC13A"]; But all three nodes are with different size. How can i set fixed size? ...

Getting the unsaved dot on a Swing Mac OSX app with quaqua LAF

I am trying to make it so my app shows the unsaved dot in my swing windows when running on Mac with quaqua LAF. When I say unsaved dot, I mean in mac apps when you modify something, the red dot in the upper left changes from an empty red circle, to a circle that is mostly filled in with a darker red. Is there some flag I can set to ma...

How do I set the resolution when converting dot files (graphviz) to images?

I tried $ dot -Tpng rel_graph.gv > rel_graph.png but the resulting image has a very low quality. ...

Difference between "," and "." in PHP?

I just found that something like echo $value , " contiue"; will work,but this not : return $value , " contiue"; While "." works in both occasions. ...

How to force all nodes in the same column in graphviz?

I'm trying to model a certain flow using graphviz, and I can't figure out how to model the following graph to share the same horizontal center digraph exmp { A -> B -> C -> D C -> E [constraint=false] A -> C [style="dotted", constraint=false] A -> D [style="dotted", constraint=false] B -> D [constraint=false] D -> A [...

How to force position of edges in graphviz?

I'm having problems with edges overlapping each other. In my previous question of how to force the nodes to be in the same column, found out how to force the nodes in to one column, but this causes some other problems to appear. digraph exmp { A -> B -> C -> D -> E C -> F [constraint=false] A -> C [style="dotted", constraint=false...

Java Regular Expression value.split("\\."), The Forward Slash Dot divides by character?

From what I understand, the backslash dot ("\.") means one character of any character right? So because backslash is an escape it should be backslash backslash dot ("\\.") What does this do to a string. I just saw this in an existing code I am working on. From what I understand it will split the string into individual characters. Why do...