Re: access to specific instance(s) of past recurring event(s)

2022-09-25 Thread Saša Janiška

On 25. 09. 2022. 16:25, Mark Barton wrote:

I also use this method for some of my reoccurring events. 


Good.


It is nice to be able to remove/adjust some of the subtree entries to 
accommodate holidays.


Indeed.

When I don't use this method for a reoccurring event then I usually just schedule a 


repeating task and then have my notes in that task to record what 
happened each time.


That's also interesting. Thanks!


Sincerely,
Saša

--
As fire is covered by smoke, as a mirror is covered by dust,
or as the embryo is covered by the womb, the living entity is
similarly covered by different degrees of this lust.






Re: access to specific instance(s) of past recurring event(s)

2022-09-25 Thread Saša Janiška

On 25. 09. 2022. 15:46, Fraga, Eric wrote:


I guess I'm not sure what you would like to do with previous (missed)
events?


Well, I want to mark them as completed, but not in consecutive order 
from oldest to newest - that's why I want to be able to 
access/modify/complete them in **any** order.



Sincerely,
Saša
--
In this endeavor there is no loss or diminution,
and a little advancement on this path can protect
one from the most dangerous type of fear.






access to specific instance(s) of past recurring event(s)

2022-09-25 Thread Saša Janiška

Hello,

I do use org-mode for many things, but for the task management itself 
was still depending on Taskwarrior despite its poor support for 
recurring events.


However, after settling to more Emacs-powered packages, I'd like to 
replace Taskwarrior with org-mode...


One useful feature of Taskwarrior is that if I have e.g recurring weekly 
task "upload meeting's recording" and, due to various reasons, I'm 
simply behind my schedule, I can access **any** of the missed events and 
not just the oldest one as it seems to be with org-mode.


When looking for some solution I've stumbled upon this (old) post 
https://karl-voit.at/2017/01/15/org-clone-subtree-with-time-shift/ which 
utilizes *org-clone-subtree-with-time-shift*.


Now I wonder if there is some other/better solution that has possibly 
popped up in the meantime?



Sincerely,
Saša

--
A person is said to be elevated in yoga when, having renounced
all material desires, he neither acts for sense gratification
nor engages in fruitive activities.






Re: tickler file & recurring events

2021-01-31 Thread Saša Janiška


Ihor Radchenko writes:

> Check org-agenda-show-future-repeats
> ( v org-agenda-show-future-repeats ).

Thanks a lot, that's just what I need!!


Sincerely,
Gour


-- 
A person who has given up all desires for sense gratification,
who lives free from desires, who has given up all sense of
proprietorship and is devoid of false ego — he alone can
attain real peace.



tickler file & recurring events

2021-01-30 Thread Saša Janiška
Hello,

I'd like to improve my GTD workflow by adding tickler file so that my
agenda views is not cluttered with reminders for e.g. paying bills and
similar tasks. I've followed, more or less, the setup described here
(https://emacs.cafe/emacs/orgmode/gtd/2017/06/30/orgmode-gtd.html) and I
can capture the task which is then put into tickler.org file, but the
problem is that most of such tasks are recurring ones, e.g.

** water the plants
<2021-02-15 Mon +5d>

but in such case, all reminders are visible in agenda view, so wonder if
it's possible for such tasks to be added to agenda view **only**  when
they're due and not before?


SIncerely,
Gour

-- 
Many, many births both you and I have passed. I can remember
all of them, but you cannot, O subduer of the enemy!



Re: [O] Moving from Jekyll to Orgmode

2018-04-29 Thread Saša Janiška
ST  writes:

> I would like to rewrite my website using Orgmode (till now I used
> Jekyll). It would be nice if you could help me with following questions:

I recommend you to take look at ox-hugo (https://ox-hugo.scripter.co/)


Sincerely,
Gour

-- 
As the embodied soul continuously passes, in this body,
from boyhood to youth to old age, the soul similarly passes
into another body at death. A sober person is not bewildered
by such a change.




[O] syncing multiple calendars with org-caldav

2018-03-01 Thread Saša Janiška
Hello,

in the past I was using org-caldav package to sync my calendar (and
contacts) entries with my Android phones via Baikal server, but at some
point it got broken - see
https://github.com/dengste/org-caldav/issues/51 so I had to resort to
another solution by using vdiryncer.

Recently, I found out that org-caldav is supposed to work (again) with
multiple calendars and there is example:

setq org-caldav-calendars
  '((:calendar-id "work@whatever" :files ("~/org/work.org")
 :inbox "~/org/fromwork.org")
(:calendar-id "stuff@mystuff"
 :files ("~/org/sports.org" "~/org/play.org")
 :skip-conditions (regexp "soccer")
 :inbox "~/org/fromstuff.org")) )

in its README file,

