Re: [O] Graph not hierarchical?

2014-02-28 Thread Bastien
Hi Lawrence, Lawrence Bottorff borg...@gmail.com writes: Is this ID spoken of? http://orgmode.org/worg/org-api/org-id-api.html Yes, but this API documentation is old and should be removed. So far it's just a field in Property, correct? Correct. -- Bastien

Re: [O] Graph not hierarchical?

2014-02-19 Thread Lawrence Bottorff
Is this ID spoken of? http://orgmode.org/worg/org-api/org-id-api.html So far it's just a field in Property, correct? On Tue, Feb 18, 2014 at 12:46 PM, Samuel Wales samolog...@gmail.com wrote: there is also this syntax.

Re: [O] Graph not hierarchical?

2014-02-18 Thread Brett Viren
Lawrence Bottorff borg...@gmail.com writes: being able to organize and extract based on your stuff being stored graph-aware would be nice, IMHO. I'm by no means an expert on this but I know org-element-parse-buffer returns a data structure which is a directed-graph.

Re: [O] Graph not hierarchical?

2014-02-18 Thread Nick Dokos
Brett Viren b...@bnl.gov writes: Lawrence Bottorff borg...@gmail.com writes: being able to organize and extract based on your stuff being stored graph-aware would be nice, IMHO. I'm by no means an expert on this but I know org-element-parse-buffer returns a data structure which is a

Re: [O] Graph not hierarchical?

2014-02-18 Thread Samuel Wales
hi lawrence, as eric and nick pointed out, you can use properties with org-id to implement arbitrary graphs. you will have to write the code to select the children and go to them and go back. org-id's work well. if you want to point to any non-header object, it will not work. for example, a

Re: [O] Graph not hierarchical?

2014-02-18 Thread Samuel Wales
s/more than one other place in/more than one other place from/

Re: [O] Graph not hierarchical?

2014-02-18 Thread Samuel Wales
there is also this syntax.

Re: [O] Graph not hierarchical?

2014-02-15 Thread Eric S Fraga
Lawrence Bottorff borg...@gmail.com writes: Is there any way to have org mode simulate a graph structure rather than always a (folding) hierarchy? Sure: you could superimpose a graph structure using headline properties. You could define CHILDREN, PARENT, NODES, NEXT, PREVIOUS, ... types of

Re: [O] Graph not hierarchical?

2014-02-15 Thread Lawrence Bottorff
Org mode seems to lack data extraction/insertion. There's agenda view, but that's just one method. Obviously, you could use things like grep or other command-line Unix utilities, but being able to organize and extract based on your stuff being stored graph-aware would be nice, IMHO. Being able to

Re: [O] Graph not hierarchical?

2014-02-15 Thread Eric S Fraga
Lawrence Bottorff borg...@gmail.com writes: Org mode seems to lack data extraction/insertion. Check out http://orgmode.org/worg/dev/org-syntax.html and maybe org-element.el in the org mode distribution you are using. I've not tried the org element parser but others on this list have so