I suggest the following for the 8.2.6 release:
- revert the whole patches line
- at the parser level
- if scheme is not "file" or derived (e.g., "file+sys" or
"docview"), assume PATH is a correct URI and do not change
anything ;
- otherwise, if PATH is absolute and do no
Ok Thanks Nick
I had to change org-export-html-style to org-html-head and now its working
How the 7.xx variable was working is still somewhat a mystery though.
I want to put a string-literal inside an inline code-block
Neither
~"Hello World"~
nor ="Hello World"= seem to work
If it cant be done then I need an html specific solution; I'd prefer a
generic one though.
Thanks
Rusi
Rustom Mody writes:
> I want to put a string-literal inside an inline code-block
> Neither
> ~"Hello World"~
> nor ="Hello World"= seem to work
>
> If it cant be done then I need an html specific solution; I'd prefer a
> generic one though.
This
,--
| * 1st Level
|
How can I use org-beamer-export-to-pdf for example for an org file that
the current buffer isn't visiting?
My setup is the following : I have two org files cours-beamer.org and
cours-notes.org each containing different +LATEX_CLASS and
+LATEX_CLASS_OPTIONS choices and the same +#INCLUDE "cours.org
On 2014-04-15 23:25, Rustom Mody wrote:
On Tue, Apr 15, 2014 at 10:39 PM, Rick Frankel
wrote:
On 2014-04-15 07:30, Rustom Mody wrote:
I need (for various reasons) to inline these styles
I have this code in my init to change the html style
(defun rusi/load-css()
"Returns string from css fi
Julien Cubizolles writes:
> How can I use org-beamer-export-to-pdf for example for an org file that
> the current buffer isn't visiting?
>
> My setup is the following : I have two org files cours-beamer.org and
> cours-notes.org each containing different +LATEX_CLASS and
> +LATEX_CLASS_OPTIONS ch
Thorsten Jolitz wrote:
> This
>
> ,--
> | * 1st Level
> | src_emacs-lisp{"Hello World"}
> `--
>
> renders this...
does not seem to work for me.
Some requirements I need python code inline inside tables.
Hi,
Emacs 24.4.
org-mode latest master
clojure-mode latest MELPA
cider latest MELPA
Following the instructions in [1], I set up session evaluation for
clojure in the snippet:
#+BEGIN_SRC org
#+PROPERTY: header-args:clojure :session :cache no
#+begin_src clojure
(+ 1 2 3)
#+end_src
#+RESULTS:
:
David Masterson writes:
> Hmmm. I would think that this process might work as well:
>
> 1. Start with "emacs -Q"
This fails with some older versions of Emacs since these had a bug where
parts of the init scripts were processed even when you said explicitly
that they shouldn't be read.
> 2. Bring
Hi Thorsten and Nicolas,
Nicolas Richard writes:
> It's almost certainly a typo, but it introduces no bug because '*' can't
> bear its special meaning after '^', so the regexp engine will make it
> match exactly the '*' character. But it'd be better written as "^*+"
> (but this is not recommende
William Kunkel writes:
> Is there a more concise way to do simple variables, or am I stuck with
> the named example blocks?
It seems you'll want to define those through "var" properties.
Regards,
Achim.
--
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+
DIY Stuff:
http://S
Hi Suhas,
Suhas Pai writes:
> sudo yum groupupdate emacs
> Package 1:emacs-23.1-25.el6.x86_64 already installed and latest
> version
> In order to preserve the integrity of all pacakges installed, I
> prefer not
> deviate from "yum" so I don't have the latest emacs (24.1) or the
> orgmode pacakg
Hi Noah,
from master, you can now use a :sort parameter in clocktable
to sort a column. For example:
#+BEGIN: clocktable :maxlevel 2 :scope file :sort (2 . ?t)
#+CAPTION: Clock summary at [2014-04-16 mer. 18:12]
| Headline | Time |
|--+|
| *Total time* | *0:34* |
|-
Hi Brady,
Brady Trainor writes:
> I wanted to return to this and attempt it, here is my first patch ever:
Thanks,
> diff --git a/lisp/ox-odt.el b/lisp/ox-odt.el
> index da2ca3f..8c7f0fe 100644
> --- a/lisp/ox-odt.el
> +++ b/lisp/ox-odt.el
> @@ -1491,7 +1491,7 @@ original parsed data. INFO is
Hi Pere,
Pere Quintana Seguí writes:
> Everything looks fine except one file which is not correctly
> imported.
If you don't get an answer here, and if you still have this problem,
maybe you can try asking directly on MobileOrg bug reporting page:
https://github.com/MobileOrg/mobileorg/issues
Aloha Will,
You can set system-wide header arguments or set default values for a
buffer or heading. See the Org mode manual, Section 14.8.1, Using
header arguments.
hth,
Tom
William Kunkel writes:
> I'm just getting started using Org Babel and I've run into a bit of an
> annoyance that I can'
Hi James,
James Harkins writes:
> I assume I need to specify the worg CSS and perhaps some other export
> properties, but the details are not easy to find and I don't care to
> guess at the moment.
I sent them to you in private.
> Can somebody explain *really* how to contribute to worg?
I hop
Hi Lawrence,
Lawrence Bottorff writes:
> . . . I'm getting confused about how to use these features.
> Sometimes, by chance, I'll find an example/use. but often as not I'm
> looking at a raw reference dump with no clue how to use (best
> practices) these features. For example, org-id has http://
Hi Lawrence,
Lawrence Bottorff writes:
> I've seen various things for interacting with org mode from external
> apps. I found org-protocol, as well as a Mutt-to-org mode article.
> Per the tittle, I want to be able to add new TODO items from, say, an
> email or a PHP-based web page form. Is this
Nicolas Goaziou writes:
> Bastien writes:
>
>> I know, but the users should not have to guess this.
>> Maybe a note about the allowed structure here in the
>> manual would be useful.
>
> Done in e84c1d8442b857f9275e86bb34f12811f49fcdd6.
Perfect, thanks,
--
Bastien
Thanks Bastien! I'll look into this and report back.
On 16 April 2014 18:26, Bastien wrote:
> Hi Noah,
>
> from master, you can now use a :sort parameter in clocktable
> to sort a column. For example:
>
> #+BEGIN: clocktable :maxlevel 2 :scope file :sort (2 . ?t)
> #+CAPTION: Clock summary at
Hello,
I have several babel blocks that each work well, but I'm now trying to
chain them to build some bigger functionality out of them. I'm having
trouble finding out how to pass arguments between blocks. Here is
a small example:
--8<---cut here---start->8---
Rustom Mody writes:
> Thorsten Jolitz wrote:
>
> This
>
> ,--
> | * 1st Level
> | src_emacs-lisp{"Hello World"}
> `--
>
> renders this...
>
> does not seem to work for me.
> Some requirements I need python c
Hi Konstantin,
Konstantin Kliakhandler writes:
> Pretty much what the headline says. This incorrect interpretation means
> that if for example one tries to use org-cdlatex completions in that
> line or later in the block, they won't work: Instead, new cells will be
> created.
`org-try-cdlatex-t
Hi Robert,
"Robert P. Goldman" writes:
> I find if I accidentally return over an item's date, I get a second
> agenda buffer for that date.
>
> That seems fine, but what I don't like is that from now on, any org
> agenda commands go to THAT buffer, rather than going into the old agenda
> buffer,
Hi Alan,
Alan Schmitt writes:
> I see you are the author of ob-dot.el. Should I push the attached
> patch?
I applied the patch in the master branch, so that Eric can revert it
without too much trouble if needed -- but I think it's not needed.
Thanks,
--
Bastien
Hi Rainer,
Rainer M Krug writes:
> Sorry - sure. Attached.
Applied in master, thanks,
--
Bastien
Hi Marcin and Rick,
Marcin Antczak writes:
>> Another good question. Bastien- Do you think it makes sense to do a
>> whitespace cleanup only commit of ox-html to master?
>
> +1 from me.
The practice I've seen on Emacs is to not do whitespace commits,
but the cleanup whitespace when there is ano
Hi Michael,
"R. Michael Weylandt" writes:
> I see that Org provides a `org-cancel-repeater` and `org-get-repeat`
> but I don't see a `org-set-repeat` (or function which can be made to
> do so). Is there something like that that I've missed or should I
> write a wrapper around `org-deadline`?
No
On 2014-04-16 17:37, Bastien writes:
> Hi Alan,
>
> Alan Schmitt writes:
>
>> I see you are the author of ob-dot.el. Should I push the attached
>> patch?
>
> I applied the patch in the master branch, so that Eric can revert it
> without too much trouble if needed -- but I think it's not needed.
On Wed, Apr 16, 2014 at 12:31 PM, Bastien wrote:
> Hi Lawrence,
>
> Lawrence Bottorff writes:
>
>> I've seen various things for interacting with org mode from external
>> apps. I found org-protocol, as well as a Mutt-to-org mode article.
>> Per the tittle, I want to be able to add new TODO items
Noah Slater writes:
Hello, Noah!
> I would like to my clocktable include a line for every node, regardless of
> whether there is any time clocked, or whether the time clocked is 0:00.
> My intention here is to highlight notes that have received no attention. I
> want them to show up on my report
Nicolas Goaziou writes:
[…]
> I think it is sufficient for 8.2.6. We can still discuss if more
> parsing is needed for 8.3.
I agree that this should take care of it. Unless Org honestly tries to
be RFC3986 conformant in the future, I don't really see the point in
further changes at the moment.
Thanks for the explanations and guiding. Now this works the way I want it
to.
--
Martin Schöön
http://hem.bredband.net/b262106/index.html
Hi Nick,
Nick Dokos writes:
> But I *did* reproduce it with latest:
I reproduced the bug too, and it's pretty bad.
Thanks for the recipe, and thanks to Florian for
reporting this.
I'm busy right now but this is top priority.
--
Bastien
Thanks!
On Wed, Apr 16, 2014 at 6:26 PM, Bastien wrote:
> Hi Konstantin,
>
> Konstantin Kliakhandler writes:
>
> > Pretty much what the headline says. This incorrect interpretation means
> > that if for example one tries to use org-cdlatex completions in that
> > line or later in the block, th
On 2014-04-16 at 12:49, Bastien wrote:
> Pere Quintana Seguí writes:
>
>> Everything looks fine except one file which is not correctly
>> imported.
I missed and can't find the original email, but does the erroneous file
have an "&" in the filename? That is a known MobileOrg bug.
-k.
This is off-topic, but I hope that someone can give me some good advice:
During the last years, I'be become a real org-mode fan and I want to stay
current and be active in the great org-mode community.
I've subscribed to the orgmode mailinglist about 1,5 years ago and so I have
>17.500 mails in my
Hello Martin,
you might want to have a look at gnus - an news/email client for
emacs. It has something called scoring (I believe this is a concept from
usenet/nntp). It allowes to do exactly what you want to do and even
more. You can tell gnus to hide a particular thread, so you do not have
to see
Alan Schmitt polytechnique.org> writes:
>
> Hello,
>
> I have several babel blocks that each work well, but I'm now trying to
> chain them to build some bigger functionality out of them. I'm having
> trouble finding out how to pass arguments between blocks. Here is
> a small example:
>
> --8<-
Alexander Baier writes:
Hello, Alexander, Martin!
> you might want to have a look at gnus - an news/email client for
> emacs. It has something called scoring (I believe this is a concept from
> usenet/nntp). It allowes to do exactly what you want to do and even
> more. You can tell gnus to hide
Bastien writes:
> I'm busy right now but this is top priority.
I reverted the patch and need more time fixing the issues
in this area. Filtering agenda works by adding overlays
and when point finds itself in an invisible overlay, funny
stuff happens.
I need to wrap my head around this later on
Hi Fletcher,
Fletcher Charest writes:
> This (in my opinion) serious bug still appears when using the last
> ELPA version of Org (8.2.5h-98-g0820d0-elpa @ ~/.emacs.d/elpa/
> org-20140407/) on Windows with GNU Emacs 24.3.1.
This is now fixed. Thanks for raising it, and sorry it took so
long to
Bastien writes:
> I'm busy right now but this is top priority.
Done -- I fixed the problem that 3559ff84 was supposed to
fix differently. There are still glitches when changing the
date in a filtered agenda, but it's not about data corruption
anymore.
Thanks,
--
Bastien
On Wed, Apr 02, 2014 at 09:06:48AM +0200, Nicolas Goaziou wrote:
>
> If deemed useful, I think this patch should use
> `org-html--make-attribute-string' instead of hard-coding "class"
> attribute:
>
> (attributes (org-html--make-attribute-string
>(org-export-read-attribute :attr_h
On Sat, Mar 29, 2014 at 03:12:14PM +0100, Marcin Borkowski wrote:
> Dnia 2014-03-28, o godz. 10:59:43
> Rick Frankel napisał(a):
>
> > On 2014-03-28 10:01, Sebastien Vauban wrote:
> > > Rick Frankel wrote:
> > > BTW, i used "[ ]" for the unchecked box (we use the same for
> > > checked and trans)
Rick Frankel writes:
> A version of this patch using Nicolas' approach has been pushed to
> master.
Thanks!
--
Bastien
Hi Michael,
"R. Michael Weylandt" writes:
> The attached should apply cleanly against master.
Applied, thanks,
--
Bastien
Hi Nicolas,
Nicolas Goaziou writes:
> I suggest the following for the 8.2.6 release:
>
> - revert the whole patches line
>
> - at the parser level
>
> - if scheme is not "file" or derived (e.g., "file+sys" or
> "docview"), assume PATH is a correct URI and do not change
> anyt
Hi Eric,
Eric Schulte writes:
>> Also, if you can sign your patches (git format-patch -s) that'd
>> be even better, but not mandatory.
>
> Should I start signing my patches as well?
Up to you, I don't want to enforce a policy here, I just think it's
good to have signed patch for people who don'
Oleh writes:
> It's inspired by vi, so your task is handled by "cwd" (change word
> DONE). Other stuff works as well, such as "cw[tnc]" for (change word
> [TODO NEXT CANCELLED]).
>
> Similarly:
> "cp" is change property,
> "dp" is delete property,
> "p" is move to property,
> "ct" is change tag,
52 matches
Mail list logo