Re: Help requested: Support for basic Org mode support in tools outside of Emacs

2021-08-03 Thread Kristian Grönberg
Hi Karl,

‐‐‐ Original Message ‐‐‐

On Tuesday, August 3rd, 2021 at 12:14, Karl Voit  wrote:

> Hi,
> 

> I'm collecting information on basic Org mode support in tools that are not 
> Emacs.
> 

> I already have: GitHub, GitLab (exactly like GitHub), OrgModeWeb,
> 

> Orgzly, Orgro, Emacs, vim-orgmode.

Beorg for iOS (https://beorgapp.com) , would be one.


signature.asc
Description: OpenPGP digital signature


Re: Dynamic block tables: adding prefix of "id:" to %ID

2021-07-25 Thread Kristian Grönberg
Hi Karl,

> > Would it work for you to use the "<>"?
> > 

> > *** <> barheading
> > :PROPERTIES:
> > :ID: [[bar][barheading]]
> > :END:
> > /Kris
> 

> I'm afraid not because the dynamic block would duplicate the
> target definition and not generating a link.

OK, I see.
If you do find a solution in the future, I would be interested in getting to 
know it as well. Feel free to keep me posted.
Thank you.

signature.asc
Description: OpenPGP digital signature


Re: Dynamic block tables: adding prefix of "id:" to %ID

2021-07-23 Thread Kristian Grönberg
> I can't follow you here.
> 

> How does a working link to your heading look like?


I didn't read your question properly.
Would it work for you to use the "<>"?

*** <> barheading
:PROPERTIES:
:ID: [[bar][barheading]]
:END:

/Kris

signature.asc
Description: OpenPGP digital signature


Re: Dynamic block tables: adding prefix of "id:" to %ID

2021-07-23 Thread Kristian Grönberg
hi Karl,

I had to solve this by putting the link inside of the heading, like so:

* STARTED proj foo
:PROPERTIES:
:ID: [[foo][id]]
:END:

However this is not optimal since viewing the same ID property with 
"org-agenda-custom-commands" includes the link as well (which for me is not 
good since I have long links).

Perhaps someone else has a better solution.

/Kris

On Friday, July 23rd, 2021 at 11:46, Karl Voit  wrote:

> Hi,
> 

> I do have a dynamic block table like this:
> 

> #+BEGIN: columnview :id global :match 
> "+project-focus/!+STARTED|+NEXT|+WAITING" :format "%TODO(State) %ITEM(What) 
> %ID(ID) %TAGS(Tags)"
> 

> | State | What | ID | Tags |
> 

> |-++-+---|
> 

> | STARTED | [12/14] proj foo | foo | :foo:project: |
> 

> | NEXT | [0/0] proj bar | bar | :bar:project: |
> 

> | STARTED | [191/191] proj baz | baz | :baz:project: |
> 

> #+END:
> 

> Is there a way to get the ID column with working ID links such as:
> 

> #+BEGIN: columnview :id global :match 
> "+project-focus/!+STARTED|+NEXT|+WAITING" :format "%TODO(State) %ITEM(What) 
> %ID(ID) %TAGS(Tags)"
> 

> | State | What | ID | Tags |
> 

> |-+++---|
> 

> | STARTED | [12/14] proj foo | id:foo | :foo:project: |
> 

> | NEXT | [0/0] proj bar | id:bar | :bar:project: |
> 

> | STARTED | [191/191] proj baz | id:baz | :baz:project: |
> 

> #+END:
> 

> Thanks!
> 

> ---
> 

> get mail|git|SVN|photos|postings|SMS|phonecalls|RSS|CSV|XML into Org-mode:
> 

> > get Memacs from https://github.com/novoid/Memacs <
> 

> Personal Information Management > http://Karl-Voit.at/tags/pim/
> 

> Emacs-related > http://Karl-Voit.at/tags/emacs/

signature.asc
Description: OpenPGP digital signature


Re: Bug: :match filter fails on columnview dblock when :maxlevel present [9.4.6 (9.4.6-gab9f2a @ /Users/pabfr/.emacs.d/elpa/org-9.4.6/)]

2021-07-23 Thread Kristian Grönberg


> On 12 Jul 2021, at 15:22, Pablo Perez  wrote:
> 
> * Scrum Summary
>#+BEGIN: columnview :hlines 3 :id "47B8AC9D-2556-4F6E-AAE1-775731314596" 
> :indent t :maxlevel 4 :match "Sprint4"

I’ve noticed in the past that :maxlevel prevents “match” from functioning 
properly.
Have you tried to remove “maxlevel”?

/Kris



signature.asc
Description: OpenPGP digital signature


Re: Clock tables and two ways to categorize tasks

2020-11-21 Thread Kristian Grönberg


> On 20 Nov 2020, at 10:23, Leo Okawa Ericson  
> wrote:
> 
> 
> Some time ago I hacked together a bunch of elisp to create a clock table
> based on tags. [1] It uses org's dynamic block feature[2] to create a
> piechart with gnuplot and a simple table that shows percentages of time
> spent on different tags. I should say that it has basically no
> documentation at all, but if there is interest I could write something
> to explain the basic usage at least.
> 
> [1] https://github.com/Zetagon/dotfiles/blob/master/doom/pichart-property.el
> 
> [2] https://orgmode.org/manual/Dynamic-Blocks.html
> 

Started to read through the code and yes, a bit more documentation would be 
great.

Thanks

/Kristian