Re: [O] bug report: + is not escaped in org-link-escape

2017-12-10 Thread D M German
Nicolas Goaziou twisted the bytes to say: Nicolas> Hello, Nicolas> dmg writes: >> org-link-escape only replaces space, [, ], and % >> >> but search in google/gmail is replacing + also. >> >> The simplest solution is to add 43 to org-link-escape-chars: >> >>

Re: [O] Bug report: export to HTML does not escape * in example

2017-03-01 Thread D M German
Hi Charles, everybody, >> I am running a babel script that generates, as one of its line * in the >> front: >> >> ​#+BEGIN_SRC sh >> echo "* Hello" >> #+END_SRC >> >> #+RESULTS: >> #+begin_example >> * Hello >> #+end_example >> >> ​In that case, should babel be the one escaping

Re: [O] bug report: ox-html with coderef links needs a space between attributes in element (with patch)

2017-01-24 Thread D M German
Nicolas Goaziou twisted the bytes to say: >> >> ​I am running version 9.0.3 of org. >> >> I believe this patch will solve the issue. It simply adds a space before >> the class attribute. Nicolas> It works but I eventually applied a slightly different patch. Thank you Nicolas> for

Re: [O] function to select text of in a cell of a table

2017-01-03 Thread D M German
Kaushal Modi twisted the bytes to say: Kaushal> Check out this earlier thread: Kaushal> https://lists.gnu.org/archive/html/emacs-orgmode/2016-05/msg00240.html Kaushal> You probably just need the org-table-mark-field definition from that. thank you both very much. Kaushal, your function is

Re: [O] question about org-coderef-label-format and HTML export

2016-12-07 Thread D M German
Nicolas Goaziou twisted the bytes to say: Nicolas> Hello, Nicolas> dmg writes: >> I was playing with org-coderef-label-format to reference lines of code >> in blocks. >> >> I created a small example that overrides the default value: >> >> #+BEGIN_SRC C++

[O] overview of org files