(https://github.com/dengste/org-caldav/blob/master/README.md)

but I must admit it's not clear how one is supposed to configure

:skip-conditions

function?

I have a neeed for 4 or 5 calendars: my own, one for wife's activities,
one for the kid's, another using special calendar, birthdays...

I did try with this setup:

* I did add required calendars to my org-agenda-files, like:

  (setq org-agenda-files
(list "~/emacs/org/gour.org"
  "~/emacs/org/wife.org"
  "~/emacs/org/kid.org"
  "~/emacs/org/special.org"
  "~/emacs/org/birthdays.org"
  "~/emacs/org/calendar.org"
  )

and I want that calendar.org does contain all the entries which do
arrive from the Android phones.

* here is org-caldav's part of setup:
  
  (setq org-caldav-calendars
'((:calendar-id "gour" :files ("~/emacs/org/gour.org")
:inbox "~/emacs/org/calendar.org")

  (:calendar-id "jahnava" :files ("~/emacs/org/wife.org")
:inbox "~/emacs/org/calendar.org")

  (:calendar-id "kirtana" :files ("~/emacs/org/kid.org")
:inbox "~/emacs/org/calendar.org")

  (:calendar-id "vaishnava" :files ("~/emacs/org/special.org")
:inbox "~/emacs/org/calendar.org")
  
  (:calendar-id "birthdays" :files ("~/emacs/org/birthdays.org")
:inbox "~/emacs/org/calendar.org")
  )
)

So, I'd like to entry calendar entries for myself into gour.org and,
similarly to other adequately named *.org files, while calendar.org
should contain entries which were entered on the phone(s) and were
synced with my org files.

However, when I tried the above setup, one of the calendar got all the
duplicates from another, in my case, kid.org got all the entries from
wife.org.

Anyone can suggest how to incorporate :skip-conditions so that there
won't by any duplicates and every for every entry in my agenda it will
be clear where the entry does belong to?

In the test-suite I've noticed the following:

:skip-conditions (notregexp ":sometag:")

so maybe the setup could be done by adding specific tags (eg. ":kid:",
":wife:" etc. to the setup, but it's not clear to me how to configure
eveything for more than two calendars, although I'm not sure how e.g.:


:skip-conditions (regexp "soccer")

can prevent duplicate entries?


Sincerely,
Gour

-- 
As a blazing fire turns firewood to ashes, O Arjuna, so does the
fire of knowledge burn to ashes all reactions to material activities.




Re: [O] N tasks per week with sexp diary entries

2018-02-15 Thread Saša Janiška
On Thu, 15 Feb 2018 12:42:12 +
Eric S Fraga  wrote:

> Not sure if this is possible or not with sexp entries but maybe look
> at habits which sound like what you want to do?

That is simple - there are guided programs for exercizing which are
created by having fixed numbers of workouts per week, but not every
day, and since my daily obligations do differ from week to week, I'd
like to track those workouts and be sure that I'm on the track with
predestined number per week.


Sincerely,
Gour

-- 
He who is regulated in his habits of eating, sleeping, recreation
and work can mitigate all material pains by practicing the yoga system.


pgp0Etgsdalby.pgp
Description: OpenPGP digital signature


Re: [O] Android sync client

2017-07-09 Thread Saša Janiška
On Sun, 02 Jul 2017 15:33:16 +0200
Pier  wrote:

> I use termux with emacs and org installed in it.  I use a hosting
> server and sync org files to-from there.

That's interesting and worth exploring...


Sincerely,
Gour

-- 
As a blazing fire turns firewood to ashes, O Arjuna, so does the
fire of knowledge burn to ashes all reactions to material activities.


pgp2U9xnGTwmb.pgp
Description: OpenPGP digital signature


[O] hyperlink type for Claws-mail

2017-04-26 Thread Saša Janiška
Hello,

I do wonder if there is some way to add hyperlink type for Claws-mail?

Today, asked the same question in #claws and I was told that something
like this could work:

claws-mail --select [#mh/mailbox/]folder[/msg|/msgid]`

and tried with the following:

claws-mail --select '#imap/gour/INBOX/10254'

and I can confirm that it works.

The 'msgid' from above is visible within Claws when one enables 'Number'
column in Summary view…

Now I wonder what would be correct way to create such link(s) within
org-mode by invoking some function by feeding it the ’msgid’ or possibly
some more data ( mailbox, folder etc.) so that when I later click on
such created hyperlink the following:

claws-mail --select ...

is going to be invoked?

Any hint?


Sincerely,
Gour

-- 
Perform your prescribed duty, for doing so is better than not
working. One cannot even maintain one's physical body without work.




Re: [O] inline markup within quote

2017-04-20 Thread Saša Janiška
Rasmus  writes:

> AFAIK the quote block is irrelevant here.  Perhaps you could customize
> org-emphasis-regexp-components (this will only work if Hugo uses Emacs to
> generate html).

IIRC, Hugo uses native parser for org-mode:

https://github.com/chaseadamsio/goorgeous

> There’s also a thorough  explanation here:
>
> https://emacs.stackexchange.com/a/13828

Thanks a lot for the reference.

> Hope it helps,

Yes, although it seems I might just use AsciiDoc(tor) markup for my
content.


Sincerely,
Gour

-- 
The humble sages, by virtue of true knowledge, see with equal
vision a learned and gentle brāhmana, a cow, an elephant, a dog
and a dog-eater.




Re: [O] inline markup within quote

2017-04-19 Thread Saša Janiška
Nicolas Goaziou  writes:

> I cannot reproduce the above, e.g., exporting to LaTeX I get

After some testing, I see that it works with the simple example, but if
one uses multi-paragraph text, then it fails…

Can you test with this one?

#+BEGIN_QUOTE
Lorem ipsum dolor sit amet, novum similique nec ea, qui mucius
singulis ea. Eum alterum adolescens te, iusto postulant vim ea. No
dicit bonorum disputationi pro, quo id ridens signiferumque. Maiorum
luptatum persequeris sea id, sed erant docendi civibus eu. Putant
molestie ne nam. Ad ius affert quaestio accommodare.

*Vis possit putant propriae in, ne nam wisi vidit propriae. Cu mea
epicuri interesset dissentiet. Cu pri suas saperet. Vidit pericula pro
et, nulla veniam offendit an mea. Ei habeo dignissim abhorreant per,
mea an odio detraxit dissentias, ut nisl percipit erroribus pri.*

No vocent ponderum recteque sed. Mel utinam persequeris ut. In nam
elitr assentior, vim ad timeam phaedrum, ad mazim vituperata quo. Pri
an quas nemore voluptatibus. Sea id enim delenit accumsan. Ne pri
illud saepe audire, quodsi regione in duo, modo quodsi id per.

#+END_QUOTE


Sincerely,
Gour

-- 
A person is said to be established in self-realization and is called a yogī
[or mystic] when he is fully satisfied by virtue of acquired knowledge and
realization. Such a person is situated in transcendence and is self-controlled.
He sees everything — whether it be pebbles, stones or gold — as the same.




Re: [O] inline markup within quote

2017-04-19 Thread Saša Janiška
Nicolas Goaziou  writes:

> I cannot reproduce the above,

Have you tried to export to HTML?

> e.g., exporting to LaTeX I get

Exporting to LaTeX and/or e.g. rst, produces correct markup…hmm, now I
see that org --> HTML does work as well…

> It may be a limitation on the Hugo side.

You might be right…will explore further.


Sincerely,
Gour

-- 
Whenever and wherever there is a decline in religious practice,
O descendant of Bharata, and a predominant rise of irreligion —
at that time I descend Myself.




[O] inline markup within quote

2017-04-19 Thread Saša Janiška
Hello!

I’m moving from Python-powered static site generator to the Hugo which
does support using org-mode markup for writing content.

Currently, my content is written using rst, but although Hugo does
support rst as well, I thought that org-mode could be better match, but
today I did figure out that e.g. it’s not possible to use inline markup
within quote, e.g.:

#+BEGIN_QUOTE
  This is first sentence. *This one I’d like to be bold.* Another small
  sentence.
#+END_QUOTE

In the above example, I do not get bold, but ’*’ are rendered verbatim,
so I wonder if I do miss something in org-mode markup or it simply
built-in limitation similar to some corner cased present in rst markup
as well?


Sincerely,
Gour

-- 
For him who has conquered the mind, the mind is the best of
friends; but for one who has failed to do so, his mind will
remain the greatest enemy.




Re: [O] org-mode markup vs rst for general content

2017-03-10 Thread Saša Janiška
Alan L Tyree  writes:

> I have also written in rst: it is a slightly richer language out of
> the box with provisions for sidebars, cautions, etc, but unless you
> really need those things, I would stick with org-mode. I find the
> syntax of rst to be very fiddly. Most of the special effects can be
> obtained with css in any case.

Thank you.

> Org-mode for nearly everything else, but if you need more, go on to
> LaTeX.

Thanks a lot! Yeah, I did some books in the past using LyX/LaTeX when I
wanted high-quality output, so that option is always on here…in the
meantime I just want something mroe easy for authoring and it looks that
org-mode is good enough for such purpose…

> This may be more than you wanted to know :-).

Not at all. ;)


