Re: [O] Tagging an entire org file

2016-06-14 Thread Arun Isaac
> #+FILETAGS: foo That's just what I was looking for. Thank you! signature.asc Description: PGP signature

Re: [O] [PATCH] org-babel-goto-named-src-block bugfix and test

2016-06-14 Thread Marco Wahl
>>> The test uses lines like: >>> >>> (execute-kbd-macro "\M-xorg-babel-goto-named-src-block\n\n") >>> >>> to emulate interactive usage. >>> >>> This feels like a hack, and the messages generated spill into my >>> *shell* buffer when I run `make test'. If there is a cleaner way to >>> do

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

2016-06-14 Thread Nicolas Goaziou
Hello, Xi Shen writes: > I think I uploaded the wrong patch. Sorry~ Please check this one. It looks good. Thank you. I have one minor comment about it, see below. Also, could you provide an entry for ORG-NEWS since this is a user visible change? > +(defun

Re: [O] [BUG] [PATCH] ox-rss: Put email address in element

2016-06-14 Thread Nicolas Goaziou
Hello, Arun Isaac writes: > The RSS specification requires the email address and the name of the > author to be provided in the element in the format > "em...@domain.com (Name)". > > http://www.rssboard.org/rss-specification#ltauthorgtSubelementOfLtitemgt > >

Re: [O] [PATCH] org-babel-goto-named-src-block bugfix and test

2016-06-14 Thread Nicolas Goaziou
Hello, Marco Wahl writes: > I have no idea for a cleaner implementation of these tests. AFAICS > these tests look good (and also your code.) If someone has a better > idea for the tests they can be changed. I don't. > I would drop test > > #v+ > ;; non-existent name

[O] MobileOrg: adding new file

2016-06-14 Thread Benoît Coste
Hello So what I wanted to discuss was the possibility for a MobileOrg to create new files from its phone and keep them synched. Currently the list of synched files is a file called "index.org" stored in the synch folder and Emacs and MobileOrg use ite for pulling changes. However everytime Emacs

[O] Thank you!

2016-06-14 Thread Gyro Funch
I have recently adopted org-mode for both task lists and technical writing and wanted to express my sincere thanks to the creator, developers, and maintainers for such a wonderful piece of software. Keep up the great work! -gyro

Re: [O] [PATCH]: Fix latex image bug in org-mime-org-buffer-htmlize

2016-06-14 Thread Nicolas Goaziou
Hello, Carlo Nucera writes: > attached is a patch that should fix a bug in the function > org-mime-org-buffer-htmlize (thanks to punchagan on irc!). > > When exporting an org buffer with a latex snippet including the org > option tex: dvipng the images were always created in

Re: [O] extract a region from a table and export it

2016-06-14 Thread John Kitchin
How about: #+tblname: grades || H1 | H2 | H3 | |+++| | P1 | 90 | 89 | 91 | | P2 | 67 | 65 | 78 | | P3 | 99 | 98 | 97 | collect row 0 and 2, columns 0 (P) and 2 (H2) #+BEGIN_SRC emacs-lisp :var data=grades (loop for i in '(0 2) with row = nil do (setq row

[O] extract a region from a table and export it

2016-06-14 Thread Uwe Brauer
Hi Is it possible to extract just say two regions from a huge table and convert it to say CSV? Uwe Brauer

Re: [O] extract a region from a table and export it

2016-06-14 Thread John Kitchin
can you write a little code block that filters the table for what you want, and then convert that to a pdf? Something like: #+tblname: data | 1 | a | | 2 | r | | 5 | 7 | | 4 | 9 | | 8 | y | #+BEGIN_SRC emacs-lisp :var d=data (orgtbl-to-csv (-filter (lambda (x) (and (> (car x) 2) (< (car x)

Re: [O] extract a region from a table and export it

2016-06-14 Thread Uwe Brauer
>>> "John" == John Kitchin writes: > or, rows 0, 1 and 4. > #+BEGIN_SRC emacs-lisp :var d=data > (loop for i in '(0 1 4) collect (elt d i)) > #+END_SRC Ok the second code works now, and is almost what I want, but I need it mostly for columns, it is not

Re: [O] Some LaTeX Beamer / org-mode questions

2016-06-14 Thread Nicolas Goaziou
Hello, Rasmus writes: > Re the beamer manual 10.1, we could add the following keywords, > #+short_title, #+short_subtitle, #+short_date , #+institute and > #+short_institute. Thank you for your work. I didn't test your patch. However, here are some late comments about this

Re: [O] extract a region from a table and export it

2016-06-14 Thread Uwe Brauer
>>> "John" == John Kitchin writes: > How about: > #+tblname: grades > || H1 | H2 | H3 | Great exactly what I needed, thanks! Maybe such code should be included somewhere, (manual?) Uwe

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

2016-06-14 Thread Xi Shen
Hi Nicholas, Sure, I will add the news and declaration. The "format" is required to quote the filename, so the spaces won't surprise sqlcmd. Maybe the arguments will be quoted when passing to the command? On Tue, Jun 14, 2016, 19:52 Nicolas Goaziou wrote: > Hello, > >

Re: [O] extract a region from a table and export it

2016-06-14 Thread Philip Hudson
On 14 June 2016 at 11:44, Uwe Brauer wrote: > Is it possible to extract just say two regions from a huge table and > convert it to say CSV? Yes. Anything you can think of is possible in Emacs. Usually in two or more different ways. :-) Presumably you want to automate this to

Re: [O] extract a region from a table and export it

2016-06-14 Thread Uwe Brauer
>>> "John" == John Kitchin writes: Hi John, > can you write a little code block that filters the table for what you > want, and then convert that to a pdf? Great! Thanks a lot. This is a brilliant idea, on a second thought I would even say that I don't need

[O] Absolute timestamps in timer list

2016-06-14 Thread Robert Moore
Hi All, Does anybody know of a way to use absolute timestamps instead of relative timestamps in a timer list? For example: pressing C-c C-x - starts a list with a relative timestamp like so: - 0:00:00 :: First item Pressing M- adds more items to the list with the corresponding relative

Re: [O] Absolute timestamps in timer list

2016-06-14 Thread Nicolas Goaziou
Hello, Robert Moore writes: > I think this really cool but i'm also looking to have the option to use > absolute timestamps like so: > > - <2016-06-14 Tue 10:34> :: First item > - <2016-06-14 Tue 10:39> :: Second item > - <2016-06-14 Tue 10:48> :: Third item > > Not sure

Re: [O] Changing org-block background with org-src-fontify-natively

2016-06-14 Thread Alan Schmitt
On 2016-06-13 19:12, Rasmus writes: >> One thing I don't understand is how I reveal what is hidden by the >> burger symbol. I move my cursor around, including on top of the burger, >> and nothing changes. Should I run some command to reveal it? > > Indeed. That's the main selling

Re: [O] Absolute timestamps in timer list

2016-06-14 Thread Robert Moore
Hmm, good point... I'm new to Emacs and Lisp so this might be a good exercise for me. Thanks for the direction! Regards, Rob On Tue, Jun 14, 2016 at 11:22 AM, Nicolas Goaziou wrote: > Hello, > > Robert Moore writes: > > > I think this really

Re: [O] How to have #+ORGTBL: SEND install converted table to MORE than 1 receiver location?

2016-06-14 Thread Omid
Hello, I'm just resending this question because I haven't received any answers/ideas in a week. I also asked it in https://emacs.stackexchange.com/questions/23836/how-to-have-org-mode-radio-table-install-converted-table-to-more-than-one-receiv, with no answers so far. Thanks, Omid On

Re: [O] extract a region from a table and export it

2016-06-14 Thread Rasmus
Uwe Brauer writes: "John" == John Kitchin writes: > > > >> or, rows 0, 1 and 4. > >> #+BEGIN_SRC emacs-lisp :var d=data >> (loop for i in '(0 1 4) collect (elt d i)) >> #+END_SRC > > Ok the second code works now, and is almost what

[O] org-install?

2016-06-14 Thread Rustom Mody
There are a number of documentation pages, eg http://orgmode.org/worg/org-tutorials/org4beginners.html http://orgmode.org/worg/org-faq.html that recommend to use (require 'org-install) However org-install itself says: ;; The file org-install is obsolete. ;; ;; It is provided here so that

Re: [O] org-install?

2016-06-14 Thread Kaushal Modi
As I understand, the worg pages are not official pages. They can be contributed to by anyone interested. I would rather refer to http://orgmode.org/manual/Installation.html to official org installation instructions. In a nutshell, to install org from git, 1. Clone the git repo 2. Copy

Re: [O] org-install?

2016-06-14 Thread Grant Rettke
On Tue, Jun 14, 2016 at 12:06 PM, Rustom Mody wrote: > What is the setup procedure recommended for git-installed org? 1. Clone it to ~/src 2. Generate autoloads and Compiling Org without make: http://orgmode.org/worg/org-hacks.html 3. Before the packaging stuff loads and

Re: [O] bibliography as part of the source document?

2016-06-14 Thread Ken Mankoff
On 2016-06-13 at 13:28, Sharon Kimble wrote: > Ken Mankoff writes: >> On 2016-06-13 at 13:07, Sharon Kimble wrote: >>> I'm trying to have all my information for a org-mode document >>> exported to latex contained within

Re: [O] Bug: not defined [8.2.10 (release_8.2.10 @ /Applications/Emacs.app/Contents/Resources/lisp/org/)]

2016-06-14 Thread Kejia柯嘉
Hi Nicolas, I tried 8.3, but the issue is there, too. Best regards, Daniel ☵☯☲ 2016年6月1日 13:36,"Nicolas Goaziou" 写道: > Hello, > > Kejia柯嘉 writes: > > > does enter an editing buffer, and in terms of the manual > >

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

2016-06-14 Thread Xi Shen
Hi Nicolas, I suppose I should put the news entry to ./etc/ORG-NEWS file, but into which version? I created below entry, please take look and let me know where do you want me to put it. *** Improved support to Microsoft SQL Server in =ob-sql.el= =ob-sql.el= library removes support to the