From d257622c13a98f8a5f894997f591812e0f2c59f3 Mon Sep 17 00:00:00 2001 From: Francois Perrad Date: Tue, 9 Nov 2010 12:44:43 +0100 Subject: rename abstract_syntax_tree --- uml/Makefile | 4 ++-- uml/abstract_syntax_tree.dot | 14 ++++++++++++++ uml/abstract_syntax_tree.png | Bin 0 -> 34615 bytes uml/api.dot | 14 -------------- uml/api.png | Bin 34615 -> 0 bytes 5 files changed, 16 insertions(+), 16 deletions(-) create mode 100644 uml/abstract_syntax_tree.dot create mode 100644 uml/abstract_syntax_tree.png delete mode 100644 uml/api.dot delete mode 100644 uml/api.png diff --git a/uml/Makefile b/uml/Makefile index 0f77174..4d35baa 100644 --- a/uml/Makefile +++ b/uml/Makefile @@ -1,6 +1,6 @@ -api.png: api.dot - dot -T png -o api.png api.dot +abstract_syntax_tree.png: abstract_syntax_tree.dot + dot -T png -o $@ $< clean: rm *.png diff --git a/uml/abstract_syntax_tree.dot b/uml/abstract_syntax_tree.dot new file mode 100644 index 0000000..83b727f --- /dev/null +++ b/uml/abstract_syntax_tree.dot @@ -0,0 +1,14 @@ +digraph { + + node [shape=record]; + + "API" + [label="{\N|methods : map<string,Method>\lname : string\l\lauthentication : boolean\lauthority : string\lbase_url : string\ldescription : string\lexpected_status : array<number>\lformats : array<string>\lmeta : map<string,string>\lunattended_params : boolean\lversion : string\l}"]; + + "API" -> "Method" + [label="methods", dir=back, arrowtail=odiamond]; + + "Method" + [label="{\N|method : string\lpath : string\l\lauthentication : boolean\lbase_url : string\ldeprecated : boolean\ldescription : string\lexpected_status : array<number>\lform-data : map<string,string>\lformats : array<string>\lheaders : map<string,string>\loptional_params : array<string>\loptional_payload : boolean\lrequired_params : array<string>\lrequired_payload : boolean\lunattended_params : boolean\l}"]; + +} diff --git a/uml/abstract_syntax_tree.png b/uml/abstract_syntax_tree.png new file mode 100644 index 0000000..e5afaba Binary files /dev/null and b/uml/abstract_syntax_tree.png differ diff --git a/uml/api.dot b/uml/api.dot deleted file mode 100644 index 83b727f..0000000 --- a/uml/api.dot +++ /dev/null @@ -1,14 +0,0 @@ -digraph { - - node [shape=record]; - - "API" - [label="{\N|methods : map<string,Method>\lname : string\l\lauthentication : boolean\lauthority : string\lbase_url : string\ldescription : string\lexpected_status : array<number>\lformats : array<string>\lmeta : map<string,string>\lunattended_params : boolean\lversion : string\l}"]; - - "API" -> "Method" - [label="methods", dir=back, arrowtail=odiamond]; - - "Method" - [label="{\N|method : string\lpath : string\l\lauthentication : boolean\lbase_url : string\ldeprecated : boolean\ldescription : string\lexpected_status : array<number>\lform-data : map<string,string>\lformats : array<string>\lheaders : map<string,string>\loptional_params : array<string>\loptional_payload : boolean\lrequired_params : array<string>\lrequired_payload : boolean\lunattended_params : boolean\l}"]; - -} diff --git a/uml/api.png b/uml/api.png deleted file mode 100644 index e5afaba..0000000 Binary files a/uml/api.png and /dev/null differ -- cgit v1.2.3