Re: [O] Bug: Org table mal-format with number [9.1.5 (9.1.5-1-gb3ddb0-elpaplus @ /home/gongzhitaao/.emacs.d/.cask/25.2/elpa/org-plus-contrib-20171225/)]

2017-12-29 Thread Nicolas Goaziou
Hello, Zhitao Gong writes: > Org table mal-format with numbers > > Example > > | hello | world | hello | > | 5 | hello | > > When you hit the at the above location, weird format occurs You may be hitting a transient bug, which was fixed a few days ago. You need to

Re: [O] Is there a way to get all agenda TODOs programmatically?

2017-12-29 Thread Marcin Borkowski
On 2017-10-07, at 18:54, Matt Lundin wrote: >>> Finally, if you want simply to gather the todo data programmatically for >>> further processing you can use the function org-map-entries. >> >> Thanks, that seems to be a good pointer. I'll check it out. > > I think something

[O] Bug: Org table mal-format with number [9.1.5 (9.1.5-1-gb3ddb0-elpaplus @ /home/gongzhitaao/.emacs.d/.cask/25.2/elpa/org-plus-contrib-20171225/)]

2017-12-29 Thread Zhitao Gong
Org table mal-format with numbers Example | hello | world | hello | | 5 | hello | When you hit the at the above location, weird format occurs I had minimum setup at outlined in http://orgmode.org/manual/Feedback.html. ---

Re: [O] [IMPORTANT] Server migration: please update your git repositories before 31/12/2017

2017-12-29 Thread Bastien Guerry
Correcting myself: Bastien Guerry writes: > You can clone Org from the new server with one of these commands: > > ~$ git clone g...@code.orgmode.org:bzg/org-mode.git ^^^ This is for when you have an account on code.orgmode.org and want to clone through ssh. > ~$

Re: [O] ob-python noweb and :var reference error

2017-12-29 Thread stardiviner
This seems fixed not string problem. But I got new error: ```    File "", line 9     client = DelugeRPCClient('127.0.0.1', 58846, , 9b83ceded9ac08cc5c7403b093115874a6086958 ^ SyntaxError: invalid syntax ``` I execute src block: #+NAME: deluge-daemon-username #+begin_src shell cat

Re: [O] [IMPORTANT] Server migration: please update your git repositories before 31/12/2017

2017-12-29 Thread Bastien Guerry
Hi Achim, Achim Gratz writes: > And if you'd read through the entirety of the Register article you > linked to you'd find that presumably any existing OSS hosting would > continue to be free, so why exactly does Org need to migrate? I didn't decide to migrate the server

Re: [O] [IMPORTANT] Server migration: please update your git repositories before 31/12/2017

2017-12-29 Thread Bastien Guerry
Hi Michael, Michael Welle writes: > thank you all, who are involved in keeping Org going. Not only the > people, who provide infrastructure, but also the people, who do the daily > work, who provide patches and the people, who use Org. +1! > Is there a way to throw a bit of

Re: [O] ob-python noweb and :var reference error

2017-12-29 Thread Nicolas Goaziou
stardiviner writes: > If I use that noweb reference, then I got this error: > >>  File "", line 8 >>     client = DelugeRPCClient('127.0.0.1', 58846, cat > ~/.config/deluge/auth | cut -d ":" -f 1, cat ~/.config/deluge/auth | > cut -d ":" -f 2) >  

Re: [O] ob-python noweb and :var reference error

2017-12-29 Thread stardiviner
If I use that noweb reference, then I got this error: >  File "", line 8 >    client = DelugeRPCClient('127.0.0.1', 58846, cat ~/.config/deluge/auth | cut -d ":" -f 1, cat ~/.config/deluge/auth | cut -d ":" -f 2) ^ SyntaxError: invalid

Re: [O] ob-python specify :session error

2017-12-29 Thread numbch...@gmail.com
After Edebug: I found the problem location: - [ ] org-babel-execute:python #+begin_src emacs-lisp (session (org-babel-python-initiate-session (cdr (assq :session params #+end_src - [ ] org-babel-python-initiate-session - [ ]

