Hi Nick,
Nick Dokos writes:
> I get a "Forbidden" error message, either from gnus or from the
> web. Anybody else seeing that?
Yes, http://search.gmane.org is not accessible right now.
I dropped a note to Lars.
--
Bastien
On 28 May 2014 06:31, Alan Tyree wrote:
> Hi Steven,
> You want to learn more about LaTeX, but it's not too much.
>
> I wrote a little book called Self-publishing with LyX that will help you
> set up the title page as well as some of your other problems. This is not a
> sales pitch -- it's free :
Bastien writes:
> Nicolas Goaziou writes:
>> All in all, I'm not convinced this should be a function provided in Org.
>
> Okay. Still, it's useful to have it *somewhere*. If you have a
> moment, could you revert the commit
Done.
> rewrite the function with the suggested enhancements
Here i
Hi Bastien
Thanks for the suggestion. I'm traveling at the moment, but I'll check it out
as soon as I get a chance.
Will
Sent from a leading brand of mobile device
> On 30/05/2014, at 16:44, Bastien wrote:
>
> Hi William,
>
> William Henney writes:
>
>> There is an apparent bug when u
Hi Nicolas,
Nicolas Goaziou writes:
> Here it is. It could be prettier but I think it should get the job
> done.
Wow, thanks! I didn't expect this to be that long...
I tested it with various input files and it works fine.
>> PS: I think it's useful to trigger the org-footnote-action menu
>> w
On Fri, May 30, 2014 at 01:20:21PM -0400, Nick Dokos wrote:
> Peter Davis writes:
>
> > Ok, I was able to get the column rules I want. (See below)
> >
> > I'm still puzzled by the right/left alignment. In the org buffer the
> > columns appear correctly aligned, but in HTML output, the left (Sun)
I'm getting an error on HEAD now:
Debugger entered--Lisp error: (void-function org-add-props)
(org-add-props "WARNING: No org-loaddefs.el file could be found from
where org.el is loaded." nil (quote face) (quote org-warning))
(message (org-add-props "WARNING: No org-loaddefs.el file could be f
Bastien writes:
> Let me know if it works for you,
Hi! I tried a recent git snapshot (Fri May 30 19:28:04
2014 +0200) and performed some manual tests (1 to 5, see
below).
- in org-columns mode ("C-c C-x C-c"):
- 1) PASS: org-columns-edit-value ("e") updates correctly the
empty/whitesp
Noah Slater writes:
> I'm getting an error on HEAD now:
Please run `make' or `make autoloads'.
See http://orgmode.org/manual/Installation.html
--
Bastien
Hi all,
Suppose I have a string, "my first task", that I know is tagged with
"laptop".
I want to search through the agenda files for a headline that matches this
string, to be able to mark it as DONE (in an automated fashion).
I can't find a function to search through for the headline --- is the
Chris Poole writes:
> Hi all,
>
> Suppose I have a string, "my first task", that I know is tagged with
> "laptop".
>
> I want to search through the agenda files for a headline that matches
> this string, to be able to mark it as DONE (in an automated fashion).
>
> I can't find a function to searc
l))l
Dear Bastien,
This is my first time submitting a patch, so I do not know if
this is the way I am supposed to do it.
Best,
Jorge
---
org-passwords.el: Add an org derived mode for managing passwords
* contrib/lisp/org-passwords.el: new file.
The file gives a mode for consu
My. Thoughts. Exactly.
On Sat, May 31, 2014 at 8:46 PM, jean-jacques Rétorré
wrote:
> l))l
>
Eric Abrahamsen:
> the `org-map-entries' function can be given a scope of 'agenda
That worked perfectly, thanks. Here's what I ended up with:
(org-map-entries (lambda ()
(when (equal title (org-get-heading t t))
(org-entry-put (point) "TODO"
Chris Poole writes:
> That worked perfectly, thanks. Here's what I ended up with:
>
> (org-map-entries (lambda ()
> (when (equal title (org-get-heading t t))
> (org-entry-put (point) "TODO" "DONE")))
> tag 'agenda)
could you maybe send a little more of the code? I would like to
understand how it
Sebastien Vauban wrote:
> Emacs 24.3.91.1 (of 2014-05-12) regularly hangs with Org-mode version
> 8.2.6 (release_8.2.6-1010-g1ca86f).
Well I guess this is an Org bug, which will get more attention on the
Org list.
(See eg http://debbugs.gnu.org/cgi/bugreport.cgi?bug=17484)
Igor Sosa Mayor:
> could you maybe send a little more of the code? I would like to
> understand how it exactly works.
Sure --- it's part of a quick setup file for the GTD methodology that I'm
writing. The specific function in question is here:
https://github.com/chrispoole643/org-gtd/blob/6b13d4f
Chris Poole writes:
> Sure --- it's part of a quick setup file for the GTD methodology that
> I'm writing. The specific function in question is here:
interesting. Thanks for sharing the code.
--
:: Igor Sosa Mayor :: joseleopoldo1...@gmail.com ::
:: GnuPG: 0x1C1E2890 :: http://www.gnupg
Chris Poole writes:
> Eric Abrahamsen:
>> the `org-map-entries' function can be given a scope of 'agenda
>
> That worked perfectly, thanks. Here's what I ended up with:
>
> (org-map-entries (lambda ()
> (when (equal title (org-get-heading t t))
> (org-entry-put (point) "TODO" "DONE")))
> tag 'age
Works! Thanks!
Can I pass in the range when calling it from a function?
At the moment, I'm calling org-clock-display from a wrapper function that
does some other things. It would be cool to configure a default range when
calling it in that function.
On 31 May 2014 16:48, Bastien wrote:
> Noah
Hi Bastien,
Thank you very much for implementing this. Really appreciated. So do you think
it is a good idea to add my test (the patch) now for testing this?
For your convenience, I've attached again in this message the same patch I had
sent on April 10.
Thanks,
York
On Sun, Apr 20, 2014 at 3
Thorsten Jolitz writes:
> Chris Poole writes:
>
>> Eric Abrahamsen:
>>> the `org-map-entries' function can be given a scope of 'agenda
>>
>> That worked perfectly, thanks. Here's what I ended up with:
>>
>> (org-map-entries (lambda ()
>> (when (equal title (org-get-heading t t))
>> (org-entry-pu
Hello,
I am trying to include an HTML file (say myfile.html, which has only
the ) in an Org file so that upon export the contents of
myfile.html are /literally/ inserted in the appropriate section of the
exported HTML file. Following
http://orgmode.org/manual/Include-files.html, I used
#+INCLUDE:
Omid writes:
> Hello,
>
> I am trying to include an HTML file (say myfile.html, which has only
> the ) in an Org file so that upon export the contents of
> myfile.html are /literally/ inserted in the appropriate section of the
> exported HTML file. Following
> http://orgmode.org/manual/Include-fi
Hello Nick,
Thanks for your reply. But no, src html results in the included HTML
being processed by Org and wrapped in , just
like if the contents of myfile.html were put in
#+BEGIN_SRC html
#+END_SRC
Omid
Sent from my Emacs
On 06/01/2014 12:42 AM, Nick Dokos wrote:
> Omid writes:
>
>> Hello
Is it possible to hide the checked items? E.g. I have a long
shopping list of items I regularly buy, but for the current date I
need only a dozen of them. I'd like to be able to show all the
items; possibly to check all of them; then uncheck the dozen I
currently need; then hide the checked items
Here is a minimal example, in case someone wants to try
myfile.html:
Hello, World!
orgincludehtml.org:
* Test
#+INCLUDE: "./myfile.html" html
I am using Org-mode version 8.2.6 (from ELPA) and GNU Emacs 24.3.1.
Omid
Sent from my Emacs
On 06/01/2014 12:42 AM, Nick Dokos wrote:
> Omid writ
Sergio Pokrovskij writes:
> The next problem is that MobileOrg should respect the preliminary
> hiding done before the visit to the shop. I do not request that it
> hide the checked (= bought) items as well (actually I'd prefer it to
> leave them checked and visible; but also its hiding-on-the-f
Omid writes:
> Hello Nick,
>
> Thanks for your reply. But no, src html results in the included HTML
> being processed by Org and wrapped in , just
> like if the contents of myfile.html were put in
> #+BEGIN_SRC html
>
> #+END_SRC
>
Yes, I misunderstood the doc.
--
Nick
Hello,
Bastien writes:
> Nicolas Goaziou writes:
>
>> Here it is. It could be prettier but I think it should get the job
>> done.
>
> Wow, thanks! I didn't expect this to be that long...
> I tested it with various input files and it works fine.
It could probably be refactored to gain a few li
I've been learning to export from org to latex (to pdf), and have had
great success. There's a simplification to the process I'd like to make,
though, if it's possible.
Right now I use files: file.org and filestyle.sty. The .sty gives
the latex-specific instruction, and I point to it from file.org
32 matches
Mail list logo