Sincerely,
Gour

-- 




Re: [O] org-mode markup vs rst for general content

2017-03-09 Thread Saša Janiška
John Kitchin  writes:

> Could you be more specific about what kind of richness you are looking
> for?

In a general sense…iow, it’s a fact that rst markup is richer than
e.g. Markdown. Probably, Asciidoc(tor) also provides more semantic
richness and make it suitable markup for longer docs/books, so I wonder
where one can put org-mode’s markup on this scale?


Sincerely,
Gour

-- 
You have a right to perform your prescribed duty, but you
are not entitled to the fruits of action. Never consider
yourself the cause of the results of your activities,
and never be attached to not doing your duty.




[O] org-mode markup vs rst for general content

2017-03-09 Thread Saša Janiška
Hello,

I’m using org-mode for my task management and it works great…moving to
static-site-generators which do support writing web-content/blog-posts
using both org-mode and rst markup, so consider how does org-mode markup
compare in comparison with the richness of rst markup when it comes to
the general content (blog posts, articles etc.)?

Anyone sufficiently familiar with both can help and shed some light,
since, both markups have decent support withing Emacs itself?


Sincerely,
Gour


-- 
Perform your prescribed duty, for doing so is better than not
working. One cannot even maintain one's physical body without work.




Re: [O] org-vcard -- possible to convert .vcf files to .org ?

2017-03-01 Thread Saša Janiška
Eric Abrahamsen  writes:

> Also, it looks like there are many forks of this repository, some of
> which presumably address that issue -- has anyone tried any of the forks
> recently?

I was looking at them, but do not see any repo which would deal with
that issue…


Sincerely,
Gour

-- 
The senses are so strong and impetuous, O Arjuna,
that they forcibly carry away the mind even of a man
of discrimination who is endeavoring to control them.




