[Orgmode] Sharing configuration info.

2009-12-09 Thread Óscar Fuentes
I have a number of org files that have the same elaborated configuration (TAGS, SEQ_TODO, options, etc. used mostly as bug trackers) and some other "ordinary" org files. Is there a way to share that special configuration, so when it changes it is unnecessary to edit all those "bug tracker" org fil

[Orgmode] Re: Sharing configuration info.

2009-12-10 Thread Óscar Fuentes
Hello Carsten. Carsten Dominik writes: >> Is there a way to share that special configuration, so when it >> changes it is unnecessary to edit all those "bug tracker" org files, >> without changing the default configuration for other org files? > > look for #+SETUPFILE in the documentation That

[Orgmode] Progress cookies on headers without subitems

2009-12-11 Thread Óscar Fuentes
When a [/] is used on a header that does not contain subitems, pressing C-c C-c on it signals an error on the minibuffer: org-update-statistics-cookies: No data for statistics cookie and the cookie appears with the same face (text color) as if it were incomplete. IMHO, [/] on a header without su

[Orgmode] Bug: STARTUP: indent turns off indent when invoked twice [6.33x]

2009-12-11 Thread Óscar Fuentes
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list.

[Orgmode] Re: Org-mode and Nokia N900

2009-12-11 Thread Óscar Fuentes
Thierry Guillemin 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) ? It seems that QEmacs has no Emacs Lisp supp

[Orgmode] Re: Integrating ctags & org mode (patch)

2009-12-15 Thread Óscar Fuentes
Nick Dokos writes: > Can these patches be applied using the standard patch(1) command? > I tried and I get > > $ patch < ~/Mail/inbox/1265 > patch: Only garbage was found in the patch input. You have to replace `{' with `>' and `}' with `<' in the patch before applying it. > If they canno

[Orgmode] Global agenda views creates lots of buffers.

2010-01-14 Thread Óscar Fuentes
I have quite a few org files in org-agenda-files. When a global agenda view is displayed (the Global TODO, for instance) org-mode visits all the files and keeps the buffer for each of them. I'll prefer this behavior: for each file in org-agenda-files have we a buffer containing it? no ->

[Orgmode] Re: Global agenda views creates lots of buffers.

2010-01-15 Thread Óscar Fuentes
Carsten Dominik writes: > As Darlan has said, you can exit the agenda with "x" to get > rid of all buffers that where created to make the agenda > and have not been modified since making them. Thanks Darlan and Carsten. I'll resort to using `x' then. -- Óscar ___

[Orgmode] Re: About Ditaa

2010-01-27 Thread Óscar Fuentes
Chao Lu writes: [snip] > "Unable to access jarfile > ~/.emacs.d/org/var/ditaa0_9.jar". Could not figure out why, does anybody > have some idea? Check that the file's permissions allows reading for all. ___ Emacs-orgmode mailing list Please use `Rep

[Orgmode] Re: A bright new Org-mode clone project

2010-04-01 Thread Óscar Fuentes
Julien Barnier writes: [snip] > Why restart from scratch ? Because I think that org-mode should be > easier to install and run on different OSes. Are there other OSes besides Emacs? You are talking about the tiny embedded ones, aren't you? > That's why I'm going to rewrite it in C#/Mono : I h

[Orgmode] Plans for synching with Emacs dev sources?

2010-04-13 Thread Óscar Fuentes
Currently I'm using 6.33x, which is the version that comes with Emacs dev source code. I'll like to use a more recent version of org-mode, and so I ask if there are plans for upgrading Emacs' org-mode sources with the current release. If not, I'll use org-mode git sources, although this would compl

[Orgmode] Re: Plans for synching with Emacs dev sources?

2010-04-15 Thread Óscar Fuentes
Carsten Dominik writes: > I just updated the Emacs bzr repository to org-mode 6.35i. Now lets > hope that everything went OK - this was my first commit through bzr, > and a BIG one. Thanks! I'll start using it right now and report back any issues.

[Orgmode] Re: magit, revert, folding, normal-mode, performance

2010-06-26 Thread Óscar Fuentes
Samuel Wales writes: > Worth knowing that magit reverts buffers. It appears to > revert all buffers, not just those with changes. Magit reverts all saved buffers on the current working copy after committing. > This has 2 consequences for org. Magit is slow, and org visibility is > reset to de

[O] Trying to replace PasswordSafe with org-crypt