2013-05-29 Thread D M German
Hi everybody, here is a small contribution to the org project. It is a dashboard of org files in your main org directory. It shows, in a table, each of the org files, including its title (#+TITLE: field) and the filename. Date Title Filename

Re: [O] performance of exporting large tables

2013-05-21 Thread D M German
Nicolas Goaziou twisted the bytes to say: Nicolas Nicolas Goaziou n.goaz...@gmail.com writes: I am going to have a look at this. Nicolas I pushed a commit caching the results of some table functions. Export of Nicolas large tables should be a lot faster (I get 6 s now; it was 90 s

Re: [O] performance of exporting large tables

2013-05-17 Thread D M German
Hi Suvayu, Suvayu Hi Daniel, Suvayu On Thu, May 16, 2013 at 01:24:10PM -0700, D M German wrote: If interested, I can make the table available. Suvayu A working example that reproduces the issue always helps. If you could Suvayu post the table (of course after removing sensitive

[O] performance of exporting large tables

2013-05-16 Thread D M German
hi everybody, I have a table with 15 columns and 500 rows. One of the columns is a URL. org-mode is hanging while exporting the table. It does not seem to crash, but it is taking a significant amount of time. The worst part is that it does not appear to be linear. 80 rows - 17 seconds 160 rows

Re: [O] Small tutorial on how to use Perl within org

2013-03-11 Thread D M German
Hi Tom, Thomas S Dye twisted the bytes to say: [...] http://turingmachine.org/~dmg/emacs/examplePerl.org Tom Nice. Tom It would be great to use this document as the basis of ob-doc-perl. Tom Perl is one of about 20 languages that need to be documented at Tom

[O] Small tutorial on how to use Perl within org

2013-03-09 Thread D M German
hi everybody, I have created a small document that describes how to use perl within org. Hopefully others will find it useful: http://turingmachine.org/~dmg/emacs/examplePerl.org --dmg -- Daniel M. German http://turingmachine.org/ http://silvernegative.com/ dmg (at) uvic (dot) ca replace

Re: [O] [PATCH] bug in expansion of variables in babel Perl

2013-02-25 Thread D M German
Achim Gratz twisted the bytes to say: Hi Achim, thanks for taking the time to do this. I applied the patch, one of the hunks didn't apply due to Eric's changes, but that is not an issue, since they do the same: -- diff

Re: [O] bug in expansion of variables in babel Perl

2013-02-25 Thread D M German
Achim Eric Schulte writes: Are you familiar with `org-babel-expand-src-block' bound to C-c C-v v? Achim I wasn't, obviously, and neither was the OP. If I understand the desire correctly, it should be what you're after. Perhaps an option to raise the expanded source code buffer along

Re: [O] evaluation of perl in babel

2013-02-25 Thread D M German
Achim Gratz twisted the bytes to say: Achim D M German writes: There are some bugs. For example, the interpretation of :results table, vector and list. Achim You may misunderstand some things, or I don't understand what you are Achim asking. It is (at least currently

Re: [O] [PATCH] bug in expansion of variables in babel Perl

2013-02-25 Thread D M German
Achim D M German dmg at uvic.ca writes: I think the issue is that, at least in my computer the variable $\ returns empty (the record separator). Achim Thinko on my side, what I wanted was the input record separator $/ Achim (to avoid Achim specifying a literal newline for those systems

[O] bug in expansion of variables in babel Perl

2013-02-24 Thread D M German
Hi Everybody, I found a bug in the Babel perl code. When a table is used as input, the values of the table are not escaped. In fact, they are surrounded by double quotes instead of single ones '. This means that special characters are interpreted: $string, and @variable are considered

Re: [O] bug in expansion of variables in babel Perl

2013-02-24 Thread D M German
dmg Mm, I also noticed that when :results output is used, there is no way dmg to insert perl code before or after the executed code. dmg org-babel-perl-wrapper-method only works for all the methods but dmg output. It would be nice to have a variable that dmg does this for any output type.

[O] babel :results output and format of output

2013-02-24 Thread D M German
hi everybody, I have been testing babel with perl and I am very puzzled by the following: Say I have the following script that outputs 10 numbers. org/babel wraps it as a begin_example #+begin_src perl :results output for (my $i=0;$i10;$i++) { print $i\n; } #+end_src #+RESULTS:

Re: [O] bug in expansion of variables in babel Perl

2013-02-24 Thread D M German
Achim D M German writes: Achim […] Achim Please leave the formats alone, if you change the number of parameters Achim there folks that use their own definitions won't know what hit them. Achim What you want is to prepend something to the body that Babel gives you, Achim so let-bind

[O] evaluation of perl in babel

2013-02-24 Thread D M German
Hi Everybody, I looked a bit more onto the way that perl is evaluated. I know the support of perl is minor. I understand that, so please, don't see this message as a complaint, so this is more for discussion and potential improvements of the Perl support in Babel. One of the things I have

Re: [O] a window with my agenda at all times

2011-06-27 Thread D M German
Hi Erick, Eric D M German d...@uvic.ca writes: Hi everybody, I struggle to keep (in emacs) a window with the agenda at all times. If anybody has any pointers on how to get a window or a frame to stick at all times with the contents of a frame, and basically be ignored from any

[O] a window with my agenda at all times

2011-06-26 Thread D M German
Hi everybody, I struggle to keep (in emacs) a window with the agenda at all times. If anybody has any pointers on how to get a window or a frame to stick at all times with the contents of a frame, and basically be ignored from any window-related command (split, kill, etc), I would be grateful.

[Orgmode] org-protocol: non-ASCII characters

2010-02-04 Thread D M German
Jan After learning about org-protocol on worg, I got it working. Jan There seems to be a problem with non-ASCII characters in the file names, Jan though: an ü in the file path arrived in emacs as %0 %)). I have been looking around and I am not sure how to solve this problem. Withing Evince

[Orgmode] org-remember support in xournal

2010-01-31 Thread D M German
Hi everybody, I am sorry I have been a bit slow to finish the integration of xournal with remember mode. I think I got it working. My branch of xournal is available at github: http://github.com/jboecker/xournal If the loaded file in xournal is a PDF, the remember link is created to the .pdf

[Orgmode] patch to support remember in evince

2010-01-31 Thread D M German
here is a patch to support remember inside evince. http://turingmachine.org/~dmg/temp/0001-Added-support-for-xournal-but-docview-linking-needs-.patch I tried to pass the text selection to remember, but it does not work (org-protocol://remember://docview:filename::pagenumber::selection).

Re: [Orgmode] protocol for PDFs?

2010-01-02 Thread D M German
Jan Böcker twisted the bytes to say: Jan Example: Jan [[docview:/home/jan/some-file.pdf::7][Page 7]] Jan Of course, these links open the file by visiting it in emacs. Jan I would propose to modify org-docview.el to look in org-file-apps for an Jan entry for \.pdf\' thanks. This will get

Re: [Orgmode] protocol for PDFs?

2010-01-02 Thread D M German
Jan Böcker twisted the bytes to say: Jan On 02.01.2010 16:20, Darlan Cavalcante Moreira wrote: Evince also has an option (-p) to open the file in a given page and this would be enough for a link to a PDF file. Since I prefer using Evince instead of docview mode I would be very happy to

Re: [Orgmode] protocol for PDFs?

2010-01-02 Thread D M German
I have implemented 'Remember' in xournal. I doubt this feature will ever make into the mainstream. You can check out my fork. it contains many features not in the current distribution, but useful, including very rudimentary search support, ability to jump to next and previous annotations:

Re: [Orgmode] protocol for PDFs?

2010-01-02 Thread D M German
Jan It allows you to link to any document format which doc-view-mode Jan supports, which includes PDF files. The syntax is: Jan docview:file name::page number Jan Example: Jan [[docview:/home/jan/some-file.pdf::7][Page 7]] I have started modifying evince. I got to the point in evince

Re: [Orgmode] Encrypting files for org-mobile

2009-12-29 Thread D M German
at 4:04 AM, D M German d...@uvic.ca wrote: Hi everybody, Does anybody know if it is possible to keep the files for org-mobile encrypted in the server? I know you can protect them with a password, but that protection is from people who look into the server. How about

[Orgmode] Re: Encrypting files for org-mobile

2009-12-29 Thread D M German
Bernt Hansen twisted the bytes to say: Bernt Hi Richard, I don't currently use MobileOrg but I do use encryption Bernt with org-mode as described here: Bernt http://doc.norang.ca/org-mode.html#HandlingEncryption Bernt Regards, Bernt Bernt Thanks Bernt, for calling my attention to this

Re: [Orgmode] Browser Interface to org-mode?

2009-12-21 Thread D M German
Manish twisted the bytes to say: Manish On Mon, Dec 21, 2009 at 12:24 PM, sumeet pareek wrote: I am not a 100% sure but I believe I heard some where in the google tech talk about browser interface to org-mode. Could anybody tell me where can I find it? It would be a boon to me as I am

[Orgmode] running org-mode (inside emacs) in the n900

2009-12-14 Thread D M German
Yes, it can be done: http://turingmachine.org/blog/index.php?/archives/99-Running-emacs-and-org-mode-in-the-N900.html I just got it running. The instructions are there. Now I need to figure out where the meta key is ;) --dmg -- -- Daniel M. German http://turingmachine.org/

Re: [Orgmode] Re: Org-mode and Nokia N900

2009-12-11 Thread D M German
Óscar Thierry Guillemin tguille...@gmail.com writes: Hello This question comes after reading http://lifehacker.com/5419988/five-best-outlining-tools and before buying a N900... Will it be possible to install Org-mode on the N900 (only Emacs available is Qemacs) ? Óscar It

[Orgmode] enabling org-protocol with Firefox 3 and Ubuntu 9.04

2009-11-09 Thread D M German
Hi everybody, if you have tried to enable org-protocol under Firefox you might run into the issue that firefox does not start emacsclient, no matter what the about:config variables say. After spending some time I discovered that this is an issue of Firefox's integration with Gnome. What you