Re: [O] org-vcard -- possible to convert .vcf files to .org ?

2017-02-27 Thread Saša Janiška
Eric Abrahamsen  writes:

> Glad to know you're enthusiastic, and patches are always welcome!

What can you recommend for learning Elisp which might be also useful for
špssobče contributibution to EBDB?

> I do expect the DAV server stuff to take me a while, though. I've heard
> the protocol is a bear, and I don't have much experiences with XML or
> network programming. I expect to crib a lot of code out of org-caldave
> :)

org-caldav is nice, but not useful any longer for me due to
https://github.com/dengste/org-caldav/issues/51 issue. :-(


Sincerely,
Gour

-- 
For him who has conquered the mind, the mind is the best of
friends; but for one who has failed to do so, his mind will
remain the greatest enemy.




Re: [O] org-vcard -- possible to convert .vcf files to .org ?

2017-02-26 Thread Saša Janiška
Eric Abrahamsen  writes:

> This is on the roadmap for EBDB[1]. i

It’s already starred here. ;)

> It already supports multiple databases, and can export to vcard. I'm
> working on vcard import now, and when that's done it will be a native
> Vcard database.

Wonderful…thanks a lot for your work on it!!

> Then CardDAV. I also use DAVDroid and really want this feature myself,
> though I can't promise any kind of timeline!

I’m so excited about the prospect of EBDB, that it might push me in the
direction to finally learn Elisp. :-)


Sincerely,
Gour

-- 
Bewildered by the modes of material nature, the ignorant fully
engage themselves in material activities and become attached. But
the wise should not unsettle them, although these duties are inferior
due to the performers' lack of knowledge.




Re: [O] org-vcard -- possible to convert .vcf files to .org ?

2017-02-25 Thread Saša Janiška
Eric S Fraga  writes:

> By the way, there is also a bbdb-vcard package that may be of use to you.

I’ve migrated back to Emacs/Gnus/orgmode and wonder if there is
something to sync contacts with the CardDav server(s)?

Atm I use DAVDroid on the phone along with Baikal server and
khard/vdrisyncer on my desktop so bbdb-vcard is helpful, but,
unfortunately, I keep two address books (*.vcf files) and BBDB still
cannot handle more than one BBDB file…the only other option seems to be
ASynK which does not look very popular…


Sincerely,
Gour

-- 
A person is said to be established in self-realization and is called a yogī
[or mystic] when he is fully satisfied by virtue of acquired knowledge and
realization. Such a person is situated in transcendence and is self-controlled.
He sees everything — whether it be pebbles, stones or gold — as the same.


signature.asc
Description: PGP signature


Re: [O] “Match data clobbered by buffer modification hooks”

2016-11-14 Thread Saša Janiška
Nicolas Goaziou  writes:

> I don't have emoji-cheat-sheet-plus. I think it would be worth reporting
> the problem upstream.

Done:

https://github.com/syl20bnr/emacs-emoji-cheat-sheet-plus/issues/5.


Sincerely,
Gour

-- 
While contemplating the objects of the senses, a person
develops attachment for them, and from such attachment lust
develops, and from lust anger arises.




Re: [O] “Match data clobbered by buffer modification hooks”

2016-11-14 Thread Saša Janiška
Nicolas Goaziou  writes:

> The latter.

