[O] Problem with org-mode after upgradiing to org 8

2014-06-30 Thread Roland Everaert
Hi, I have recently upgraded to org-mode version 8. Each time I start emacs I see the folloinwg error: error Autoloading failed to define function org-element-cache-reset And some functionnality of org-mode doesn't seems to work anymore. Informa

Re: [O] Problem with org-mode after upgradiing to org 8

2014-06-30 Thread Roland Everaert
if that solves the problem? Thanks for your help. On Mon, Jun 30, 2014 at 11:24 AM, Roland Everaert reveatw...@gmail.com wrote: Hi, I have recently upgraded to org-mode version 8. Each time I start emacs I see the folloinwg error: error Autoloading failed to define function org-element-cache-reset

Re: [O] Problem with org-mode after upgradiing to org 8

2014-07-03 Thread Roland Everaert
Hendy jw.he...@gmail.com wrote: On Tue, Jul 1, 2014 at 5:04 AM, Roland Everaert reveatw...@gmail.com wrote: I have upgraded using git on a Linux fedora 20 64 bit. I perform the following commands from the directory of org-mode: make clean git pull make I usually do git pull make

Re: [O] Problem with org-mode after upgradiing to org 8

2014-07-04 Thread Roland Everaert
that function call generate such error. Thanks for your help, Roland. On Thu, Jul 3, 2014 at 10:10 AM, Roland Everaert reveatw...@gmail.com wrote: Hi John, I am using Bernt's configuration (at least a part of it) for years without problems until I switch to org 8. I hame commented most of my

Re: [O] Problem with org-mode after upgradiing to org 8