2011-03-16 Thread Óscar Fuentes
After invoking org-encrypt-entry on a header its contents are replaced with: * foo :crypt: -BEGIN PGP MESSAGE- Version: GnuPG v1.4.10 (GNU/Linux) jA0EAwMC1x9QRUGObPFgySqJXEOiDqi5xGUFqt6GOs0Y2RB7b+euyEy37EVRR32D HFRSrIchM2MuPcA= =+O2/ -END PGP MESSAGE- There are several problems w

Re: [O] Trying to replace PasswordSafe with org-crypt

2011-03-17 Thread Óscar Fuentes
Julien Danjou writes: > On Thu, Mar 17 2011, Óscar Fuentes wrote: > >> It would nice to get rid of that noise, if possible. > > It's kinda handy to have them to match the text. I don't think it's a > real problem. They are very standard. Ok, I can live

[O] Update Emacs development sources to 7.5 ?

2011-03-17 Thread Óscar Fuentes
Are there plans for updating the org-mode sources contained in the Emacs bzr repository? Can I help to speed up the process?

[O] [PATCH] Wash output of org-encrypt-entry

2011-03-18 Thread Óscar Fuentes
With a gpg executable with default settings, org-encrypt-entry produces output like this: -BEGIN PGP MESSAGE- Version: GnuPG v1.4.10 (GNU/Linux) jA0EAwMCBWZVym6QMPVgyTxreTb1AEL3uTO+qCh2lR9/Qxk4nEMpPr9/RwNk95Gb slUra9X+N+qSWghEHvvxY0Ol8Yw9Ko4n7JVhHFs= =E4vw -END PGP MESSAGE- The f

[O] Re: [PATCH] Wash output of org-encrypt-entry

2011-03-18 Thread Óscar Fuentes
Óscar Fuentes writes: [snip] > + (setq str (replace-regexp-in-string "^Version:.*$" "" str)) Ugh... replace-regexp-in-string does not exist on XEmacs. Time for a rewrite. Still, it would good to know if the goal is acceptable.

[O] Wash output of org-encrypt-entry, take 2

2011-03-18 Thread Óscar Fuentes
With a gpg executable with default settings, org-encrypt-entry produces output like this: [2. text/plain] -BEGIN PGP MESSAGE- Version: GnuPG v1.4.10 (GNU/Linux) jA0EAwMCBWZVym6QMPVgyTxreTb1AEL3uTO+qCh2lR9/Qxk4nEMpPr9/RwNk95Gb slUra9X+N+qSWghEHvvxY0Ol8Yw9Ko4n7JVhHFs= =E4vw -END PGP ME

[O] [PATCH] Wash output of org-encrypt-entry, take 3

2011-03-18 Thread Óscar Fuentes
Sorry, clicked on Send before the patch was attached. With a gpg executable with default settings, org-encrypt-entry produces output like this: -BEGIN PGP MESSAGE- Version: GnuPG v1.4.10 (GNU/Linux) jA0EAwMCBWZVym6QMPVgyTxreTb1AEL3uTO+qCh2lR9/Qxk4nEMpPr9/RwNk95Gb slUra9X+N+qSWghEHvvx

[Orgmode] Org-mode as a bug tracker.

2009-07-17 Thread Óscar Fuentes
Right now I'm using Trac (a bug tracker and wiki combo) for bug tracking and project documentation on my personal projects. Looking at org-mode it seems a superb system for a this task, at least for one-person projects: * Plain text. * No server required. * Can be stored on the same VCS than

[Orgmode] Re: Org-mode as a bug tracker.

2009-07-17 Thread Óscar Fuentes
Óscar Fuentes writes: > Any reasons why this is not a good idea? Just remembered that time ago, when the bug tracker for Emacs was discussed, Bastien proposed to use org-mode for it. I argued against because the Emacs bug database would soon fill dozens of megabytes and this volume does not

[Orgmode] Re: Org-mode as a bug tracker.

2009-07-19 Thread Óscar Fuentes
Bastien writes: >>> Any reasons why this is not a good idea? >> >> Just remembered that time ago, when the bug tracker for Emacs was >> discussed, Bastien proposed to use org-mode for it. > > Actually I'm glad you bring this up again, as I want to work on this > proposal again. > > There are act

[Orgmode] Re: Org-mode as a bug tracker.

2009-07-20 Thread Óscar Fuentes
JBash writes: > Not sure if this helps, and I don't know the details or the mechanism, but I > believe that John Wiegley uses org-mode as a bug tracking tool for his > ledger app. > > http://wiki.github.com/jwiegley/ledger Yup. It's on the file named TODO of the `planning` git branch. Thanks!

[Orgmode] Re: OrgmodeOrg-mode as a bug tracker.