Thank you for your assistance - I was able to find the problematic piece
of setup (https://github.com/syl20bnr/emacs-emoji-cheat-sheet-plus):

;; emoji cheat sheet
(use-package emoji-cheat-sheet-plus
  :ensure t
  :init
  (progn
;; enabled emoji in buffer
(add-hook 'org-mode-hook 'emoji-cheat-sheet-plus-display-mode)
;; insert emoji with helm
(global-set-key (kbd "C-c C-e") 'emoji-cheat-sheet-plus-insert)))

Can you try to add the above snippet and check whether you can reproduce
the problem?


Sincerely,
Gour

-- 




Re: [O] “Match data clobbered by buffer modification hooks”

2016-11-14 Thread Saša Janiška
Nicolas Goaziou  writes:

> Have you tried with -Q, modulo load-path setting to include Org 9.0?

Now I tried with -Q and minimal 9.0 setup and it works. Do you have any
hint which packages might be problematic or I should simply try to bisect
my init file?


Sincerely,
Gour

-- 
Never was there a time when I did not exist,
nor you, nor all these kings; nor in the future
shall any of us cease to be.




Re: [O] “Match data clobbered by buffer modification hooks”

2016-11-13 Thread Saša Janiška
Nicolas Goaziou  writes:

> Evaluate the following function (C-x C-e) and test again.

I am still experiencing the problem when I try to complete daily
recurring task and in the meantime I’ve migrated from Debian (Sid) to
Fedora (f25-beta) where there is only Emacs-25 packaged.

Here is the simple task causing the problem:

** TODO test
   DEADLINE: <2016-11-13 Ned +1d>
   :PROPERTIES:
   :LAST_REPEAT: [2016-11-13 Ned 08:41]
   :END:

In the attachment I include backtrace log. (debug.log)


Sincerely,
Gour

Your bug report will be posted to the Org mailing list.


Debugger entered--Lisp error: (error "Match data clobbered by buffer 
modification hooks")
  replace-match(#("   :LAST_REPEAT: [2016-11-13 Ned 08:41]" 0 3 (fontified nil) 
3 4 (fontified nil) 4 15 (fontified nil) 15 16 (fontified nil) 17 39 (fontified 
nil)) t t)
  org--align-node-property()
  org-indent-line()
  org-entry-put(nil "LAST_REPEAT" "[2016-11-13 Ned 08:41]")
  org-auto-repeat-maybe("DONE")
  #[0 "\306\307!\210\310\307!\203\311 
\210\301\307\240\210\312\n!\203\313\225Sb\210\312\314\315Q!\204)\312\316!\210\317
 \320 \317 
\321\322\313\323\324\325!\326\"\327\330%DC\216\331\332\333\307\211$)\262\f
@@\300\242\313\232\203`\300\332\240\210\334\202bAA\335\336!\313\224\337!\340B\"\211A@\3278\3418\206\200\342C\307DE\235\211AF\203\265\300\242\343\232\203\237G\344=\204\260\300\242\204\265G\203\265G\344=\204\265\345
 
\202\374\300\242\346\232\203\323G\203\306F\204\323\347\350\351\352E\"\332\307$\202\374\300\242\353=\203\356\203\350\211\205\374\211@\202\374E@\202\374\300\242\354=\203E\232?\205\374\203\355EGG\356#E8\202\374E*\357*!@)\202\374G\307=\2031\300\242\360\232\2031\300\332\240\206\374\300\242\203\264\300\242\342\232\203A\332\202\374\300\242\361=\203L\332\202\374\300\242\362=\203]\206\374H@\202\374\300\242\363=\203tI\235A@\206\374I@\202\374\300\242\364=\203\222\365I!II\235A@\206\216I@)\202\374\300\242E\235@\206\374\300\242;\203\251\366\367\300\242\"\202\374\370\300\242!SE8\202\374\204\303\206\374E@\202\374\232\203\316\332\202\374\211\204\326\332\202\374\371>\203\372JK=\203\351\211@\202\374\211G\313V\205\374\206\374H@\202\374\211@L\372\373LC#\206\nL\211L\203\374L\374Q\202\374\375\376\377\f\201YL\201Z\257\332\211M\203\222\fH\235?N\212\317
 
\321\322\313\323\324\325!\201[\"\327\330%DC\216\212\214~\210\201\\\201M\"+\262)\204\222\201]\201^!\203{\366\201_LO$\210\202\222\201`\201_LO$\210\201a\201b\332\"\210\201c!\210\201d\307\211#\210\fL\232\203\324\201`\201e\332\201f\203\276\201g\202\301\201h\342\201f\201i\342##\266\202\"\210\202\201j\f!\203\201`\201k\332\201f\203\362\201g\202\365\201h\342\201f\201i\342##\266\202\"\210\n\204*\337L!\262\340B\"\262\n
   A@\262  
\327\n8\262\341\n8\262\300\242\201l>\203^\201`\201m\355PG\201n\340LP\"P>G#PG\201o\201p\340LP\"\374#$\210LH\235?NLH\235\205t\fH\235?\262
\203\202\201q!\210@\204\213\f\203*A\307=\204*\300\242\201r>\204*\340L@\"A@\206\256\356\340@\"8\262\334=\203\302A\334=\203\302\201s\262L\204\314Q\203\341L\203\353LR\235\203\353\fR\235\204\353\201t\332\211\201u#\210\211\203\f\203\201t\201u\201v
 
\"\210\204\f\334=\203\201w\362L\334$\210L\203*\203*\201w\201xL$\210\201yL!\210S\203BT\204B\201z\332\307\"\210U\203L\201{
 \210\201|\201}!\210\300\242\203gLH\235\204g\337L!\262\201~\320 \201 
\201\200$\210\211\203\251\201\201\201V!\203\242\317 
\321\322\313\323\324\325!\201\202\"\327\330%DC\216\201\203 
V)\210\201\204L!\210\201\205 
\203\345n\204\345\212\201\206\336!\210\312W!)\203\345`\356\211\225\206\314\336\225\\W\203\345\356\225\206\330\336\225b\210\312\374!\203\345\201\207
 \210X\203\365\212\201\210\201X\"\210)\301\242\205\374\311 .\207" [(nil) 
(nil) org-outline-regexp org-todo-regexp org-log-done org-log-repeat 
org-back-to-heading t org-in-commented-heading-p org-toggle-comment looking-at 
0 " +" "\\( +\\|[  ]*$\\)" "\\(?: *\\|[]*$\\)" match-data point-at-bol 
funcall make-byte-code "\301\300\302\"\207" vconcat vector [set-match-data 
evaporate] 3 "\n\n(fn)" org-entry-get nil "LOGGING" note match-string 1 
org-get-todo-sequence-head assoc 4 "" (4) prefix org-fast-todo-selection (4) 
completing-read "State: " mapcar list right left - 2 last (4) none ...] 28 
"\n\n(fn)"]()
  funcall(#[0 "\306\307!\210\310\307!\203\311 
\210\301\307\240\210\312\n!\203\313\225Sb\210\312\314\315Q!\204)\312\316!\210\317
 \320 \317 
\321\322\313\323\324\325!\326\"\327\330%DC\216\331\332\333\307\211$)\262\f
@@\300\242\313\232\203`\300\332\240\210\334\202bAA\335\336!\313\224\337!\340B\"\211A@\3278\3418\206\200\342C\307

Re: [O] “Match data clobbered by buffer modification hooks”

2016-11-01 Thread Saša Janiška
Nicolas Goaziou  writes:

> Evaluate the following function (C-x C-e) and test again.

Debugger entered--Lisp error: (error "Match data clobbered by buffer
  modification hooks") replace-match(#(" :LAST_REPEAT: [2016-11-01 Uto
  18:02]" 0 3 (fontified nil) 3 4 (fontified nil) 4 15 (fontified nil)
  15 16 (fontified nil) 17 39 (fontified nil)) t t) (progn
  (replace-match (concat (match-string 4) (org-trim (format
  org-property-format (match-string 1) (match-string 3 t t)) (if
  (save-excursion (beginning-of-line) (looking-at org-property-re))
  (progn (replace-match (concat (match-string 4) (org-trim (format
  org-property-format (match-string 1) (match-string 3 t t))) (progn
  (if (save-excursion (beginning-of-line) (looking-at org-property-re))
  (progn (replace-match (concat (match-string 4) (org-trim (format
  org-property-format (match-string 1) (match-string 3 t t
  (unwind-protect (progn (if (save-excursion (beginning-of-line)
  (looking-at org-property-re)) (progn (replace-match (concat
  (match-string 4) (org-trim (format org-property-format ... ...))) t
  t (set-match-data save-match-data-internal (quote evaporate)))
  (let ((save-match-data-internal (match-data))) (unwind-protect (progn
  (if (save-excursion (beginning-of-line) (looking-at org-property-re))
  (progn (replace-match (concat (match-string 4) (org-trim ...)) t t
  (set-match-data save-match-data-internal (quote evaporate
  org--align-node-property() org-indent-line() org-entry-put(nil
  "LAST_REPEAT" "[2016-11-01 Uto 18:02]") org-auto-repeat-maybe("DONE")
  org-todo(nil) funcall-interactively(org-todo nil)
  call-interactively(org-todo nil nil) command-execute(org-todo)


It does not work…back to Emacs24…


Sincerely,
Gour

-- 
You have a right to perform your prescribed duty, but you
are not entitled to the fruits of action. Never consider
yourself the cause of the results of your activities,
and never be attached to not doing your duty.




Re: [O] “Match data clobbered by buffer modification hooks”

2016-11-01 Thread Saša Janiška
Nicolas Goaziou  writes:

> Does wrapping `org--align-node-property' within `save-match-data' solve
> the problem?

Not sure how I’m supposed to do it? Writing some custom function? Where?


Sincerely,
Gour

-- 
One who restrains the senses of action but whose mind dwells on
sense objects certainly deludes himself and is called a pretender.




Re: [O] “Match data clobbered by buffer modification hooks”

2016-11-01 Thread Saša Janiška
Saša Janiška <g...@atmarama.com> writes:

> This Org mode version 8.3.6 (release_8.3.6-1267-g58dbdb @
> /home/gour/.emacs.d/lisp/org/) is master, right?

I had enough of this problem and, for now, the most easy workaround is
to simply downgrade Emacs to 24.5.1 where *everything* works as
intended.

> Sincerely,
> Gour

-- 
As the ignorant perform their duties with attachment to results,
the learned may similarly act, but without attachment, for the
sake of leading people on the right path.




Re: [O] “Match data clobbered by buffer modification hooks”

2016-11-01 Thread Saša Janiška
Nicolas Goaziou  writes:

> There are 1200+ commits in the master branch that are not in the stable
> one. It could make a difference.

It does not. :-(

This Org mode version 8.3.6 (release_8.3.6-1267-g58dbdb @
/home/gour/.emacs.d/lisp/org/) is master, right?


Sincerely,
Gour

-- 
Before giving up this present body, if one is able to tolerate
the urges of the material senses and check the force of desire and
anger, he is well situated and is happy in this world.




Re: [O] “Match data clobbered by buffer modification hooks”

2016-10-31 Thread Saša Janiška
Nicolas Goaziou  writes:

> Correct. Anyway, it would be interesting to test the issue with real
> master branch.

I might try it, but wonder if there are some relevant commits in master
branch?


Sincerely,
Gour

-- 
One who restrains his senses, keeping them under full control,
and fixes his consciousness upon Me, is known as a man of
steady intelligence.




Re: [O] “Match data clobbered by buffer modification hooks”

2016-10-31 Thread Saša Janiška
Nicolas Goaziou  writes:

> This is not master. You are still on stable branch according to the
> string above.

Ahh, OK. But it is still not built-in version, but the one from org’s
ELPA, right?


Sincerely,
Gour

-- 
One who is not disturbed in mind even amidst the threefold
miseries or elated when there is happiness, and who is free
from attachment, fear and anger, is called a sage of steady mind.




Re: [O] “Match data clobbered by buffer modification hooks”

2016-10-29 Thread Saša Janiška
Kaushal Modi  writes:

> Can you check if you see this bug on the org mode version build from
> the latest commit on the master branch?

I just tried with the master build locally:


Org-mode version 8.3.6 (8.3.6-7-g4d7d52-elpa @
/home/gour/.emacs.d/lisp/org-mode/lisp/)

and was able to reproduce it:

Debugger entered--Lisp error: (error "Match data clobbered by buffer
  modification hooks") replace-match(#(" :LAST_REPEAT: [2016-10-29 Sub
  17:58]" 0 3 (fontified nil) 3 4 (fontified nil) 4 15 (fontified nil)
  15 16 (fontified nil) 17 39 (fontified nil)) t t)
  org--align-node-property() org-indent-line() org-entry-put(nil
  "LAST_REPEAT" "[2016-10-29 Sub 17:58]") org-auto-repeat-maybe("DONE")
  org-todo(nil) funcall-interactively(org-todo nil)
  call-interactively(org-todo nil nil) command-execute(org-todo)

with the task looking as:


** TODO test
   DEADLINE: <2016-10-28 Pet +1d>


I did post to emacs-help list, but I’m directed back to
“org-maintainers”…


Sincerely,
Gour

-- 
Bewildered by the modes of material nature, the ignorant fully
engage themselves in material activities and become attached. But
the wise should not unsettle them, although these duties are inferior
due to the performers' lack of knowledge.




Re: [O] “Match data clobbered by buffer modification hooks”

2016-10-28 Thread Saša Janiška
Kaushal Modi  writes:

> What is your org mode version? :)

Org-mode version 8.3.6 (8.3.6-7-g4d7d52-elpa @
/home/gour/.emacs.d/elpa/org-20161024/)

GNU Emacs 25.1.1 (x86_64-pc-linux-gnu, GTK+ Version 3.22.1)
 of 2016-10-11, modified by Debian
 
> This bug did occur before emacs 25.1 was released. But it was fixed
> in that release ( https://debbugs.gnu.org/cgi/bugreport.cgi?bug=23917
>  ).

Yeah, I know about it.

> Can you check if you see this bug on the org mode version build from
> the latest commit on the master branch? 

My org version is pretty fresh. but will try with the master…


Sincerely,
Gour

-- 
When your intelligence has passed out of the dense forest
of delusion, you shall become indifferent to all that has
been heard and all that is to be heard.




Re: [O] “Match data clobbered by buffer modification hooks”

2016-10-28 Thread Saša Janiška
Nicolas Goaziou  writes:

> FWIW, I cannot reproduce it.

Which Emacs/org-mode?


Sincerely,
Gour

-- 
Before giving up this present body, if one is able to tolerate
the urges of the material senses and check the force of desire and
anger, he is well situated and is happy in this world.




Re: [O] “Match data clobbered by buffer modification hooks”

2016-10-28 Thread Saša Janiška
Saša Janiška <g...@atmarama.com> writes:

> I get:
>
> org--align-node-property: Match data clobbered by buffer modification hooks

Here is debugger’s output:

Debugger entered--Lisp error: (error "Match data clobbered by buffer
  modification hooks") replace-match(#(" :LAST_REPEAT: [2016-10-28
  Pet 11:18]" 0 3 (org-category "gour" fontified nil) 3 4 (fontified
  nil) 4 15 (fontified nil) 15 16 (fontified nil) 17 39 (fontified
  nil)) t t) org--align-node-property() org-indent-line()
  org-entry-put(nil "LAST_REPEAT" "[2016-10-28 Pet 11:18]")
  org-auto-repeat-maybe("DONE") org-todo(nil)
  funcall-interactively(org-todo nil) call-interactively(org-todo
  nil nil) command-execute(org-todo)

