Re: [O] http://orgmode.org/worg/code/org-info-js/ broken

2015-01-29 Thread Marco Wahl
Hi Svjatoslav, > Button "Show Org source" on page > http://orgmode.org/worg/code/org-info-js/ > does not work. my first thought was that the issue could be an outdated compressed version the javascript file. This thought was a bit esoteric and actually the compression was not to blame. > When

Re: [O] Japanese popularity of orgmode

2015-01-29 Thread Tory S. Anderson
That's amazing! As others here have mentioned, it would be interesting and instructive to see a sample of the configuration & org markup that made something like that possible. In any case, I guess it makes sense to see more about orgmode if it was replacing LaTeX and Word as front-ends in deman

Re: [O] Customize html formatting tags for export

2015-01-29 Thread Tory S. Anderson
Thanks. With that info I did this: --8<---cut here---start->8--- ;; convert =C-x=a to C-x, *awesome* to awesome (setq org-html-text-markup-alist '((bold . "%s") ; *text* (code . "%s") ; ~text~ (italic . "%s") ; /text/ (strike-through . "%s") ; +te

Re: [O] Customize html formatting tags for export

2015-01-29 Thread Sebastien Vauban
Hello Tory, > Note: I changed to because I'm a web developer and most > of the time hurts my soul[1][2][3] ... If I follow you, why don't you convert "i" to "em" as well? Best regards, Seb -- Sebastien Vauban

Re: [O] Customize html formatting tags for export

2015-01-29 Thread Marcin Borkowski
On 2015-01-29, at 11:55, Tory S. Anderson wrote: > Thanks. With that info I did this: > > --8<---cut here---start->8--- > ;; convert =C-x=a to C-x, *awesome* to awesome > (setq org-html-text-markup-alist '((bold . "%s") ; *text* > (code . "%s") ; ~text~

Re: [O] How to check whether an element (really) has some tag?

2015-01-29 Thread Nicolas Goaziou
Hello, Marcin Borkowski writes: > I can do (member-ignore-case "sometag" (org-element-property :tags > element)), but I'd like to know whether some element has the tag, not > taking inheritance into account. Is there a simple way to do it? There is no simpler solution than the one you suggested

Re: [O] Special tags?

2015-01-29 Thread Nicolas Goaziou
Hello, Marcin Borkowski writes: > can I find a list of "special" tags somewhere? By "special" I mean > e.g. :export:, :noexport: and :archive: - they are treated specially by > Org. There is no exhaustive list because each export back-end, and, more generally, each module can introduce its own

Re: [O] Full path figure export to latex

2015-01-29 Thread Nicolas Goaziou
Hello, Leu Zhe writes: > Hi, when I export a full path figure, > like: [[file:c:/Users/admin/Desktop/1.png]] > to LaTex. Unfortunately I got the result of > {//c:/Users/admin/Desktop/1.png}, > one more // was generated in front of c:, which is an error in LaTex. > How can I solve this problem?

Re: [O] exporting zotxt or orgref links to HTML and ODF

2015-01-29 Thread John Kitchin
It turns out to be very easy to get pandoc citations into orgmode using helm-bibtex. It is not even that difficult to make the pandoc citations clickable to get similar features as in org-ref. They just don't have the org-element support. Having tried this, I don't see any obvious advantages over o

Re: [O] exporting zotxt or orgref links to HTML and ODF

2015-01-29 Thread John Kitchin
There is a separation between the citation bits in an org-file (whether they are org-links, or the pandoc format, etc...) and the formatted bibliography. org-ref is really focused on providing functionality to insert the citation keys (using reftex, or helm-bibtex right now, but there are many oth

Re: [O] exporting zotxt or orgref links to HTML and ODF

2015-01-29 Thread Vikas Rawal
> > The conversion is not perfect, but it gets pretty far. Probably not far > enough to use for production except in the simplest cases. > > John, If your main objective is support for citations, why not go from Org to LaTeX, and then use Pandoc to convert from LaTeX to DocX? Is there an adva

Re: [O] exporting zotxt or orgref links to HTML and ODF

2015-01-29 Thread John Kitchin
That could be an option. I was mostly looking at feasibility for org to docx. There is no obvious advantage to go through markdown, I just had some handy machinery in org-ref to export my cite links to the pandoc format in that export. I have since figured out a simple way to insert pandoc citation

Re: [O] exporting zotxt or orgref links to HTML and ODF

2015-01-29 Thread Vikas Rawal
For my use case, I find the native Org to Odt export has several limitations: 1. No support for bibtex 2. I end up using quite a bit of LaTeX-specific stuff for formatting tables and graphics. All of that gets messed up when I do Org to Odt export. I agree, a robust org to odt/docx export would

Re: [O] org export to org

2015-01-29 Thread John Kitchin
Thanks for the tip. Today what I tried for this worked fine. This will export an org file to an org file, but transform all the cite type links into pandoc format, including pre/post text if you put that in the link description with :: as a separator. Then you could run that org file through pando

Re: [O] Org buffer corruption with ediff-files

2015-01-29 Thread Michael Brand
Hi Nicolas Can you please have a look? On Sat, Jan 24, 2015 at 1:39 PM, Michael Brand wrote: > Hi all > > There seems to be a bug when ediff-files is used to compare and edit > two Org files. Reproduced with Emacs 24.4 (-Q), today's > release_8.3beta-750-gb6fce5 and these steps: > > 1) M-: (edif

[O] Bug: nil in HTML export output

2015-01-29 Thread T.F. Torrey
Hello, With the latest code from the git repo, the HTML export of items having drawers but no top-level content puts a stray "nil" in the "outline-text-" div. Minimal document to show bug: #+BEGIN_SRC org ,* Item without drawers does not make nil ,* Item with drawer and top-level content does n

Re: [O] org export to org

2015-01-29 Thread Nicolas Goaziou
Hello, John Kitchin writes: > Are links ignored in an org export to org? If not, is there some trick > to converting them to another format? I added the possibility to handle custom link export functions in `org' export back-end. Thanks for suggesting it. Regards, -- Nicolas Goaziou

[O] Table: Insert Cell

2015-01-29 Thread Tory S. Anderson
Does anyone know a solution for the surely common case of needing to insert a cell (not a column or row) into an orgmode table? Spreadsheet programs allow the option of pushing the column down or pushing the cells right in this case. How can this be achieved in orgmode?

Re: [O] Table: Insert Cell

2015-01-29 Thread Jorge A. Alfaro-Murillo
Hi Tory, Tory S. Anderson writes: Does anyone know a solution for the surely common case of needing to insert a cell (not a column or row) into an orgmode table? Spreadsheet programs allow the option of pushing the column down or pushing the cells right in this case. How can this be achieved

Re: [O] Table: Insert Cell

2015-01-29 Thread Marco Wahl
jorge.alfaro-muri...@yale.edu (Jorge A. Alfaro-Murillo) writes: > Tory S. Anderson writes: > >> Does anyone know a solution for the surely common case of needing to >> insert a cell (not a column or row) into an orgmode table? >> Spreadsheet programs allow the option of pushing the column down or >

Re: [O] New patches WAS Re: [PATCH] inline src block results can be removed

2015-01-29 Thread Charles C. Berry
The changes have been pushed to master just now. To recap, inline src blocks and babel calls will now wrap their output in a `results' macro following the src block or call, replacing any previous such macro. `:results raw' prevents the wrapping from taking place. If the RESULT is a list o

Re: [O] Table: Insert Cell

2015-01-29 Thread Tory S. Anderson
Wow! That's great! One of my next projects is going to have to be putting that little sequence into a function! Marco Wahl writes: > jorge.alfaro-muri...@yale.edu (Jorge A. Alfaro-Murillo) writes: >> Tory S. Anderson writes: >> >>> Does anyone know a solution for the surely common case of needi

[O] [PATCH] org.el: org-babel-load-file loads first tangle file

2015-01-29 Thread Sami Airaksinen
Hi, I use quite sophisticated (read complicated) initialization of my emacs. Now I finally updated my emacs and org-mode upto date and found out that org-babel-load-file doesn't work as previously. I don't know if you have already noticed but if your tangled source org-mode file has multiple targ

Re: [O] org export to org

2015-01-29 Thread John Kitchin
Cool! Thanks! Nicolas Goaziou writes: > Hello, > > John Kitchin writes: > >> Are links ignored in an org export to org? If not, is there some trick >> to converting them to another format? > > I added the possibility to handle custom link export functions in `org' > export back-end. > > Thanks f

Re: [O] Table: Insert Cell

2015-01-29 Thread Jorge A. Alfaro-Murillo
Marco Wahl writes: This could be the day of org-table-transpose-table-at-point. Argh! Thanks, so simple. I seems like I never took Linear Algebra: anything that you can do with rows you can do with columns, by transposing, doing, and transposing. -- Jorge.

Re: [O] Org buffer corruption with ediff-files

2015-01-29 Thread Nicolas Goaziou
Hello, Michael Brand writes: > Can you please have a look? > > On Sat, Jan 24, 2015 at 1:39 PM, Michael Brand > wrote: >> Hi all >> >> There seems to be a bug when ediff-files is used to compare and edit >> two Org files. Reproduced with Emacs 24.4 (-Q), today's >> release_8.3beta-750-gb6fce5 a

Re: [O] Bug: nil in HTML export output

2015-01-29 Thread Nicolas Goaziou
Hello, tftor...@tftorrey.com (T.F. Torrey) writes: > With the latest code from the git repo, the HTML export of items having > drawers but no top-level content puts a stray "nil" in the > "outline-text-" div. This should be fixed. Thank you. Regards, -- Nicolas Goaziou

Re: [O] Japanese popularity of orgmode

2015-01-29 Thread Christian Wittern
Here is another academic org user in Japan. I started writing articles a few years ago and am also using it for doing research etc. I live in Kyoto, so please drop me a line if something goes on here!! Christian On 2015-01-28 09:54, Waldemar Quevedo wrote: > Ishikawa-san > >> I know a super st

[O] help with pattern-matching

2015-01-29 Thread Matt Price
I'm sorry to come with a basic elisp question, once again. I continue to work on this citation stuff. Currently, I can get html back from Zotero in a form like this: - Broder, John M., and Ian Urbina. “All Eyes Turn to Virginia Senate Race.” The New York Times, November 9, 2006

Re: [O] help with pattern-matching

2015-01-29 Thread John Kitchin
I don't know if this is robust enough for you. the gist is identify some text with a regular expression, and replace that text with something else. I use re-builder to help create the regexps. #+BEGIN_SRC emacs-lisp (let ((s " Broder, John M., and Ian Urbina. “All Eyes Turn to Virginia Senate Rac

[O] [PATCH] Fix ORG-NEWS typo from 173b0cb6d6

2015-01-29 Thread Kyle Meyer
Hello, The attached patch fixes a typo that I made in a NEWS item for a recent commit. -- Kyle >From 495281a7dbd48ddb8ba99c44729295c688f1c9a7 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Fri, 30 Jan 2015 00:05:32 -0500 Subject: [PATCH] Fix ORG-NEWS typo from 173b0cb6d6 --- etc/ORG-NEWS | 2

[O] [PATCH] org-agenda: Add only-window setup option

2015-01-29 Thread Kyle Meyer
The variable org-agenda-window-setup provides several different options (current-window, other-window, reorganize-frame, other-frame). For a while now, I've been using a different setup that deletes all other windows. The attached patch adds this option to org-agenda-window-setup. Do others thin

Re: [O] Org buffer corruption with ediff-files

2015-01-29 Thread Michael Brand
Hi Nicolas On Fri, Jan 30, 2015 at 12:26 AM, Nicolas Goaziou wrote: > This should be fixed. Thank you for reporting it. Fix confirmed, thank you. Michael

[O] org-expiry not compatible with the new drawer syntax

2015-01-29 Thread Samuel Loury
Dear All, I am running the version cd6fa4c15e8e35afa6beb9e89ad3723fb82df091 (git sha) of org-mode. I just realized that when creating a new entry in my org-diary (`org-agenda-add-entry-to-org-agenda-diary-file'), the entry looks like: --8<---cut here---start->

[O] `org-get-category' and `org-entry-get' do not return the same value

2015-01-29 Thread Samuel Loury
Hi, I use the version cd6fa4c15e8e35afa6beb9e89ad3723fb82df091 (git sha) of org-mode. Let's say I have a file looking like this: --8<---cut here---start->8--- #+CATEGORY: c * foo :PROPERTIES: :CATEGORY: a :END: ** bar :PROPERTIES: :CREATED: [2015-