2009-07-20 Thread Óscar Fuentes
Wes Hardaker writes: > o> The only downside is the lack of a referenced wiki system: simple links > o> to revisions (r1010) tickets (#245) etc. > > You can actually get around this somewhat if you're linking to, say, a > svn web server. I do this using something like this: > > (setq org-link-a

[Orgmode] doc-view-mode (was: Re: [ANN] org-docview.el - Link to PDF files from org-mode)

2009-08-12 Thread Óscar Fuentes
e current page to be displayed on the screen, without leaving behind thousands of image files, it would be a decent document reader. [snip] -- Óscar Fuentes Desarrollo de Software ___ Emacs-orgmode mailing list Remember: use `Reply All' to se

[Orgmode] Re: doc-view-mode

2009-08-12 Thread Óscar Fuentes
Leo writes: > On 2009-08-12 20:30 +0100, Óscar Fuentes wrote: >> Converting the pdf|ps|dvi file to images is exactly what your >> favourite viewer does. > > Could you provide a link to this? I'd like to know more about the > details. See the source code of your favo

[Orgmode] Re: doc-view-mode

2009-08-12 Thread Óscar Fuentes
Hello Tassilo. Tassilo Horn writes: >> Converting the pdf|ps|dvi file to images is exactly what your >> favourite viewer does. The problem with doc-view-mode is that it >> converts *all* pages on the document to image *files* which are left >> on some place of the hard disk. > > I think that's

[O] Restricting admisible tags depending on header

2016-06-03 Thread Óscar Fuentes
I'll like to offer only certain tags depending on the contents of the current header. For instance, if the header is * Status I want to see only "open" and "closed" on the options shown by org-fast-tag-selection. Currently I define quite a lot of tags with #+TAGS:, most of them are intended to b

Re: [O] Restricting admisible tags depending on header

2016-06-04 Thread Óscar Fuentes
Óscar Fuentes writes: > I'll like to offer only certain tags depending on the contents of the > current header. For instance, if the header is > > * Status > > I want to see only "open" and "closed" on the options shown by > org-fast-tag-selection. &

[O] Apply patch from org document

2016-07-23 Thread Óscar Fuentes
Is there a method for applying a patch/diff embedded in a code block?

Re: [O] Apply patch from org document

2016-07-24 Thread Óscar Fuentes
"Charles C. Berry" writes: > On Sun, 24 Jul 2016, Óscar Fuentes wrote: > >> Is there a method for applying a patch/diff embedded in a code block? >> > > If by `embedded' you mean that the body of a src block is a patch such > as provided by `git forma

[O] org-crypt broken on Ubuntu 18.04

2018-06-13 Thread Óscar Fuentes
Hello. Today I noticed that org-crypt is broken on my daily driver. On a header with the :crypt: tag I invoke org-decrypt-entry, a popup dialog asks for the password, I type the password and then the minibuffer shows GPG error: "Decryption failed", "" The complete error message on *Messages* is

Re: [O] org-crypt broken on Ubuntu 18.04

2018-06-13 Thread Óscar Fuentes
Nicolas Goaziou writes: > Hello, > > Óscar Fuentes writes: > >> Today I noticed that org-crypt is broken on my daily driver. >> >> On a header with the :crypt: tag I invoke org-decrypt-entry, a popup >> dialog asks for the password, I type the password and th

Re: [O] org-crypt broken on Ubuntu 18.04

2018-06-13 Thread Óscar Fuentes
Thibault Polge writes: >> What's an ECM? > > French for Exemple complet minimal = Minimal Working Example (MWE)[1] > > [1]: https://en.wikipedia.org/wiki/Minimal_Working_Example Thanks. While trying to create a demo file I noticed that decryption works fine as long as the content was relatively

Re: [O] org-crypt broken on Ubuntu 18.04

2018-06-19 Thread Óscar Fuentes
Óscar Fuentes writes: > Hello. > > Today I noticed that org-crypt is broken on my daily driver. > > On a header with the :crypt: tag I invoke org-decrypt-entry, a popup > dialog asks for the password, I type the password and then the > minibuffer shows > > GP

Re: [O] org-crypt broken on Ubuntu 18.04

2018-07-26 Thread Óscar Fuentes
used. gpg: Use the option '--ignore-mdc-error' to decrypt anyway. gpg: decryption forced to fail! The solution is to add `ignore-mdc-error' to ~/.gnupg/gpg.conf. Óscar Fuentes writes: > Hello. > > Today I noticed that org-crypt is broken on my daily driver. > > On a