> Sincerely,
> Gour

-- 
Many, many births both you and I have passed. I can remember
all of them, but you cannot, O subduer of the enemy!




[O] “Match data clobbered by buffer modification hooks”

2016-10-28 Thread Saša Janiška
Hello,

after upgrading to 25.1 (Debian Sid) whenever (or almost always) when I
try to complete some of my recurring tasks (having deadlines) with:

C-c C-t

I get:

org--align-node-property: Match data clobbered by buffer modification hooks

I’ve followed advice and re-installed org, but the problem does persist.

I’ve found a thread in emacs-devel list in regard, but not sure what to
do and whether it’s better to downgrade to 24.5?


Sincerely,
Gour

-- 
Whenever and wherever there is a decline in religious practice,
O descendant of Bharata, and a predominant rise of irreligion —
at that time I descend Myself.




Re: [O] How are people handling their calendars?

2016-10-25 Thread Saša Janiška
Bartholomaios Edessa  writes:

> to export the org agenda into a format that gnome calendar can
> understand and forward it to google calendar. Maybe we will get full
> two-way sync as well. 
>
> This should be doable - at least for Gnome. 

Considering that org-caldav *worked* very nicely with several calendars,
I believe it would be easier to fix this one
https://github.com/dengste/org-caldav/issues/51 since it is ’universal’
solution and one can see synced calendars even on GNOME (within
Evolution and/or GNOME’s calendar).

