Re: [O] org-notify: Need to get notifications at the start time of the task (in addition to the deadline)

2016-06-08 Thread Nick Dokos
Amit Tendulkar writes: > Charles Philip Chan writes: > >> Marco Wahl writes: >> >>> http://emacs-fu.blogspot.de/2009/11/showing-pop-ups.html >>> looks promising. >> >> This is what I use: >> >>

[O] bug#23725: 25.0.94; Org mode uses removed aliases to scroll the calendar

2016-06-08 Thread Glenn Morris
Kyle Meyer wrote: > Ari Roponen writes: > >> Org mode uses aliases that were removed by this commit: >> >> commit 3f65970414538063e38ada2a47cb4ef4f35b630e >> Author: Glenn Morris >> Date: Sun Oct 5 19:02:04 2014 -0700 >> >> Remove calendar code

Re: [O] How to contribute?

2016-06-08 Thread Achim Gratz
aermo...@mirantis.com writes: > I'm also thinking of contributing to orgmode, so my question is - is > there any publicly available contributing guide, being SPOT for > newcomers? http://orgmode.org/worg/org-contribute.html If you think anything is missing or needs better explanation, make that

Re: [O] inline code block problem; first attempt

2016-06-08 Thread Eric S Fraga
Can you please post a complete example so that others can try it? Also, what version of org etc.? -- : Eric S Fraga (0xFFFCF67D), Emacs 25.0.94.1, Org release_8.3.4-869-gf2c421

Re: [O] How to contribute?

2016-06-08 Thread aermolov
Hi Bastien, I'm also thinking of contributing to orgmode, so my question is - is there any publicly available contributing guide, being SPOT for newcomers? Thanks -- Alex Bastien Guerry writes: > Hi Xi Shen, > >> I would like to make some code change to org-mode. I followed the

Re: [O] inline code block problem; first attempt (correction)

2016-06-08 Thread Charles Millar
On 06/08/2016 02:28 PM, Charles Millar wrote: C-c C-c works on this #+begin_src emacs-lisp :var totalcommissions=TOTALCOM[-1,-1] totalcommissions #+end_src #+RESULTS: : 0.0 but not on this Inline version src_emacs-lisp[:var totalcommissions=TOTALCOM[-1,-1]]{totalcommissions} What

[O] inline code block problem; first attempt

2016-06-08 Thread Charles Millar
C-c C-c works on this #+begin_src emacs-lisp :var totalcommissions=TOTALCOM[-1,-1] totalcommissions #+end_src #+RESULTS: : 0.0 but not on this Inline version src-emacs-lisp[:var totalcommissions=TOTALCOM[-1,-1]]{totalcommissions} What am I missing? Charlie Millar

Re: [O] org-notify: Need to get notifications at the start time of the task (in addition to the deadline)

2016-06-08 Thread Amit Tendulkar
Thanks Marco. Yes, appointment reminders will work for me. Any idea how to configure them in such a way that I get popups? Popups are helpful especially when my focus is not on Emacs. Or even when I am connected to a remote desktop (say through Citrix). Regards, Amit Marco Wahl

Re: [O] inline code block problem; first attempt

2016-06-08 Thread Charles Millar
I am getting careless. On 06/08/2016 02:36 PM, Eric S Fraga wrote: Can you please post a complete example so that others can try it? Also, what version of org etc.? sample.org file * TOTALCOM :ignoreheading: #+NAME: TOTALCOM #+ATTR_LATEX: :mode table

[O] Org HTML export (ReadTheOrg)

2016-06-08 Thread Fabrice Niessen
Dear all, FYI, ReadTheOrg (awesome CSS theme, I dear saying it ;-) [1], for your HTML exports from Org mode) is now "Web Responsive", thanks to a patch from Geekplux! Enjoy! See https://github.com/fniessen/org-html-themes for more information. Best regards, Fabrice [1] I just cloned the

[O] bug#23725: 25.0.94; Org mode uses removed aliases to scroll the calendar

2016-06-08 Thread Paul Eggert
I installed the patch and am marking this as done.

Re: [O] org-notify: Need to get notifications at the start time of the task (in addition to the deadline)