2014-07-14 Thread Roland Everaert
-g7524ef @ /usr/share/emacs/24.3/lisp/org/) Any help welcomed, Roland. On Fri, Jul 4, 2014 at 4:21 PM, John Hendy jw.he...@gmail.com wrote: On Fri, Jul 4, 2014 at 5:55 AM, Roland Everaert reveatw...@gmail.com wrote: Hi, After further investigation, it is the call to the function (org

Re: [O] Using org-mode as a personal help desk tool

2016-06-22 Thread Roland Everaert
org-attach was the feature I needed. Thank you. On Mon, Jun 20, 2016 at 4:10 PM, Eric Abrahamsen <e...@ericabrahamsen.net> wrote: > Roland Everaert <reveatw...@gmail.com> writes: > > > Hi, > > > > I am working as a sysadmin, In the organization, we use 2 tool

[O] Using org-mode as a personal help desk tool

2016-06-20 Thread Roland Everaert
Hi, I am working as a sysadmin, In the organization, we use 2 tools to keep track of requests sent by the customers/users. As you can expect, those tools are not meant to be used to track all the gritty details of a sysadmin's job. So I am turning to org-mode (that I used for years) and its

[O] org-use-sub-superscripts not used in HTML export

2017-01-31 Thread Roland Everaert
Hi, During HTML export, whatever is the value of org-use-sub-superscripts, the undescore in the middle of a word is alway interpreted as subscript. Example: _F_irst _L_evel In this case, if org-use-sub-superscripts has the value {} or nil, I would expect to see the first letter of both words

[O] Unable to run ditaa on cygwin emacs

2017-01-31 Thread Roland Everaert
Hi, I use Cygwin emacs with Windows UI. I have just installed java 8 (but java 6 is still present for some legacy application) and updated my .bash_profile with the following: export JAVA_HOME=/cygdrive/c/tools/java8 export PATH=$PATH:$JAVA_HOME/bin Org is configured to run ditaa code blocks,

[O] Modifying keys in the export dispatch menu

2017-02-02 Thread Roland Everaert
Hello, I have activated the mediawiki exporter, unfortunately it uses the same keys than the markdown export in the dispatcher menu. Is it possible to change those keys through configuration or is it the responsibility of the developers to choose wisely there keys? Regards,

[O] Tables not converted to markdown format with markdown exporter

2017-02-08 Thread Roland Everaert
Hi, Since a few weeks we use mattermost at work and I had recently to post a table to a team channel. I have created my table with org-mode, but when I export it to markdown format, the table is converted to html instead of markdown. Is there any reason to that, except the simple fact that table

[O] Bug: Emacs hangs with badly defined multi characters key hierarchy in org-capture-templates [9.0 (9.0-dist @ /cygdrive/c/Users/re/.emacs.d/site-lisp/org-9.0/lisp/)]

2017-01-27 Thread Roland Everaert
Hi, When using multicharacters keys, if a key definition entry is missing, emacs hangs and must be killed. Example of an offending org-capture-templates definition: (setq org-capture-templates '(("t" "Todo" entry (file+headline "~/somefile.org" "Tâches") "* TODO %?\n %i\n"

Re: [O] org babel table header sent to awk code block

2017-02-17 Thread Roland Everaert
wrote: > On Friday, 17 Feb 2017 at 12:33, Roland Everaert wrote: > > Hi, > > > > I am trying to filter a table using the following awk code block. > > I think your problem is an error in the awk script; specifically, the > match is outputting all lines because you n

[O] org babel table header sent to awk code block

2017-02-17 Thread Roland Everaert
Hi, I am trying to filter a table using the following awk code block. #+BEGIN_SRC awk :stdin list-example :var fstcol=1 :var seccol=3 :results output org BEGIN { print "|Host|Result" print "|-" } $seccol ~ /[0-9]{1,3}(\.[0-9]\{1,3\}){3}/ { print "|"$fstcol"|"$seccol } #+END_SRC

[O] org-capture-templates with multi charachter keys

2017-01-18 Thread Roland Everaert
Hello, Is there somewhere in the org documentation or on the internet a complete example of using multi-character keys in org-capture. This excerpt from the documentation is not clear to me :/ "The keys that will select the template, as a string, characters only, for example "a" for a template

[O] clocktable - summing time on a property instead of headline

2016-09-16 Thread Roland Everaert
Hi, I am treating multiple tasks that can belong to the same project or different project, but as I have an (almost) infinite number of projects and I am working on many projects throughout the day, I prefer to define a property that will contain the project code instead of a tree for each

[O] Unable to access the org-mode ELPA repo

2016-11-04 Thread Roland Everaert
Hi, I am using emacs on a Windows 7 machine at work. I have decided, today, to switch to ELPA to install org-mode (or any other package), but I am totally unable to configure emacs properly to reach the repositories. I have the following errors when emacs starts or when I ask emacs to refresh

Re: [O] Using code block function as formula in tables

2017-01-12 Thread Roland Everaert
, On Wed, Jan 11, 2017 at 3:51 PM, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Roland Everaert <reveatw...@gmail.com> writes: > > > Is it possible to call a code block from a table field as it is a > formula? > > > > I have tried the follo

[O] Using code block function as formula in tables

2017-01-11 Thread Roland Everaert
Hi, Is it possible to call a code block from a table field as it is a formula? I have tried the following syntax from a field in a table, but none of them is interpreted as expected: - #+CALL: function(parameters) - call_function(parameters) The goal is to use the result of the call in other

Re: [O] Plone?

2017-04-10 Thread Roland Everaert
Maybe you can have a look at this page: https://docs.plone.org/about/helper_tools.html On Mon, Apr 10, 2017 at 11:56 AM, Michael Welle wrote: > Hello, > > it happens to me that I now have to use a CMS named plone to document > things I do ;). Has anyone tried to export to

Re: [O] Plone?

2017-04-10 Thread Roland Everaert
After reading again the article, it seems more related to development documentation and not blogging. On Mon, Apr 10, 2017 at 1:10 PM, Michael Welle <mwe012...@gmx.net> wrote: > Hello, > > Roland Everaert <reveatw...@gmail.com> writes: > > > Maybe you can have a lo

Re: [O] Ruby or Python or Something

2017-07-17 Thread Roland Everaert
I guess it depends if you need to access external resources or not (DB, webservices) or if you need to do heavy computations, for exemple. If not and if you know lisp well, then, I think, it is better to stick with it. As a dev/sysadmin, I tend to use whatever language suites my needs when

[O] clock-table property column empty

2017-05-17 Thread Roland Everaert
Hi, In a clocktable I have a column that must show the content of a property I fill in each of my tasks. Since version 9.0.6, at least, this column is empty. Any idea where this comes from? Emacs and Org-mode versions: GNU Emacs 25.2.1 (x86_64-unknown-cygwin) of 2017-04-21 Org mode version

[O] Agenda View - Table report - Granularity of time computed

2017-06-01 Thread Roland Everaert
Hi, I have noticed that the computation of time in the agenda report (key 'R') is based on the granularity of the functions to increment or decrements time in a clock entry inside a logbook. I know that this granularity can be changed and that I could set it to 1, but why the time computation in

Re: [O] 9.0.6 and clock tables

2017-05-08 Thread Roland Everaert
I just see this. Since this morning my clocktable doesn't fill a column related to a property, any known issue and workaround/fix for this? Regards, On Mon, May 8, 2017 at 10:37 AM, Eric S Fraga wrote: > On Sunday, 7 May 2017 at 10:16, Nicolas Goaziou wrote: > > Would you

[O] No contrib directory in org-plus-contrib package

2017-05-03 Thread Roland Everaert
Hi, I have installed org-mode from ELPA and choose to install the version with the contribution, but the directory is missing in the org-plus-contrib package directory, and the docs directory as well. Have I missed something or is their something screwed in the build of the package? I use Emacs

Re: [O] How to include diary anniversary entries into default org-agenda?

2017-12-20 Thread Roland Everaert
I don't know for the agenda, but if you install calfw and calfw-cal, you can see your diary entries in a "more graphical" calendar. On Wed, Dec 20, 2017 at 4:21 AM, stardiviner wrote: > I have an org-mode file: > > #+begin_src org > ,* Anniversary > > ,** my first child

[O] File name format in ARCHIVE property

2017-11-21 Thread Roland Everaert
Hi, I would like to archive subtree in an archive file with the format: %s-_archive Where is the current year and month. Is this possible and if yes how? Where can I find the possible formatting option for that property? Regards, Roland.

[O] Multi-layer ergonomic keyboard and org-mode

2017-10-26 Thread Roland Everaert
Hi, I am considering buying this quite expensive ergonomic keyboard. https://ergodox-ez.com/ This device can manage up to 32 layers and I wonder how a regular emacs and org-mode user would organize the layers. This organization depends on your workflow, but their is surely some standard key

[O] Question about org-id-update-id-locations

2018-02-02 Thread Roland Everaert
Hello, I am currently writing a function to remove duplicated Ids reported by org-id-update-id-locations, but as of now I am using the output in *Messages*, which is far from ideal. Is there another way to get that list? Would it be possible to have all occurrences of each IDs instead of just

[O] Clocktable - Grouping time per property instead of headline

2018-08-06 Thread Roland Everaert
Hi, I have a clock table that displays the accumulated time for each entry for the previous week with a step of a day. I would like to have modify it so that the accumulated time is grouped based the value of a property instead of the headline. If the property is not present, the clock table

Re: [O] clocktable - Wrong type argument: plistp - after upgrade

2018-08-27 Thread Roland Everaert
I seems that with version Org mode version 9.1.13 (9.1.13-elpa @ /cygdrive/c/Users/re/.emacs.d/elpa/org-20180730/), the problem has disappeared. Regards, Roland. On Mon, Aug 20, 2018 at 12:38 PM Nicolas Goaziou wrote: > Hello, > > Roland Everaert writes: > > > After s

[O] clocktable - Wrong type argument: plistp - after upgrade

2018-07-23 Thread Roland Everaert
Hi, After an upgrade of both cygwin and org-mode, I am not able to refresh my clock table. Here is the clocktable declaration: #+COLUMNS: %60ITEM %7imputation %TODO %3PRIORITY %TAGS# +BEGIN: clocktable :block thisweek-1 :maxlevel 5 :scope agenda-with-archives :properties ("imputation")

Re: [O] clocktable - Wrong type argument: plistp - after upgrade

2018-07-23 Thread Roland Everaert
After some search, I have found this option causing the error. It is :fileskip0. If I remove it from the #+BEGIN line, the clocktable is computed and displayed. On Mon, Jul 23, 2018 at 8:23 AM, Roland Everaert wrote: > Hi, > > After an upgrade of both cygwin and org-mode, I am

Re: [O] Connecting to Org ELPA via an HTTP proxy from Emacs 25 and older

2018-03-15 Thread Roland Everaert
I also face the same problem, which forces me to download and install manually the package instead of using the ELPA repo. I would also appreciate a change in behavior of the webserver. Thanks, Roland. On Wed, Mar 14, 2018 at 11:14 PM, Keshav Kini wrote: > Hi, > >

[O] Creating mu4e-like screens for org-mode

2018-03-19 Thread Roland Everaert
Hi, I would like to create a set of screens for dealing with org-mode like mu and notmuch does with maildir. So I am searching good resources, like guidelines, that explain how to build that can of features. I could look directly into the code of those projects or the agenda view, but I would

Re: [O] Connecting to Org ELPA via an HTTP proxy from Emacs 25 and older

2018-03-21 Thread Roland Everaert
The problem is solved for me. Thank you, Roland. On Wed, Mar 21, 2018 at 12:27 AM, Bastien wrote: > Hi Keshav and Roland, > > I was not aware the redirection could cause such a problem. > > Both http://orgmode.org and https://orgmode.org should now > work, let me know if this

Re: [O] Fwd: how do you compose mails in Gnus with org-mode

2018-03-01 Thread Roland Everaert
I also want to thank you for the last link, notmuch seems waht I was search for too. Regards, Roland. On Thu, Mar 1, 2018 at 8:01 PM, Brian Shine wrote: > Thank you so much. This looks like a great website. I’ll have a read and > see whether I can get it to work. I

Re: [O] electric-pair, autopair, smartparens, etc in org-mode

2018-10-23 Thread Roland Everaert
Hi, I use the following configuration: parenthèses, accolades et brackets ;; (setq skeleton-pair t) (global-set-key "[" 'skeleton-pair-insert-maybe) (global-set-key "{" 'skeleton-pair-insert-maybe) (global-set-key "(" 'skeleton-pair-insert-maybe)

Re: [O] electric-pair, autopair, smartparens, etc in org-mode

2018-10-24 Thread Roland Everaert
changing it. stardiviner writes: > Roland Everaert writes: > >> Hi, >> >> I use the following configuration: >> >> parenthèses, accolades et brackets ;; >> (setq skeleton-pair t) >> (global-set-key "[

Re: [O] Org mode + Solid = collaborative, privacy-respecting future

2018-10-03 Thread Roland Everaert
I would also like to see something developped in ths direction. Karl Voit writes: > Hi! > > I stubled over Tim Berners-Lee Solid: > https://www.fastcompany.com/90243936/exclusive-tim-berners-lee-tells-us-his-radical-new-plan-to-upend-the-world-wide-web >

Re: [O] An Org-based productivity tool

2018-10-11 Thread Roland Everaert
Regarding auto-clocking, you should look at what norang did. http://doc.norang.ca/org-mode.html To motivate people focusing on there work, something like the link below could be an idea, especially for gamers ;) https://habitica.com/static/home Samuel Wales writes: > auto-clocking might be

Re: [O] An Org-based productivity tool

2018-10-11 Thread Roland Everaert
, create an interface to the service or duplicating the service in Emacs/Org Mode? > > > Roland Everaert writes: > >> Regarding auto-clocking, you should look at what norang did. >> >> http://doc.norang.ca/org-mode.html >> >> To motivate people focusing on

[O] Regresssion in org-capture?

2019-04-02 Thread Roland Everaert
nd (("C-c l" . org-store-link) ("C-c b" . org-iswitchb) ("C-c c" . org-capture)) ) (setq org-capture-templates `(("b" "Add url to bookmarks DB" entry (file+headline "~/org/private/bookmarks.org"

Re: [O] New bug in org-agenda?

2019-03-04 Thread Roland Everaert
Hi, I am facing the same issue with that version on emacs 25.2.2 (Ubuntu 18.04.2 LTS). When will it be available throu the Org Mode ELPA repo? Regards, Roland. Nicolas Goaziou writes: > Hello, > > Richard Stanton writes: > >> Using Org mode version 9.2.1 (9.2.1-33-g029cf6-elpaplus), I get

Re: [O] New bug in org-agenda?

2019-03-04 Thread Roland Everaert
Thanks, then I will try it later today. Regards, Roland. Nicolas Goaziou writes: > Hello, > > Roland Everaert writes: > >> I am facing the same issue with that version on emacs 25.2.2 (Ubuntu >> 18.04.2 LTS). >> >> >> When will it be available

[O] URL storage and search - Bookmark+ vs Org Mode

2019-02-20 Thread Roland Everaert
of the community with both tools and how you store your internet bookmarks, both to store a particular article or the home page of a website? Thanks for your time, Roland Everaert. -- Luke, use the FOSS Sent from Emacs

Re: [O] URL storage and search - Bookmark+ vs Org Mode

2019-02-22 Thread Roland Everaert
> quick locating and search. All in one command. Using Org, you can add > > extra info anything you want to take note about bookmarks, not just URL > > and title. > > > > Roland Everaert writes: > > > >> Hello, > >> > >> I am still d

Re: [O] Regresssion in org-capture?

2019-04-11 Thread Roland Everaert
Hello, With the last version from org ELPA, I can confirm that the bug is fixed. Thanks, Roland. Nicolas Goaziou writes: > Hello, > > Roland Everaert writes: > >> Since a few weeks, the following template didn't work anymore. >> >> (setq org-capture-temp

[O] bug#35419: bug#35419: [Proposal] Buffer Lenses and the Case of Org-Mode (also, Jupyter)

2019-05-03 Thread Roland Everaert
For what I understand of eev (which I discover following this thread), the idea is to create "notebooks" (à la Jupyter) of commands that can be executed in any orders the user want. So, lenses could be useful to apply the correct mode the block of code at point. Dmitrii Korobeinikov writes: >>

Re: [O] bug#35419: [Proposal] Buffer Lenses and the Case of Org-Mode (also, Jupyter)

2019-04-26 Thread Roland Everaert
I see lens to be useful for the eev mode, too. Roland. Dmitrii Korobeinikov writes: >> Have you looked at Phil Lord's lentic package? I think it implements a >> lot of what you're talking about. > >> https://github.com/phillord/lentic > > This is nice to see! > Indeed, except for embedding,

Re: Anyone use 3rd party search tools w/org-mode?

2019-11-06 Thread Roland Everaert
Hello all, I am interested in a search/indexing engine targeting the org format, too. My interest comes from the fact that I have a growing number of org files and as org-mode has no file archiving feature, AFAIK, searching needs more and more time to complete. Moving files, that are no more

Re: Anyone use 3rd party search tools w/org-mode?

2019-11-13 Thread Roland Everaert
was made, open the url in firefox AND copy it to the >> clipboard >> [ $? -eq 0 ] && { >> URL="$(awk "\$1 == $SEL {print \$3}" $DB | base64 -w0 -d)" >> echo "$URL" | sed 's,file://,,g' | xsel >> firefox "$URL

Re: Anyone use 3rd party search tools w/org-mode?

2019-11-12 Thread Roland Everaert
I had a quick look at the recoll and I notice that there is a python API to update/create index. Maybe something could be developped using the python package recently released by Karl Voit, to feed a recoll index with org data. Roland. Roland Everaert writes: > Good to know, I will have a l

Re: Anyone use 3rd party search tools w/org-mode?

2019-11-08 Thread Roland Everaert
Is it me or Swish-e is dead? The url www.swish-e.org, leads to a whisky e-shop oO. Eric Abrahamsen writes: > John Kitchin writes: > >> The way I got Swish to index org files was to create a script that >> generated an xml file >>

Re: Anyone use 3rd party search tools w/org-mode?

2019-11-08 Thread Roland Everaert
; --- >> Professor John Kitchin >> Doherty Hall A207F >> Department of Chemical Engineering >> Carnegie Mellon University >> Pittsburgh, PA 15213 >> 412-268-7803 >> @johnkitchin >> http://kitchingroup.cheme.cmu.edu >> &

Re: Help me secure some free time for org-mode in 2020

2019-12-17 Thread Roland Everaert
Hello Bastien, Nice to see you are still alive ;) Sad to read that you plan to stepdown, but, happy to finally have a way to support your work on a regular basis. I hope you will continue to be part of this community even as an humble user ;). And I hope, everything will be better for you in

Re: [Idea] Org Collections

2019-12-16 Thread Roland Everaert
+1 for this idea. You speak about one document used by multiple collections, how do you plan to manage that from a file system point of view? How will be organized a collection, still from the FS point of view? As some are delving into the abyss of sementic, I propose aspects instead of

Re: [Idea] Org Collections

2019-12-16 Thread Roland Everaert
xample, 'aspects' for me is more like a different view into a > 'thing' while collections are more like distinct, separate collections of > 'things'. To some extent, aspects feels like a 'virtual collection' > where collection is more like a concrete separation. I can see pros > and cons with b

Re: [Idea] Org Collections

2019-12-23 Thread Roland Everaert
Gustav Wikström writes: > Hi! > >> -Original Message- >> From: Emacs-orgmode On Behalf >> Of Roland Everaert >> Sent: den 16 december 2019 12:26 >> To: emacs-orgmode@gnu.org >> Subject: Re: [Idea] Org Collections >> >> +1 f

Re: [PATCH] Skip entries with no ID when updating ID locations

2020-02-21 Thread Roland Everaert
A note related to duplicate IDs, the messages only shows one of the duplicate, so it is not easy to know which one to change. This have implication when creating links to headline using their IDs. And does the current algorithm for finding duplicates check their reference through the "org db"?

Error running timer ‘org-alert-check’: (args-out-of-range "" 0)

2020-01-10 Thread Roland Everaert
Hello, First, best wishes. Currently emacs is hanging during startup. In a terminal, running the following command unblock the init phase and emacs finish loading up properly. kill -USR2 In the *Messages* buffer, I see the message shown in the subject line of this mail. Removing my org-alert

Re: issue tracker?

2020-05-19 Thread Roland Everaert
Sourcehut seams interesting. Did you know if importing github/gitlab projects, with issues and merge requests (opened and closed) is supported at the moment? I noticed it is in alpha, so I don't expect to see all the features of any of those forges yet. Before I forget, Does magit+forge works

Re: issue tracker?

2020-05-23 Thread Roland Everaert
as simple discussion, without a proper sanitation of the thread subject. * I am not sure this is clear even for me :/* On Fri, May 22, 2020 at 4:54 PM Anthony Carrico wrote: > On 5/22/20 4:17 AM, Roland Everaert wrote: > > Example of message states: > > [QUESTION] -> [ANSWER]

Re: emacs + org-mode in virtual machine/docker/...

2020-05-23 Thread Roland Everaert
& a windows > NOMACHINE client on your Windows host machine & login to your Linux virtual > machine desktop > > > > > > > > > https://www.nomachine.com/ > > On Fri, May 22, 2020 at 4:08 AM Roland Everaert > wrote: > >> I am a user of

Re: emacs + org-mode in virtual machine/docker/...

2020-05-22 Thread Roland Everaert
I am a user of emacs on virtual machines at work, and the environment works pretty well. I use virtual box as the provided workstation host windows, but the virtual machine host a linux os though. The only thing I didn't manage to do yet, is to allow the windows host to access the guest using SSH.

Re: issue tracker?

2020-05-22 Thread Roland Everaert
I will surely state the obvious, but the output of this discussion is that ther4e is a need for everybody, what ever our relationship to org-mode or emacs, needs a way to filter the various conversation about org-mode on the various communication channel used by the project. This mainly imply

Re: issue tracker?

2020-05-25 Thread Roland Everaert
, 2020 at 02:57:26PM +0200, Roland Everaert wrote: > > There must be also some kind of "protocol" to transition between the > > various discussions, like > > - from bug to a normal question > > - normal question to a feature request > > > > You ar