Of course, if/when acquringing required skills, I’ll also try to take a
look since it’s the simplest/best solution.


Sincerely,
Gour

-- 
A person who is not disturbed by the incessant flow of
desires — that enter like rivers into the ocean, which is
ever being filled but is always still — can alone achieve
peace, and not the man who strives to satisfy such desires.




Re: [O] How are people handling their calendars?

2016-10-24 Thread Saša Janiška
Eric Abrahamsen  writes:

> org-caldav is otherwise a good, solid package, and I think it would be a
> shame to turn away from it because of a bug like this.

Well, at the moment it’s simply not usuable with more than one
calendar. I was using it in the past, but then wondered why my calendar
entries are messed up in my phone’c calendar.

Being relatively new Emacs user I still do not possess required Elisp
skills to fix it, so my current setup is that I simply use khal which is
synced with vdirsyncer to my Android phones and use org-mode for other
tasks not requiring entry on my phone.


Sincerely,
Gour

-- 
The embodied soul may be restricted from sense enjoyment,
though the taste for sense objects remains. But, ceasing
such engagements by experiencing a higher taste,
he is fixed in consciousness.




Re: [O] How are people handling their calendars?

2016-10-24 Thread Saša Janiška
Eric Abrahamsen  writes:

> I use the org-caldav package, and that works quite well for two-way
> sync. You can use sync multiple calendars, selecting by tags, etc.