2016-06-08 Thread Charles Philip Chan
Amit Tendulkar writes: Hi Amit: > I put notify.el in my load path and added the following lines in my init > file. > > (autoload 'notify "notify" "Notify TITLE, BODY.") > (appt-activate 1) > (org-agenda-to-appt) > > Still I am getting only inline intimations for

[O] Where should I add a new utility function?

2016-06-08 Thread Xi Shen
Hi, I would like to add a utility function which will be used by the org-babel-execute:sql function. The function would look like this: +(defun platform-convert-file-name (file) + (if (fboundp 'cygwin-convert-file-name-to-windows) + (format "\"%s\"" (cygwin-convert-file-name-to-windows

Re: [O] How to setup a development for org-mode?

2016-06-08 Thread Xi Shen
I found the minimal-org trick works for me. On Wed, Jun 8, 2016 at 3:04 PM Robert Klein wrote: > Hi, > > On Wed, 08 Jun 2016 06:55:08 + > Xi Shen wrote: > > > Tried that at first, but got: > > > > Symbol's function definition is void:

[O] [PATCH] ob-sql.el: Support sqlcmd and cygwin environment

2016-06-08 Thread Xi Shen
Hi, I would like to apply this path to add sqlcmd support, and allow org-mode to execute and capture sqlcmd output in cygwin environment. I added a "platform-convert-file-name" function to convert a *nix path to Windows path. Should I put this function in ob-sql.el, or somewhere else? Thanks,

Re: [O] How to setup a development for org-mode?

2016-06-08 Thread Xi Shen
Tried that at first, but got: Symbol's function definition is void: org-babel--get-vars Maybe it is because I am in cygwin environment, so Emacs eval buffers differently? Thanks, David On Wed, Jun 8, 2016 at 2:42 PM Rasmus wrote: > Xi Shen writes: > >

Re: [O] How to setup a development for org-mode?

2016-06-08 Thread Rasmus
Xi Shen writes: > Hi, > > I want to make some change to the ob-sql.el file. But I don't want to "make > install" every time I change something. I tried to use “load-file" to > reload the file I changed, but I got symbol not found error. Open the file you've edited and do,

[O] Proposal to use sqlcmd for connecting to SQL Server

2016-06-08 Thread Xi Shen
Hi, I tried the use the msosql engine in org-mode, but it cannot format the result into a table. I think MS has made some change that the output of the command is not compatible with org-mode. More specifically, the output add "1> 2> 3> 4> " to the begging and break the table formatting. I saw

Re: [O] How to setup a development for org-mode?

2016-06-08 Thread Robert Klein
Hi, On Wed, 08 Jun 2016 06:55:08 + Xi Shen wrote: > Tried that at first, but got: > > Symbol's function definition is void: org-babel--get-vars > > Maybe it is because I am in cygwin environment, so Emacs eval buffers > differently? You are using org-mode 8.3.4

Re: [O] inline code block problem; first attempt

2016-06-08 Thread Charles C. Berry
On Wed, 8 Jun 2016, Eric S Fraga wrote: Can you please post a complete example so that others can try it? Also, what version of org etc.? A bug in `org-element-inline-src-block-parser', I think. Here is an ECM: src_emacs-lisp[:var totalcommissions=TOTALCOM]{totalcommissions}

Re: [O] UEFA EURO 2016 schedule for Org-mode

2016-06-08 Thread Igor Sosa Mayor
Sauli Heinola writes: > Hello! > > Taking inspiration from djcb's EURO 2012 [1] and Ruediger's 2014 World > cup [2] schedules, I whipped up the schedule for the EURO 2016 for > Org-mode, which can be retrieved from https://github.com/n2o4/org-uefa-2016 > > All times are CEST

[O] org-get-tags-at

2016-06-08 Thread Fabrice Popineau
Hi, I'm trying to program some stuff of my own and either I misunderstand the documentation or something is wrong with #'org-get-tags-at. I have a heading: * Bar :foo:bar:baz: (org-get-tags-at) while on the heading returns ("baz") I would expect ("foo" "bar" "baz") What is

[O] [PATCH} Re: inline code block problem; first attempt

2016-06-08 Thread Charles C. Berry
Patch atteched. Replaced ']' with '{' in the regex `header' group. Comments? Chuck From 2a060d4ca51dabbc6931a1483ae6c0ac29e0586c Mon Sep 17 00:00:00 2001 From: Charles Berry Date: Wed, 8 Jun 2016 19:36:30 -0700 Subject: [PATCH] org-element-inline-src-block-parser fix