Re: [O] Process diagrams with dot and some glue using Org-mode

2013-07-05 Thread Eric S Fraga
Karl Voit writes: > * Karl Voit wrote: >> >> I would be happy to document this method and provide it on Worg. In >> my opinion, this would be very handy for many Org-mode users. > > I summarized the method on Worg[1]. > > Can someone please proof read the page? I am not a native speaker > and it

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-07-03 Thread Nick Dokos
Karl Voit writes: > * Karl Voit wrote: >> >> I would be happy to document this method and provide it on Worg. In >> my opinion, this would be very handy for many Org-mode users. > > I summarized the method on Worg[1]. > > Can someone please proof read the page? I am not a native speaker > and it

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-07-03 Thread Karl Voit
* Karl Voit wrote: > > I would be happy to document this method and provide it on Worg. In > my opinion, this would be very handy for many Org-mode users. I summarized the method on Worg[1]. Can someone please proof read the page? I am not a native speaker and it's always good to let someone els

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-07-01 Thread Karl Voit
* Rick Frankel wrote: > > The solution is to specify the range on the call: > > #+call: > graph-from-table(nodes=example-node-table[2:-1],graph=example-graph[2:-1]) [...] Thank you *very* much for your explanations! You helped me to understand the method that good that I will soon start document

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-06-28 Thread Rick Frankel
On 2013-06-28 05:20, Karl Voit wrote: * Rick Frankel wrote: And here's a simplier version which uses a graph table in the following format: [...] I tried to use your solution with the "#+call:" method. Unfortunately, it fails and due to my limited ELISP knowledge, I can not debug this issue.

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-06-28 Thread Karl Voit
* Rick Frankel wrote: > And here's a simplier version which uses a graph table in the > following format: [...] I tried to use your solution with the "#+call:" method. Unfortunately, it fails and due to my limited ELISP knowledge, I can not debug this issue. I've got the feeling that you might

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-06-27 Thread Bastien
Rick Frankel writes: >> Where should I place this method? Org-tutorials? [1] probably? New >> section in [2]? >> >> 1. http://orgmode.org/worg/org-tutorials/#sec-3-2 >> 2. http://orgmode.org/worg/org-tutorials/#sec-4 > > I'm not sure. Carsten or Bastien would be a better person to ask. It >

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-06-27 Thread Rick Frankel
On Thu, Jun 27, 2013 at 08:47:14AM +0200, Karl Voit wrote: > * Rick Frankel wrote: > > > - It requires you to specify the range on the node table > > Sorry, I did not understand this since I could not locate any range > specification below except that one for foobar-node-table in the

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-06-26 Thread Karl Voit
* Eric S Fraga wrote: > > Hi Karl, Hi Eric! > I did something simple for generating graphs but without an adjacency > type of matrix as you have defined and without the special types of > edges. So, quite limited with respect to what you want. In any case, > I've attached what I played with a

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-06-26 Thread Karl Voit
* Rick Frankel wrote: > On 2013-06-26 13:03, Karl Voit wrote: >> * Rick Frankel wrote: >> >> However, the header information seems to get lost. This requires >> hard-coded column content which is a minor drawback of this method. > > Just use `:colnames no': I love Org-mode :-) > Regardless, he

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-06-26 Thread Karl Voit
* Thorsten Jolitz wrote: > > not really an answer to your question, but I wrote a library > (picodoc.el) that automatically generates PlantUML scripts from PicoLisp > source code: Thanks for the pointer. Looks interesting but as you wrote, not really the solution that seems applicable in my case.

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-06-26 Thread Rick Frankel
On 2013-06-26 13:03, Karl Voit wrote: * Rick Frankel wrote: Two things: 1. You don't need to write table parsing code, as passing in a table as an argument to a code block will convert it to an array. t=[["a", 1], ["b", 2]] You're right, I tota

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-06-26 Thread Eric S Fraga
Hi Karl, Karl Voit writes: > I was looking for a reasonable simple method to define processes and > work-flows within Org-mode. My research did not result in anything > existing I found useful. Therefore, I started to read about dot[1] > and found [2]. > > I would like to define my diagram with t

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-06-26 Thread Karl Voit
* Rick Frankel wrote: > > Two things: > > 1. You don't need to write table parsing code, as passing in a > table as an argument to a code block will convert it to an > array. > > #+name: ptable >| head1 | head2 | >|---+---| >| a | 1 | >| b |

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-06-26 Thread Thorsten Jolitz
Karl Voit writes: Hi, > I was looking for a reasonable simple method to define processes and > work-flows within Org-mode. My research did not result in anything > existing I found useful. Therefore, I started to read about dot[1] > and found [2]. [...] > Some (still missing) glue should use

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-06-26 Thread Rick Frankel
On 2013-06-26 11:23, Karl Voit wrote: Hi! I would like to define my diagram with the following two tables: one for the node definitions and one for the interconnections between notes. The syntax should be pretty self-explanatory (or at least I hope so): I (not an ELISP hacker) would have to use

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-06-26 Thread Karl Voit
Sorry, minor mistake: I could not find out why dot is not able to mix directed and not directed graphs in one diagram. Therefore I had to replace th "-" in the node table with ">" and the corresponding results as well: > #+name: foobar-node-table > | *node* | *label*| *shape* | *fil

[O] Process diagrams with dot and some glue using Org-mode

2013-06-26 Thread Karl Voit
Hi! I was looking for a reasonable simple method to define processes and work-flows within Org-mode. My research did not result in anything existing I found useful. Therefore, I started to read about dot[1] and found [2]. I would like to define my diagram with the following two tables: one for th