I did use org-caldav to sync my phone contacts (DAVdroid) via ownCloud
with my desktop (khal/vdirsyncer), but, as confirmed by
https://github.com/dengste/org-caldav/issues/51 it does not work any
longer (I’ve a need to use 4 different calendars).

So, I’d be very happy to hear if you can sync multiple calendars with
newer versions of Emacs?


Sincerely,
Gour

-- 
One must deliver himself with the help of his mind, and not
degrade himself. The mind is the friend of the conditioned soul,
and his enemy as well.




[O] org-class/diary-float entries do not sync (org-caldav)

2016-06-22 Thread Saša Janiška
Hello,

I’m trying to enter repeated tasks for e.g. daily language classes
during the month of July, daily (Mon-Frid) from 08:00-12:00 in my org
file and sync them via org-caldav to get them on my phone (synced with
OwnCloud with Davdroid app.

In the beginning I tried with the following:

** english class
   <%%(org-class 2016 7 4 2016 7 29 2)> 08:00-12:00 english class

and the entry is added to my Agenda as:

gour-calendar:english class:gour::

but the time range is missing which can be ’fixed’ with:

** english class 08:00-12:00
   <%%(org-class 2016 7 4 2016 7 29 2)>

which gives entry for Tuesdays during July as:

gour-calendar: 8:00-12:00 english class   :gour::

The problem with the above is that it does not sync with
org-caldav-sync although it creates ID property.

Next thing I’ve tried is:


** english class
   <%%(diary-float 7 1 1)>

and the only way to get time range is to use:

** english class 08:00-12:00
   <%%(diary-float 7 1 1)>

but, again, the sync does not work and I also occasionaly run into
another problem - see this issue:

https://github.com/dengste/org-caldav/issues/91

By looking at org-caldav docs (https://github.com/dengste/org-caldav) it
looks that using org-class might be problematic indeed, but no idea why
the sync does not work with diary-float?

Moreover, there are several FAQs entries (http://orgmode.org/worg/org-faq.html)
showing similar/same examples and org-caldav docs says: „…If they are
inside an Org entry, there's a good chance they will be exported (see
below) and have an ID property, so they can be found by org-caldav…“, so
I’ll be grateful if someone can shed some light how to achieve the
desired result mentioned at the beginning?


Sincerely,
Gour

-- 
One who is able to withdraw his senses from sense objects,
as the tortoise draws its limbs within the shell,
is firmly fixed in perfect consciousness.




[O] webDAV setup for mobile-org (Android)

2016-02-11 Thread Saša Janiška
Hello,

org-mode works nicely with my ownCloud instance for syncing calendars by
using org-caldav and DAVdroid on my Android phone(s) and I'm going to
configure org-vcard to sync my contacts.

However, I'd like to use mobile-org to sync my tasks with via ownCloud,
but wonder about setting up proper URL for
http://url.com/path/index.org?


Sincerely,
Gour

-- 
Abandoning all attachment to the results of his activities,
ever satisfied and independent, he performs no fruitive action,
although engaged in all kinds of undertakings.




Re: [O] webDAV setup for mobile-org (Android)

2016-02-11 Thread Saša Janiška
Saša Janiška <g...@atmarama.com> writes:

> However, I'd like to use mobile-org to sync my tasks with via ownCloud,
> but wonder about setting up proper URL for
> http://url.com/path/index.org?

Ahh, found out, soon after posting. :-(

> Sincerely,
> Gour

-- 
When your intelligence has passed out of the dense forest
of delusion, you shall become indifferent to all that has
been heard and all that is to be heard.




[O] status of mobile (Android)

2016-01-29 Thread Saša Janiška
Hello,

I'm returning to Emacs-land and wonder whether mobile-org is still
working with org-mode?

Do you have any other recommendation to sync tasks with Android phones?

For contacts/calendars I was using org-vcard/org-caldav and they worked
pretty well via ownCloud, but now, when i use GNOME, I can't tell
whether calendars are visible on GNOME's status bar?

There is Orgly, which is not open-source, but not sure whether it's
better than mobileorg?

Is there something which would work with ownCloud?


Sincerely,
Gour

-- 
One must deliver himself with the help of his mind, and not
degrade himself. The mind is the friend of the conditioned soul,
and his enemy as well.