Re: [O] ob-python specify :session error

2017-12-29 Thread Nicolas Goaziou
"numbch...@gmail.com" writes: > Still get same error: >> org-babel-python-evaluate-session: Buffer *Python-*Python** does not > exist or has no process As demonstrated in my output, I cannot reproduce your problem, then. Regards,

[O] bug#24865: more information

2017-12-29 Thread Nicolas Goaziou
Hello, Wensheng Xie writes: > Hi, bug-fixer: > > I find out that my link description text contain "[" and "]" so that the > display is not correct. > > Is it a bug or is there a way to use "[" and "]" in the description > text? Square brackets are forbidden in

[O] bug#24791: bug#24791: org-todo-yesterday behaves like plain org-todo (incorrect timestamp)

2017-12-29 Thread Nicolas Goaziou
Hello, Allen Li writes: > I can confirm that it's fixed on 9.1.4 (org-plus-contrib-20171205) I'm closing the report, then. Thank you. Regards, -- Nicolas Goaziou0x80A93738

Re: [O] ob-python specify :session error

2017-12-29 Thread numbch...@gmail.com
Still get same error: > org-babel-python-evaluate-session: Buffer *Python-*Python** does not exist or has no process [stardiviner] GPG key ID: 47C32433 IRC(freeenode): stardiviner Twitter: @numbchild Key fingerprint = 9BAA 92BC CDDD B9EF 3B36 CB99 B8C4 B8E5

Re: [O] ob-python noweb and :var reference error

2017-12-29 Thread Nicolas Goaziou
Hello, stardiviner writes: > I installed python packages through `pip`: > > #+begin_src shell > pip install deluge-client > #+end_src > > > If you want to test those src blocks, you also need to make sure Deluge > installed and daemon started. > > And use `deluge-client`

[O] ob-python noweb and :var reference error

2017-12-29 Thread stardiviner
I installed python packages through `pip`: #+begin_src shell pip install deluge-client #+end_src If you want to test those src blocks, you also need to make sure Deluge installed and daemon started. And use `deluge-client` like this: #+NAME: deluge-daemon-username #+begin_src shell cat

Re: [O] ob-python specify :session error

2017-12-29 Thread Nicolas Goaziou
Hello, stardiviner writes: > I have following org content: > > I define variable in Python inferior REPL (launched by [M-x run-python]) > > Python> name = "chris" > > #+begin_src python :session "*Python*" > print(name) > #+end_src > > But I got error: > > >

[O] ob-python specify :session error

2017-12-29 Thread stardiviner
I have following org content: I define variable in Python inferior REPL (launched by [M-x run-python]) Python> name = "chris" #+begin_src python :session "*Python*" print(name) #+end_src But I got error: > org-babel-python-evaluate-session: Buffer *Python-*Python** does not exist or has no

Re: [O] [IMPORTANT] Server migration: please update your git repositories before 31/12/2017

2017-12-29 Thread Achim Gratz
Am 28.12.2017 um 18:12 schrieb Bastien Guerry: thanks to Jason Dunsmore, we were able to have our orgmode.org server sponsored by Rackspace. Their OSS hosting program ends by the end of the year¹. Thanks a lot to Rackspace for this program, it saved us a lot of money! And to Jason for letting

[O] bug#29885: 25.3; org-mode table messing up!

2017-12-29 Thread Marco Wahl
The following message is a courtesy copy of an article that has been posted to gmane.emacs.orgmode as well. Eli Zaretskii writes: >> From: rahuljuli...@gmail.com >> Date: Thu, 28 Dec 2017 22:23:59 -0200 >> >> Starting from emacs -Q, table TABs are ok and does the job. Could you

[O] bug#29885: 25.3; org-mode table messing up!

2017-12-29 Thread Eli Zaretskii
> From: rahuljuli...@gmail.com > Date: Thu, 28 Dec 2017 22:23:59 -0200 > > Starting from emacs -Q, table TABs are ok and does the job. > > But if I start with emacs (even without a .emacs file), i get something > like: > > Table: > > | a | a | a | a | a | a | > | | | | | | | >